2023-05-10 12:09:50 +02:00
|
|
|
events {}
|
|
|
|
|
|
|
|
http {
|
|
|
|
include /etc/nginx/mime.types;
|
|
|
|
default_type application/octet-stream;
|
2023-05-10 16:33:37 +02:00
|
|
|
|
|
|
|
upstream backend {
|
|
|
|
server backend:8000;
|
|
|
|
}
|
2023-05-10 12:09:50 +02:00
|
|
|
|
|
|
|
server {
|
|
|
|
listen 80;
|
2023-05-10 16:33:37 +02:00
|
|
|
|
|
|
|
location / {
|
|
|
|
proxy_pass http://backend;
|
|
|
|
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/ {
|
|
|
|
alias /usr/src/app/static/;
|
|
|
|
}
|
|
|
|
|
|
|
|
location /media/ {
|
|
|
|
alias /usr/src/app/media/;
|
2023-05-10 13:37:29 +02:00
|
|
|
}
|
2023-05-10 12:09:50 +02:00
|
|
|
}
|
|
|
|
}
|