fixed docker

This commit is contained in:
afanasyev.aa 2025-06-26 20:47:12 +09:00
parent 741aefca31
commit c334c0628d
8 changed files with 206 additions and 40 deletions

34
nginx/nginx.conf Normal file
View file

@ -0,0 +1,34 @@
upstream django {
server web:8000;
}
server {
listen 80;
server_name localhost;
# Static files
location /static/ {
alias /app/static/;
expires 1y;
access_log off;
add_header Cache-Control "public";
gzip_static on;
}
# Media files
location /media/ {
alias /app/media/;
expires 7d;
access_log off;
add_header Cache-Control "public";
}
# Django app
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;
}
}