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

12 lines
302 B
Plaintext
Raw Normal View History

location /motech {
2017-12-08 10:44:43 +01:00
alias /srv/motech/webapps/motech;
try_files $uri @motech;
}
location @motech {
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:9081;
}