15 lines
442 B
Text
15 lines
442 B
Text
gzip on;
|
|
gzip_vary on;
|
|
gzip_min_length 10240;
|
|
gzip_proxied expired no-cache no-store private auth;
|
|
gzip_types text/plain text/css text/xml text/javascript application/x-javascript application/xml image/svg+xml;
|
|
|
|
location /css/ {
|
|
expires 7d;
|
|
add_header Cache-Control "public, no-transform";
|
|
}
|
|
|
|
location /img/ {
|
|
expires 30d;
|
|
add_header Cache-Control "public, no-transform";
|
|
}
|