We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36c479a commit 7456490Copy full SHA for 7456490
nginx/templates/nginx.conf.template
@@ -90,20 +90,22 @@ server {
90
default_type image/svg+xml;
91
}
92
location = /favicon.ico {
93
- log_not_found off;
+ log_not_found off;
94
+ access_log off;
95
96
location = /robots.txt {
97
allow all;
98
99
100
101
#
102
# caching of files
103
location ~* \.(ico|pdf|flv)$ {
104
expires 1y;
105
-
106
location ~* \.(js|css|png|jpg|jpeg|gif|swf|xml|txt)$ {
- expires 14d;
107
+ expires max;
108
109
110
111
access_log off;
0 commit comments