45 lines
997 B
Nginx Configuration File
45 lines
997 B
Nginx Configuration File
|
|
upstream django {
|
||
|
|
server django:8005;
|
||
|
|
}
|
||
|
|
|
||
|
|
server {
|
||
|
|
listen 80;
|
||
|
|
server_name 192.168.235.234 localhost;
|
||
|
|
|
||
|
|
client_max_body_size 10M;
|
||
|
|
|
||
|
|
location / {
|
||
|
|
proxy_pass http://django;
|
||
|
|
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;
|
||
|
|
proxy_redirect off;
|
||
|
|
|
||
|
|
# Timeouts
|
||
|
|
proxy_connect_timeout 75s;
|
||
|
|
proxy_read_timeout 300s;
|
||
|
|
}
|
||
|
|
|
||
|
|
location /static/ {
|
||
|
|
alias /app/staticfiles/;
|
||
|
|
expires 30d;
|
||
|
|
access_log off;
|
||
|
|
add_header Cache-Control "public, no-transform";
|
||
|
|
}
|
||
|
|
|
||
|
|
location /media/ {
|
||
|
|
alias /app/media/;
|
||
|
|
expires 30d;
|
||
|
|
access_log off;
|
||
|
|
add_header Cache-Control "public, no-transform";
|
||
|
|
}
|
||
|
|
|
||
|
|
# Bloqueia acesso a arquivos ocultos
|
||
|
|
location ~ /\. {
|
||
|
|
deny all;
|
||
|
|
access_log off;
|
||
|
|
log_not_found off;
|
||
|
|
}
|
||
|
|
}
|