This commit is contained in:
Gerard Gascón 2025-04-11 20:42:55 +02:00
commit 4fcbdaa4db
21 changed files with 589 additions and 0 deletions

37
nginx/nginx.conf Normal file
View file

@ -0,0 +1,37 @@
events {}
http {
include mime.types;
default_type application/octet-stream;
upstream torreta {
server torreta:8000;
}
server {
listen 80;
server_name localhost;
client_max_body_size 0;
location / {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Port $server_port;
proxy_pass http://torreta;
}
location /static/ {
alias /app/staticfiles/;
}
location /media/ {
alias /app/media/;
}
location ~ /.well-known/acme-challenge/ {
root /var/www/certbot;
}
}
}