added two more cases to SSL template and gzip as default in templates.

This commit is contained in:
krishna rokhale
2015-04-07 02:31:36 +05:30
committed by Jose Diaz-Gonzalez
parent fd27ca022c
commit adfa13235d
2 changed files with 34 additions and 0 deletions

View File

@@ -6,6 +6,14 @@ server {
error_log /var/log/nginx/${APP}-error.log;
location / {
gzip on;
gzip_min_length 1100;
gzip_buffers 4 32k;
gzip_types text/css text/javascript text/xml text/plain text/x-component application/javascript application/x-javascript application/json application/xml application/rss+xml font/truetype application/x-font-ttf font/opentype application/vnd.ms-fontobject image/svg+xml;
gzip_vary on;
gzip_comp_level 6;
proxy_pass http://$APP;
proxy_http_version 1.1;
proxy_set_header Upgrade \$http_upgrade;

View File

@@ -7,6 +7,21 @@ server {
return 301 https://\$host\$request_uri;
}
server {
listen [::]:80;
listen 80;
server_name $SSL_SERVER_NAME;
return 301 https://$SSL_SERVER_NAME$request_uri;
}
server {
listen [::]:80;
listen 80;
server_name www.$SSL_SERVER_NAME;
return 301 https://www.$SSL_SERVER_NAME$request_uri;
}
server {
listen [::]:443 ssl spdy;
listen 443 ssl spdy;
@@ -18,6 +33,14 @@ $SSL_DIRECTIVES
keepalive_timeout 70;
add_header Alternate-Protocol 443:npn-spdy/2;
location / {
gzip on;
gzip_min_length 1100;
gzip_buffers 4 32k;
gzip_types text/css text/javascript text/xml text/plain text/x-component application/javascript application/x-javascript application/json application/xml application/rss+xml font/truetype application/x-font-ttf font/opentype application/vnd.ms-fontobject image/svg+xml;
gzip_vary on;
gzip_comp_level 6;
proxy_pass http://$APP;
proxy_http_version 1.1;
proxy_set_header Upgrade \$http_upgrade;
@@ -30,3 +53,6 @@ $SSL_DIRECTIVES
}
include $DOKKU_ROOT/$APP/nginx.conf.d/*.conf;
}