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

12 lines
250 B
Plaintext
Raw Normal View History

2017-12-19 22:17:12 +01:00
server {
listen [::]:8803 ipv6only=off;
2018-01-08 15:27:29 +01:00
listen [::]:8403 ssl http2 ipv6only=off;
2017-12-19 22:17:12 +01:00
2018-01-08 15:27:29 +01:00
access_log /var/log/nginx/ckan.access.log;
error_log /var/log/nginx/ckan.error.log;
location / {
proxy_pass http://127.0.0.1:8003;
2018-01-08 15:27:29 +01:00
}
2017-12-19 22:17:12 +01:00
}