server { listen 80; server_name localhost; index index.php index.html index.htm; root /www/wwwroot/default; # 错误页配置 error_page 404 /404.html; # 伪静态规则 include /www/server/vhost/rewrite/default.conf; include enable-php-0.conf; # 不记录静态文件日志 location ~ .*\.(bmp|jpg|jpeg|png|gif|svg|ico|tiff|webp|avif|heif|heic|jxl)$ { expires 30d; access_log /dev/null; error_log /dev/null; } location ~ .*\.(js|css|ttf|otf|woff|woff2|eot)$ { expires 6h; access_log /dev/null; error_log /dev/null; } # 禁止部分敏感目录 location ~ ^/(\.user.ini|\.htaccess|\.git|\.svn|\.env) { return 404; } access_log /www/wwwlogs/default.log; error_log /www/wwwlogs/default.log; }