Files

21 lines
473 B
Nginx Configuration File

server {
listen 80;
server_name _;
client_max_body_size 10M;
location / {
proxy_pass http://app: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;
}
location /static {
proxy_pass http://app:8000/static;
proxy_set_header Host $host;
expires 7d;
}
}