Spaces:
Runtime error
Runtime error
Commit
·
d87c92c
1
Parent(s):
79a0b50
Update nginx.conf
Browse files- nginx.conf +3 -3
nginx.conf
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
server {
|
2 |
-
listen
|
3 |
location / {
|
4 |
-
proxy_pass http://127.0.0.1:
|
5 |
proxy_set_header Host $host;
|
6 |
proxy_set_header X-Real-IP $remote_addr;
|
7 |
proxy_read_timeout 1800; # Set timeout to 1800 seconds, which is 30 minutes
|
8 |
}
|
9 |
-
}
|
|
|
1 |
server {
|
2 |
+
listen 80;
|
3 |
location / {
|
4 |
+
proxy_pass http://127.0.0.1:7680;
|
5 |
proxy_set_header Host $host;
|
6 |
proxy_set_header X-Real-IP $remote_addr;
|
7 |
proxy_read_timeout 1800; # Set timeout to 1800 seconds, which is 30 minutes
|
8 |
}
|
9 |
+
}
|