Spaces:
Running on A10G
Running on A10G
| server { | |
| listen 7860; | |
| client_max_body_size 1024M; # Allow uploads up to 1GB | |
| location / { | |
| proxy_pass http://localhost:4000; | |
| 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; | |
| } | |
| location /comfy/ { | |
| proxy_pass http://localhost:39775/; | |
| 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; | |
| } | |
| } | |