Delete nginx.conf
Browse files- nginx.conf +0 -21
nginx.conf
DELETED
|
@@ -1,21 +0,0 @@
|
|
| 1 |
-
server {
|
| 2 |
-
listen 7860;
|
| 3 |
-
|
| 4 |
-
client_max_body_size 1024M; # Allow uploads up to 1GB
|
| 5 |
-
|
| 6 |
-
location / {
|
| 7 |
-
proxy_pass http://localhost:4000;
|
| 8 |
-
proxy_set_header Host $host;
|
| 9 |
-
proxy_set_header X-Real-IP $remote_addr;
|
| 10 |
-
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
| 11 |
-
proxy_set_header X-Forwarded-Proto $scheme;
|
| 12 |
-
}
|
| 13 |
-
|
| 14 |
-
location /comfy/ {
|
| 15 |
-
proxy_pass http://localhost:39775/;
|
| 16 |
-
proxy_set_header Host $host;
|
| 17 |
-
proxy_set_header X-Real-IP $remote_addr;
|
| 18 |
-
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
| 19 |
-
proxy_set_header X-Forwarded-Proto $scheme;
|
| 20 |
-
}
|
| 21 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|