美文网首页
nginx conf 基础配置文件

nginx conf 基础配置文件

作者: 迷藏_ | 来源:发表于2018-06-28 11:44 被阅读13次
    server {
        listen       80 default_server;
        # listen       [::]:80 default_server;
        server_name  _;
        root         /usr/share/nginx/html;
    
        # Load configuration files for the default server block.
        include /etc/nginx/default.d/*.conf;
    
        location / {
        }
    
        error_page 404 /404.html;
            location = /40x.html {
        }
    
        error_page 500 502 503 504 /50x.html;
            location = /50x.html {
        }
    
    }
    
    

    相关文章

      网友评论

          本文标题:nginx conf 基础配置文件

          本文链接:https://www.haomeiwen.com/subject/vbchdftx.html