Merge pull request #124 from appleboy/patch-3

fix format.
This commit is contained in:
Andy Dawson 2016-01-29 21:10:25 +01:00
commit 740ba774f5
7 changed files with 18 additions and 18 deletions

View File

@ -6,5 +6,5 @@
# This is not included by default, because it'd be better if you use the build # This is not included by default, because it'd be better if you use the build
# script to manage the file names. # script to manage the file names.
location ~* (.+)\.(?:\d+)\.(js|css|png|jpg|jpeg|gif)$ { location ~* (.+)\.(?:\d+)\.(js|css|png|jpg|jpeg|gif)$ {
try_files $uri $1.$2; try_files $uri $1.$2;
} }

View File

@ -1,13 +1,13 @@
# Cross domain webfont access # Cross domain webfont access
location ~* \.(?:ttf|ttc|otf|eot|woff|woff2)$ { location ~* \.(?:ttf|ttc|otf|eot|woff|woff2)$ {
include h5bp/directive-only/cross-domain-insecure.conf; include h5bp/directive-only/cross-domain-insecure.conf;
# Also, set cache rules for webfonts. # Also, set cache rules for webfonts.
# #
# See http://wiki.nginx.org/HttpCoreModule#location # See http://wiki.nginx.org/HttpCoreModule#location
# And https://github.com/h5bp/server-configs/issues/85 # And https://github.com/h5bp/server-configs/issues/85
# And https://github.com/h5bp/server-configs/issues/86 # And https://github.com/h5bp/server-configs/issues/86
expires 1M; expires 1M;
access_log off; access_log off;
add_header Cache-Control "public"; add_header Cache-Control "public";
} }

View File

@ -4,10 +4,10 @@
# https://www.mnot.net/blog/2010/04/07/well-known # https://www.mnot.net/blog/2010/04/07/well-known
# https://tools.ietf.org/html/rfc5785 # https://tools.ietf.org/html/rfc5785
location ~* /\.(?!well-known\/) { location ~* /\.(?!well-known\/) {
deny all; deny all;
} }
# Prevent clients from accessing to backup/config/source files # Prevent clients from accessing to backup/config/source files
location ~* (?:\.(?:bak|conf|dist|fla|in[ci]|log|psd|sh|sql|sw[op])|~)$ { location ~* (?:\.(?:bak|conf|dist|fla|in[ci]|log|psd|sh|sql|sw[op])|~)$ {
deny all; deny all;
} }