Spotter-VM/gnuhealth/etc/nginx/apps/gnuhealth

10 lines
305 B
Plaintext
Raw Normal View History

2017-12-29 16:31:48 +01:00
access_log /var/log/nginx/gnuhealth.access.log;
error_log /var/log/nginx/gnuhealth.error.log;
location / {
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header X-Forwarded-Host $host:$server_port;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_pass http://127.0.0.1:9008;
}