Spotter-VM/sigmah/etc/nginx/apps-available/sigmah

12 lines
287 B
Plaintext
Raw Normal View History

location /sigmah {
2017-12-08 10:44:43 +01:00
alias /srv/sigmah;
try_files $uri @sigmah;
}
location @sigmah {
proxy_set_header X-Forwarded-For $remote_addr;
2017-12-08 10:44:43 +01:00
proxy_set_header X-Forwarded-Host $host:$server_port;
proxy_set_header X-Forwarded-Proto https;
2017-12-08 10:44:43 +01:00
proxy_pass http://127.0.0.1:9080;
}