Initial commit

This commit is contained in:
2025-05-17 00:57:08 +02:00
commit fe69bdbc94
71 changed files with 6585 additions and 0 deletions

25
nginx/conf.d/default.conf Normal file
View File

@ -0,0 +1,25 @@
# nginx/conf.d/default.conf
upstream dashboard {
server web:8000;
}
server {
listen 80;
server_name localhost;
location / {
proxy_pass http://dashboard;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $host;
proxy_redirect off;
}
location /static/ {
alias /app/staticfiles/;
}
location /media/ {
alias /app/media/;
}
}