nginx----配置优化

错误页面优化

server {
        listen 8001;
        server_name localhost;
        error_page 500 /500.html;
        error_page 502 /502.html;
        error_page 503 /503.html;
        error_page 504 /504.html;
        error_page 403 /403.html;
        error_page 404 /404.html;

location / {
        root html/www;
        index index.php index.html index.htm;
    }
}

猜你喜欢

转载自www.cnblogs.com/QicongLiang/p/9838225.html