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

12 lines
272 B
Plaintext
Raw Normal View History

2017-12-25 11:43:06 +01:00
server {
listen [::]:8805 ipv6only=off;
2018-01-08 15:27:29 +01:00
listen [::]:8405 ssl http2 ipv6only=off;
access_log /var/log/nginx/crisiscleanup.access.log;
error_log /var/log/nginx/crisiscleanup.error.log;
2017-12-25 11:43:06 +01:00
2018-01-08 15:27:29 +01:00
location / {
proxy_pass http://127.0.0.1:8005;
2018-01-08 15:27:29 +01:00
}
2017-12-25 11:43:06 +01:00
}