2023-05-10 12:09:50 +02:00
|
|
|
events {}
|
|
|
|
|
|
|
|
http {
|
|
|
|
include /etc/nginx/mime.types;
|
|
|
|
default_type application/octet-stream;
|
2024-01-06 23:38:01 +01:00
|
|
|
client_max_body_size 100M;
|
|
|
|
|
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
|
|
|
}
|
2024-04-16 14:09:47 +02:00
|
|
|
|
|
|
|
error_page 502 /static/html/500.html;
|
|
|
|
error_page 503 /static/html/500.html;
|
|
|
|
|
2024-09-07 10:50:57 +02:00
|
|
|
if ($http_user_agent ~* "(?:Amazonbot)") {
|
2024-08-29 01:46:31 +02:00
|
|
|
return 444;
|
|
|
|
}
|
|
|
|
|
2023-05-10 12:09:50 +02:00
|
|
|
}
|
|
|
|
}
|