forked from dylanlee/wnweb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nginx.conf
executable file
·66 lines (54 loc) · 2.39 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
server {
listen 80;
server_name 54.86.113.134;
return 301 https://$host$request_uri;
}
server {
listen 443 ssl;
server_name 54.86.113.134;
ssl_certificate /etc/letsencrypt/live/waternode.ciroh.org/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/waternode.ciroh.org/privkey.pem;
# Define the directory where your index.html and other static assets reside
root /home/wnweb/wnweb/static; # replace this with your actual directory path
location / {
# The following will direct any request to index.html if the request URI
# does not match any other file or directory in the defined root directory.
try_files $uri $uri/ /index.html;
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-NginX-Proxy true;
proxy_set_header Access-Control-Allow-Origin $http_access_control_allow_origin;
proxy_set_header Access-Control-Allow-Methods $http_access_control_allow_methods;
proxy_set_header Access-Control-Allow-Headers $http_access_control_allow_headers;
# Add forwarded headers
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Proto $scheme;
# WebSocket support
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_read_timeout 86400;
}
}
server {
listen 446 ssl;
server_name 54.86.113.134;
ssl_certificate /etc/letsencrypt/live/waternode.ciroh.org/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/waternode.ciroh.org/privkey.pem;
location / {
proxy_pass http://localhost:8080/;
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-NginX-Proxy true;
proxy_set_header Access-Control-Allow-Origin $http_access_control_allow_origin;
proxy_set_header Access-Control-Allow-Methods $http_access_control_allow_methods;
proxy_set_header Access-Control-Allow-Headers $http_access_control_allow_headers;
# WebSocket support
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_read_timeout 86400;
}
}