Update not-so-great tweaks.

这个提交包含在:
Josh Mudge 2019-01-12 22:28:49 -07:00
父节点 5aca247a5a
当前提交 f58f1a2382
共有 1 个文件被更改,包括 27 次插入35 次删除

查看文件

@ -1,43 +1,35 @@
map $sent_http_content_type $expires { # Expires map
default off; map $sent_http_content_type $expires {
text/html epoch; default off;
text/css max; text/html epoch;
application/javascript max; text/css max;
~image/ max; application/javascript max;
application/font-woff max; ~image/ max;
application/font-woff2 max; application/font-woff max;
application/x-font-truetype max; application/font-woff2 max;
application/x-font-opentype max; application/x-font-truetype max;
} application/x-font-opentype max;
}
server { server {
# listen 8080 default_server;
# listen [::]:8080 default_server;
# return 301 https://$host$request_uri;
# SSL configuration
#
listen 443 ssl default_server;
listen [::]:443 ssl default_server;
#ssl_certificate /etc/letsencrypt/live/cityofardon.com/fullchain.pem; # managed by Certbot
#ssl_certificate_key /etc/letsencrypt/live/cityofardon.com/privkey.pem; # managed by Certbot
expires $expires; expires $expires;
# Enable Gzip for select elements. (safe)
gzip on;
gzip_buffers 4 8k;
gzip_proxied any;
gzip_types
text/css
font/truetype
font/opentype
text/plain;
# text/javascript
# application/javascript;
# Enable Gzip gzip_static on;
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_proxied expired no-cache no-store private auth; gzip_vary on;
gzip_disable "MSIE [1-6]\.";
gzip_vary on;