} #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 ...
# curl http://127.0.0.1/nginx_statusOR# curl http://www.example.com/nginx_status检查Nginx状态页面 重要说明 : ngx_http_stub_status_module模块已被Nginx 1.13.0版本中的ngx_http_api_module模块取代。原文来自:https://www.howtoing.com/enable-nginx-status-page本文地址:https://www.linuxprobe...
error_page 404 = /404.html 可显示自定义404页面内容,但返回200状态码。 error_page 404 /404.php 如果是动态404错误页面,包含 header 代码(例如301跳转),将无法正常执行。正常返回404代码。 error_page 404 = /404.php 如果是动态404错误页面,包含 header 代码(例如301跳转),加等号配置可以正常执行,返回php...
server {listen 80;server_name example.com;error_page 404 /404.html;error_page 500 502 503 504 /50x.html;location / {add_header X-Error-Code $status;add_header X-Request-URI $request_uri;add_header X-Server-Name $server_name;}location = /404.html {internal;ssi on;set $error_code 4...
{ proxy_cache cache_zone; # 设置缓存内存,上面配置中已经定义好的 proxy_cache_valid 200 5m; # 缓存状态为200的请求,缓存时长为5分钟 proxy_cache_key $request_uri; # 缓存文件的key为请求的URI add_header Nginx-Cache-Status $upstream_cache_status # 把缓存状态设置为头部信息,响应给客户端 proxy_...
[$time_local] "$request" '# '$status $body_bytes_sent "$http_referer" '# '"$http_user_agent" "$http_x_forwarded_for"';#access_log logs/access.log main;sendfile on;#tcp_nopush on;#keepalive_timeout 0;keepalive_timeout65;#gzip on;server{listen80;server_name localhost;#charset ...
labels:-"traefik.http.routers.errorpage.priority=1" 我们务必降低这个服务的优先级,避免影响业务正常运行。这样才能保证在其他业务中断的时候,展示这个页面,而非遇到一些极端情况下的时候,我们看到的不是预期中的内容。 另外,如果不希望准备多个错误页面的话,可以考虑将{status}.html改为指定的固定页面index.html: ...
{listen80;server_name localhost;charset utf-8;location/{root html;index index.html index.htm;}//在"server"这里插入的这4行的信息location~/status{//访问位置为/statusstub_status on;//打开状态统计功能access_log off;//关闭此位置的日志记录}error_page500502503504/50x.html;location=/50x.html{root ...
error_page500502503504/50x.html; location= /50x.html { root html; } } #这边可以有多个server块 server { ... } } 全局块 全局块是默认配置文件从开始到events块之间的一部分内容,主要设置一些影响Nginx服务器整体运行的配置指令,因此,这些指令的作用域是Nginx服务器全局。
'$status $body_bytes_sent "$http_referer" ' '"$http_user_agent" "$http_x_forwarded_for"'; access_log /var/log/nginx/access.log main; sendfile on; tcp_nopush on; tcp_nodelay on; keepalive_timeout 65; types_hash_max_size 2048; ...