Spaces:
Sleeping
Sleeping
| server { | |
| listen 80; | |
| server_name _; | |
| location /static/ { | |
| # let the app serve static files or nginx can be configured to serve from a volume | |
| proxy_pass http://web:8000/static/; | |
| proxy_set_header Host $host; | |
| proxy_set_header X-Real-IP $remote_addr; | |
| } | |
| location / { | |
| proxy_pass http://web:8000/; | |
| 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; | |
| } | |
| } | |