В файле /etc/nginx/bx/conf/bitrix_general.conf есть location
[CODE]location ~* \.(css|js|gif|png|jpg|jpeg|ico|ogg|ttf|woff|woff2|eot|otf)$ {
error_page 404 /404.html;
expires 30d;
access_log off;
log_not_found off;
}
[/CODE]
Порядок в котором nginx выбирает location [url=https://nginx.org/ru/docs/http/ngx_http_core_module.html#location]указан в документации[/url]
[CODE]location ~* \.(css|js|gif|png|jpg|jpeg|ico|ogg|ttf|woff|woff2|eot|otf)$ {
error_page 404 /404.html;
expires 30d;
access_log off;
log_not_found off;
}
[/CODE]
Порядок в котором nginx выбирает location [url=https://nginx.org/ru/docs/http/ngx_http_core_module.html#location]указан в документации[/url]