Include newsreader provisioning

This commit is contained in:
Sonny Bakker 2025-04-27 22:30:48 +02:00
parent 295f497bcf
commit e5c4cf490f
7 changed files with 162 additions and 8 deletions

View file

@ -17,13 +17,13 @@ server {
proxy_connect_timeout 90;
proxy_redirect off;
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-Ssl on;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Frame-Options SAMEORIGIN;
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-Ssl on;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Frame-Options SAMEORIGIN;
proxy_pass http://{{ newsreader_ip }}:{{ newsreader_port }};
proxy_pass http://{{ newsreader_ip }}:{{ newsreader_port }};
}
}