caFICteria-aaS/web/nginx.conf
2024-12-02 18:40:31 +01:00

15 lines
326 B
Nginx Configuration File

server {
listen 80;
location /static {
alias /app/staticfiles;
}
location / {
proxy_pass http://127.0.0.1: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;
}
}