41 lines
938 B
Nginx Configuration File
41 lines
938 B
Nginx Configuration File
server {
|
|
listen 8000;
|
|
|
|
access_log /dev/stdout;
|
|
|
|
gzip_static on;
|
|
|
|
set_real_ip_from 0.0.0.0/0;
|
|
real_ip_header X-Forwarded-For;
|
|
|
|
# Override nginx's server header
|
|
more_set_headers "Server: Wouldn't you like to know";
|
|
server_tokens off;
|
|
|
|
location / {
|
|
proxy_buffers 32 4k;
|
|
proxy_connect_timeout 240;
|
|
proxy_headers_hash_bucket_size 128;
|
|
proxy_headers_hash_max_size 1024;
|
|
proxy_http_version 1.1;
|
|
proxy_read_timeout 240;
|
|
proxy_send_timeout 240;
|
|
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_set_header X-Forwarded-Host $host;
|
|
proxy_set_header Proxy "";
|
|
|
|
proxy_pass http://django:8080;
|
|
}
|
|
|
|
location /static {
|
|
add_header Cache-Control "public, immutable, max-age=31536000";
|
|
alias /app/collected-static;
|
|
}
|
|
|
|
location /media {
|
|
add_header Cache-Control "public, immutable, max-age=3600";
|
|
alias /app/media;
|
|
}
|
|
}
|