-
Notifications
You must be signed in to change notification settings - Fork 0
/
nginx.conf
43 lines (34 loc) · 1.09 KB
/
nginx.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
events {
worker_connections 4096;
}
http {
server {
listen [::]:80;
listen 80;
server_name api.myhearty.my;
return 308 https://api.myhearty.my$request_uri;
}
server {
listen [::]:443 ssl http2;
listen 443 ssl http2;
server_name api.myhearty.my;
ssl_certificate /etc/nginx/certs/live/api.myhearty.my/fullchain.pem;
ssl_certificate_key /etc/nginx/certs/live/api.myhearty.my/privkey.pem;
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Port $server_port;
proxy_http_version 1.1;
proxy_read_timeout 20d;
location / {
proxy_pass http://api.myhearty.my:3000;
}
location ~ (\.php|.aspx|.asp|myadmin) {
deny all;
}
}
}