Spotter-VM/motech/etc/nginx/conf.d/motech.conf

12 lines
254 B
Plaintext
Raw Normal View History

2018-01-23 18:18:46 +01:00
server {
listen [::]:8813 ipv6only=off;
2018-01-23 18:18:46 +01:00
listen [::]:8413 ssl http2 ipv6only=off;
access_log /var/log/nginx/motech.access.log;
error_log /var/log/nginx/motech.error.log;
location / {
proxy_pass http://127.0.0.1:8013;
2018-01-23 18:18:46 +01:00
}
}