Update 'nginx/default'

This commit is contained in:
josh 2017-07-18 16:40:12 -06:00
förälder d7c6c5b0fa
incheckning 9a9fb5003f
1 ändrade filer med 44 tillägg och 12 borttagningar

Visa fil

@ -13,6 +13,21 @@
# Default server configuration # 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 { server {
# listen 80 default_server; # listen 80 default_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 /etc/letsencrypt/live/bereanbibleutah.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/bereanbibleutah.com/privkey.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. # Note: You should disable gzip for SSL traffic.
@ -43,7 +76,7 @@ server {
# Add index.php to the list if you are using PHP # Add index.php to the list if you are using PHP
index index.php index.html index.htm; index index.php index.html index.htm;
server_name bereanbibleutah.com; server_name bereanbibleutah.org;
location / { location / {
# First attempt to serve request as file, then # First attempt to serve request as file, then
@ -52,14 +85,14 @@ server {
try_files $uri $uri/ /index.php?$args; try_files $uri $uri/ /index.php?$args;
} }
location /sermons/ { location /sermons/ {
alias /home/josh/sermons/; alias /home/josh/sermons/;
# First attempt to serve request as file, then # First attempt to serve request as file, then
# as directory, then fall back to displaying a 404. # as directory, then fall back to displaying a 404.
try_files $uri $uri/ =404; try_files $uri $uri/ =404;
#try_files $uri $uri/ /index.php?$args; #try_files $uri $uri/ /index.php?$args;
autoindex on; autoindex on;
} }
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
@ -100,4 +133,3 @@ server {
# try_files $uri $uri/ =404; # try_files $uri $uri/ =404;
# } # }
#} #}