init commit

This commit is contained in:
Richard Toth
2026-02-28 12:58:47 +01:00
commit 6e3428c1f3
7 changed files with 96 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
server {
listen 80;
listen [::]:80;
add_header Strict-Transport-Security "max-age=15552000; includeSubDomains" always;
location / {
proxy_pass http://peppermint:5003;
proxy_next_upstream error timeout invalid_header http_500 http_502 http_503;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forward-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto https;
proxy_redirect off;
proxy_read_timeout 5m;
}
client_max_body_size 10M;
}