-
Notifications
You must be signed in to change notification settings - Fork 432
Closed
Labels
Milestone
Description
If there is a single HTTP site, we must add SSL cache. It was present on rtCamp old server... We missed that during migration. Added it just now!
Add... /etc/nginx/nginx.conf inside http{...} block
ssl_session_cache shared:SSL:10m;
ssl_session_timeout 10m;
Also add...
ssl_ciphers RC4:HIGH:!aNULL:!MD5;
ssl_prefer_server_ciphers on;
http://nginx.org/en/docs/http/configuring_https_servers.html