-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnginx.conf
More file actions
38 lines (31 loc) · 1.04 KB
/
nginx.conf
File metadata and controls
38 lines (31 loc) · 1.04 KB
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
upstream apiUpstream {
# 1. Set your port here
# If you didn't change it from .env, you can
# ignore it and keep the default port 8080
server 127.0.0.1:8080;
keepalive 64;
}
server {
listen 80;
listen 443 ssl;
# 2. Set your API domain name here
server_name yourdomain.com;
location / {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $http_host;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_pass http://apiUpstream/;
proxy_redirect off;
proxy_read_timeout 240s;
}
# 3. SSL certificate set below
# Here is added a sample certificate format of letsencrypt
# You are free to remove it and configure yours here
ssl_certificate /etc/letsencrypt/live/yourdomain.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/yourdomain.com/privkey.pem;
include /etc/letsencrypt/options-ssl-nginx.conf;
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem;
}