Commit e71e6996 authored by Cameron Carney's avatar Cameron Carney

Updated nginx config

parent 95728151
......@@ -34,6 +34,24 @@ http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
# Enables gzip compression on some content.
gzip on;
gzip_comp_level 2;
gzip_disable msie6;
gzip_min_length 1024;
gzip_proxied expired no-cache no-store private auth;
gzip_types text/plain text/css text/xml text/javascript
application/javascript application/x-javascript
application/json application/xml;
# SSL Parameters
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_session_cache shared:SSL:50m;
ssl_session_timeout 5m;
ssl_ciphers "EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH !RC4";
ssl_prefer_server_ciphers on;
# General config directory
include /etc/nginx/conf.d/*.conf;
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment