nginx服务器绑定域名

请问如下配置nginx.conf文件为什么还是无法通过域名访问,只能通过IP访问,域名已经解析,能ping到

server {        listen       80 default_server;        listen       [::]:80 default_server;        server_name  www.bitsu.club;        root         /www/blog;        index index.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 {
        }
    }


森林海
浏览 490回答 1
1回答

三国纷争

应该是部署的程序的问题。看看你的www/blog/index.html存在不存在。试试:    location / {        index   index.html index.php;     }
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Html5