first commit

This commit is contained in:
2026-02-28 00:02:02 +01:00
commit 6295c58d33
36 changed files with 7017 additions and 0 deletions

10
nginx/proxy-params.conf Normal file
View File

@@ -0,0 +1,10 @@
# /etc/nginx/snippets/proxy-params.conf
# Herbruikbaar snippet voor proxy headers.
# Aanmaken met: sudo nano /etc/nginx/snippets/proxy-params.conf
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;
proxy_http_version 1.1;
proxy_set_header Connection "";