#error_page 404 /404.html; # redirect server error pages to the static page /50x.html # error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } # proxy the PHP scripts to Apache listening on 127.0.0.1:80 # #location ~ \.php$ { # proxy_pass http://127.0....
复制 #后台管理服务器demo server{listen80;server_name admin.crazydemo.com;root/var/www/;location/{default_type'text/html';charset utf-8;echo"this is admin server";}#设置错误页面 error_page404/404.html;#设置错误页面 error_page500502503504/50x.html;} 为了防止404页面被劫持,也就是被前面的代理...
今天一位客户说网站错误页面返回的状态码是302而不是404,问ytkah要如何处理。这个应该是设置没有正确的...
} error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } } 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 页面 3、Openresty配置 #include /etc/nginx/conf.d/*.conf; #lua 模块 lua_package_path "/usr/local/o...
Lua执行问题,通过nginx配置error_page,进入异常处理。接口响应问题,通过ngx.exec内部跳转,进入异常处理。 注:error_page默认只匹配一次,匹配多次需配置recursive_error_pageson; ngx.exec为内部跳转,类似于流水线,数据流动方向单一,无额外http请求。 新版性能 ...
error_page500502503504/50x.html; location= /50x.html { root html; } # proxy the PHP scripts to Apache listening on127.0.0.1:80# #location~\.php$ { # proxy_pass http://127.0.0.1;#} # pass the PHP scripts to FastCGI server listening on127.0.0.1:9000# ...
error_page 401 /401.html; error_page 403 /403.html; error_page 404 /404.html; error_page 500 502 503 504 /50x.html; location / { return 401; } location = /401.html { root "/data/wwwroot/error"; } location = /403.html { ...
注:error_page默认只匹配一次,匹配多次需配置recursive_error_pageson; ngx.exec为内部跳转,类似于流水线,数据流动方向单一,无额外http请求。 新版性能* 页面渲染性能 页面响应时间:模板渲染+业务筛选接口(go),平均在30ms左右,tp99在80ms以内,提高6倍以上;页面渲染(NGINX+LUA)TPS,在并发100时,16核单机在3500笔/...
# Error pages error_page 403 /error/403.html; error_page 404 /error/404.html; error_page 502 503 504 /error/50x.html; # Cache settings proxy_cache_path /var/cache/nginx levels=2 keys_zone=cache:10m inactive=60m max_size=1024m; proxy_cache_key "$host$request_uri $cookie_user"; ...
请勿删除或修改下一行带注释的404规则#error_page 404/404.html;#SSL-END#ERROR-PAGE-START 错误页配置,可以注释、删除或修改#error_page 404 /404.html;#error_page 502 /502.html;#ERROR-PAGE-END#PHP-INFO-START PHP引用配置,可以注释或修改includeenable-php-80.conf;#PHP-INFO-END#禁止访问的文件或...