Update X.Y.conf

This commit is contained in:
Eric Johansson (neku) 2021-06-06 19:38:55 +02:00 committed by GitHub
parent 0c9a152f84
commit 264033d188
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 18 additions and 9 deletions

View File

@ -15,15 +15,24 @@ autoindex off;
access_log off;
index index.html index.php;
gzip on;
gzip_min_length 1000;
gzip_comp_level 6;
gzip_proxied any;
gzip_types text/css text/js text/javascript application/javascript image/png application/x-javascript;
location ~* \.(?:css|js|jpg|jpeg|gif|png|ico|xml|eot|woff|woff2|ttf|svg|otf)$ {
location ~* \.(ico|css|js|ttf|png|gif)$ {
expires 7d;
}
add_header Cache-Control "no-cache, public, must-revalidate, proxy-revalidate";
# allow CORS requests
add_header Access-Control-Allow-Origin *;
types {font/opentype otf;}
types {application/vnd.ms-fontobject eot;}
types {font/truetype ttf;}
types {application/font-woff woff;}
types {font/x-woff woff2;}
}
gzip on;
gzip_min_length 1000;
gzip_comp_level 6;
gzip_proxied any;
gzip_types text/css text/js text/javascript application/javascript application/x-javascript;
location ~* \.php$ {
fastcgi_pass unix:/var/run/php/php7.3-fpm.sock;
@ -34,4 +43,4 @@ include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
}
}