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

12 lines
260 B
Plaintext
Raw Normal View History

2017-12-29 16:31:48 +01:00
server {
listen [::]:8808 ipv6only=off;
2018-01-08 15:27:29 +01:00
listen [::]:8408 ssl http2 ipv6only=off;
2017-12-29 16:31:48 +01:00
2018-01-08 15:27:29 +01:00
access_log /var/log/nginx/gnuhealth.access.log;
error_log /var/log/nginx/gnuhealth.error.log;
location / {
proxy_pass http://127.0.0.1:8008;
2018-01-08 15:27:29 +01:00
}
2017-12-29 16:31:48 +01:00
}