docker-ckan/nginx/setup/default.conf

32 lines
890 B
Plaintext
Raw Normal View History

2022-07-13 18:36:14 +02:00
server {
listen 80;
listen [::]:80;
2022-08-16 14:02:49 +02:00
listen 443 ssl;
listen [::]:443 ssl;
2022-07-13 18:36:14 +02:00
server_name localhost;
2022-08-16 14:02:49 +02:00
ssl_certificate /etc/nginx/certs/ckan-local.crt;
ssl_certificate_key /etc/nginx/certs/ckan-local.key;
2022-07-13 18:36:14 +02:00
#access_log /var/log/nginx/host.access.log main;
location / {
proxy_pass http://ckan:5000/;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header Host $host;
#proxy_cache cache;
proxy_cache_bypass $cookie_auth_tkt;
proxy_no_cache $cookie_auth_tkt;
proxy_cache_valid 30m;
proxy_cache_key $host$scheme$proxy_host$request_uri;
}
error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}