nginx.conf原始的内容不一样,按照教程的改了并重启了,但是好像还是指向原html,访问地址显示的是Welcome to nginx页面

nginx.conf原始的内容不一样,按照教程的改了并重启了,但是好像还是指向原html,访问地址显示的是Welcome to nginx页面


user  nginx;
worker_processes  auto;

error_log  /var/log/nginx/error.log notice;
pid        /var/run/nginx.pid;

include /usr/share/nginx/modules/*.conf;

events {
    worker_connections  1024;
}


http {
    include       /etc/nginx/mime.types;
    default_type  application/octet-stream;

    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$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;

    #gzip  on;

    include /etc/nginx/conf.d/*.conf;
    server{
        listen 80;
        listen [::]:80;
        server_name  _;
        root /usr/share/nginx/html2;

        error_page 404 /404.html;
        location = /404.html {
        }

        error_page 500 502 503 504 /50x.html;
        location = /50x.html {
        }
}

}


正在回答 回答被采纳积分+1

登陆购买课程后可参与讨论,去登陆

1回答
好帮手慕小尤 2022-03-03 10:51:48

同学你好,同学尝试修改配置文件,将下方代码添加到配置文件中。

server {
    listen       80;
    server_name  localhost;
    #charset koi8-r;
    #access_log  /var/log/nginx/host.access.log  main;

    location /mystatus {
        stub_status;
    }
    location / {
        root   /usr/share/nginx/html2;
        index  index.html index.htm;
    }

    #error_page  404              /404.html;
    # redirect server error pages to the static page /50x.html
    #
    error_page   500 502 503 504  404 /50x.html;//修改404 状态码的对应的指向的访问目录,修改后需重启服务器。
    location = /50x.html {
        root   /usr/share/nginx/html2;
    }
}

注:建议同学将配置文件中代码进行备份,避免出现问题。

祝学习愉快!

  • 提问者 永遠热泪盈眶 #1

    替换了配置文件还是不行呢,显示

    nginx: configuration file /etc/nginx/nginx.conf test failed

    2022-03-03 15:53:32
  • 同学你好,同学是否有删除// 后的内容,如果没有,则建议同学进行删除。然后重新启动试一下。

    祝学习愉快!

    2022-03-03 16:15:06
  • 去掉//也还是失败的..

    2022-03-07 17:23:42
问题已解决,确定采纳
还有疑问,暂不采纳

恭喜解决一个难题,获得1积分~

来为老师/同学的回答评分吧

0 星
请稍等 ...
意见反馈 帮助中心 APP下载
官方微信

在线咨询

领取优惠

免费试听

领取大纲

扫描二维码,添加
你的专属老师