Browse Source

Update 'nginx/default'

master
josh 7 years ago
parent
commit
9a9fb5003f
  1. 36
      nginx/default

36
nginx/default

@ -13,6 +13,21 @@
# Default server configuration
#
# Expires map
map $sent_http_content_type $expires {
default off;
text/html epoch;
text/css max;
application/javascript max;
~image/ max;
application/font-woff max;
application/font-woff2 max;
application/x-font-truetype max;
application/x-font-opentype max;
}
server {
# listen 80 default_server;
# listen [::]:80 default_server;
@ -25,6 +40,24 @@ server {
ssl_certificate /etc/letsencrypt/live/bereanbibleutah.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/bereanbibleutah.com/privkey.pem;
expires $expires;
# Enable Gzip
gzip on;
gzip_buffers 4 8k;
gzip_proxied any;
gzip_types
text/css
font/truetype
font/opentype
gzip_static on;
gzip_proxied expired no-cache no-store private auth;
gzip_disable "MSIE [1-6]\.";
gzip_vary on;
#
# Note: You should disable gzip for SSL traffic.
@ -43,7 +76,7 @@ server {
# Add index.php to the list if you are using PHP
index index.php index.html index.htm;
server_name bereanbibleutah.com;
server_name bereanbibleutah.org;
location / {
# First attempt to serve request as file, then
@ -100,4 +133,3 @@ server {
# try_files $uri $uri/ =404;
# }
#}

Loading…
Cancel
Save