Erste lauffähige Version

This commit is contained in:
2026-05-21 10:36:16 +02:00
commit 6a103adac4
98 changed files with 4107 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
proxy_http_version 1.1;
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 $http_x_forwarded_proto;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header Connection "";
proxy_redirect off;
proxy_buffering on;
+55
View File
@@ -0,0 +1,55 @@
# =============================================================================
# vHost HTTP only. Security-Header & TLS sind Aufgabe des äußeren Proxys.
# =============================================================================
# Vom äußeren Proxy weitergereichte Header vertrauen aber NUR aus dem
# Docker-Netz oder von der bekannten Proxy-IP. Bei Bedarf set_real_ip_from
# auf das CIDR des Proxys einschränken.
set_real_ip_from 0.0.0.0/0;
real_ip_header X-Forwarded-For;
real_ip_recursive on;
server {
listen 80 default_server;
listen [::]:80 default_server;
server_name _;
# Healthcheck (für äußeren Proxy & Compose-Healthcheck)
location = /healthz {
access_log off;
return 200 "ok\n";
add_header Content-Type text/plain;
}
limit_conn conn_per_ip 20;
# Login strikter limitieren
location ~ ^/(accounts/login|admin/login) {
limit_req zone=login burst=3 nodelay;
proxy_pass http://django_app;
include /etc/nginx/conf.d/proxy_params.inc;
}
# Statische Dateien
location /static/ {
alias /var/www/static/;
access_log off;
expires 7d;
add_header Cache-Control "public, immutable";
}
# Geschützte Media (PDFs) nur per X-Accel-Redirect aus Django ausspielen
location /protected-media/ {
internal;
alias /var/www/media/;
}
# App
location / {
limit_req zone=app burst=50 nodelay;
proxy_pass http://django_app;
include /etc/nginx/conf.d/proxy_params.inc;
proxy_read_timeout 120s;
proxy_send_timeout 120s;
}
}