ansible-edda/playbooks/files/services/deploy/rproxy/nginx-conf.d/http-default.conf

13 lines
269 B
Plaintext
Raw Normal View History

2023-07-09 22:02:51 +02:00
server {
2023-07-29 14:38:57 +02:00
listen [::]:80;
2023-07-09 22:02:51 +02:00
listen 80;
server_name _;
location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header Host $host;
proxy_pass http://pod-lrproxy;
}
}