Last active
December 10, 2021 11:52
-
-
Save nigelbabu/076ad12c13b2071de8e1 to your computer and use it in GitHub Desktop.
Running CKAN with SSL
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
WSGISocketPrefix /var/run/wsgi | |
<VirtualHost 127.0.0.1:8080> | |
ServerName myinstance.ckan.net | |
ServerAlias www.myinstance.ckan.net | |
WSGIScriptAlias / /etc/ckan/default/apache.wsgi | |
# pass authorization info on (needed for rest api) | |
WSGIPassAuthorization On | |
# Deploy as a daemon (avoids conflicts between CKAN instances) | |
WSGIDaemonProcess ckan_default display-name=ckan_default processes=2 threads=15 | |
WSGIProcessGroup ckan_default | |
ErrorLog /var/log/apache2/ckan_default.error.log | |
CustomLog /var/log/apache2/ckan_default.custom.log combined | |
<IfModule mod_rpaf.c> | |
RPAFenable On | |
RPAFsethostname On | |
RPAFproxy_ips 127.0.0.1 | |
</IfModule> | |
</VirtualHost> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
proxy_cache_path /tmp/nginx_cache levels=1:2 keys_zone=cache:30m max_size=250m; | |
proxy_temp_path /tmp/nginx_proxy 1 2; | |
server { | |
listen 80 default; | |
server_name myintance.ckan.net; | |
return 301 https://$server_name$request_uri; | |
} | |
server { | |
listen 443 ssl; | |
client_max_body_size 100M; | |
ssl on; | |
ssl_certificate ssl/myinstance.ckan.net.crt; | |
ssl_certificate_key ssl/myinstance.ckan.net.key; | |
ssl_protocols TLSv1 TLSv1.1 TLSv1.2; | |
ssl_ciphers 'ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES256-GCM-SHA384:kEDH+AESGCM:ECDHE-RSA-AES128-SHA256:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES256-SHA384:ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA:ECDHE-ECDSA-AES256-SHA:DHE-RSA-AES128-SHA256:DHE-RSA-AES128-SHA:DHE-RSA-AES256-SHA256:DHE-DSS-AES256-SHA:AES128-GCM-SHA256:AES256-GCM-SHA384:ECDHE-RSA-RC4-SHA:ECDHE-ECDSA-RC4-SHA:RC4-SHA:HIGH:!aNULL:!eNULL:!EXPORT:!DES:!3DES:!MD5:!PSK'; | |
ssl_prefer_server_ciphers on; | |
keepalive_timeout 60; | |
ssl_session_cache shared:SSL:10m; | |
ssl_session_timeout 10m; | |
add_header Strict-Transport-Security "max-age=31536000; includeSubdomains;"; | |
location / { | |
proxy_pass http://127.0.0.1:8080/; | |
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; | |
proxy_set_header X-Forwarded-Proto $scheme; | |
# In emergency comment out line to force caching | |
# proxy_ignore_headers X-Accel-Expires Expires Cache-Control; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello, I used your configuration.
But now the data explorer stopped to work.
I cannot see the data, live in the webpage.
Do you have any idea what could be wrong? I used ckan 2.6.2 .deb package installation.
thanks a lot