mirror of
https://github.com/elyby/accounts.git
synced 2024-11-30 02:32:26 +05:30
Поправлен конфиг nginx на предмет кэширования html файлов
This commit is contained in:
parent
52f115a4e9
commit
d924b07c29
@ -30,7 +30,8 @@ http {
|
|||||||
|
|
||||||
root $root_path;
|
root $root_path;
|
||||||
charset utf-8;
|
charset utf-8;
|
||||||
client_max_body_size 100M;
|
client_max_body_size 2M;
|
||||||
|
etag on;
|
||||||
|
|
||||||
location / {
|
location / {
|
||||||
alias $frontend_path;
|
alias $frontend_path;
|
||||||
@ -49,8 +50,14 @@ http {
|
|||||||
fastcgi_param SERVER_NAME $host;
|
fastcgi_param SERVER_NAME $host;
|
||||||
}
|
}
|
||||||
|
|
||||||
# Раздача статики для frontend
|
# html файлы идут отдельно, для них будет применяться E-Tag кэширование
|
||||||
location ~* ^.+\.(html|jpg|jpeg|gif|png|svg|js|json|css|zip|rar|eot|ttf|woff|ico) {
|
location ~* \.html$ {
|
||||||
|
root $frontend_path;
|
||||||
|
access_log off;
|
||||||
|
}
|
||||||
|
|
||||||
|
# Раздача статики для frontend с указанием max-кэша. Сброс будет по #hash после ребилда webpackом
|
||||||
|
location ~* ^.+\.(jpg|jpeg|gif|png|svg|js|json|css|zip|rar|eot|ttf|woff|ico) {
|
||||||
root $frontend_path;
|
root $frontend_path;
|
||||||
expires max;
|
expires max;
|
||||||
access_log off;
|
access_log off;
|
||||||
|
Loading…
Reference in New Issue
Block a user