我的是阿里云的一台Ubuntu16.04主机,nginx安装成功了,访问IP(如:0.0.0.0)显示的是nginx欢迎页面,但我访问0.0.0.0/index.html显示404,在主机输入curl 127.0.0.1/index.html打开的是404页面文件。也就是说所有的根目录的文件都没有路由,请问怎么解决这个问题呢?
0.0.0.0/index.html
curl 127.0.0.1/index.html
认证0级讲师
/etc/nginx/conf.d/nginx.conf 默认配置
/etc/nginx/conf.d/nginx.conf
/etc/nginx/sites-available/default 默认localhost配置
/etc/nginx/sites-available/default
/var/www/html/ 默认工作目录
/var/www/html/
http://localhost/index.nginx-debian.html 默认欢迎页全url
http://localhost/index.nginx-debian.html
所以你需要编辑 /etc/nginx/sites-available/default root root那行,目录改成自己的目录。
root
nginx安装目录下的conf/nginx.conf配置如下:
server { listen 80; server_name localhost; location / { root html; index index.html index.htm; } }
其中root属性指定了访问的文件所在根目录,index属性指定默认的访问页面,location /表示匹配所有请求。
index
location /
页面报404,那么你就到root指定的目录下查看是否有index.html文件
Ubuntu apt 安装 nginx 默认配置
/etc/nginx/conf.d/nginx.conf
默认配置/etc/nginx/sites-available/default
默认localhost配置/var/www/html/
默认工作目录http://localhost/index.nginx-debian.html
默认欢迎页全url所以你需要编辑
/etc/nginx/sites-available/default
root
root
那行,目录改成自己的目录。nginx安装目录下的conf/nginx.conf配置如下:
其中
root
属性指定了访问的文件所在根目录,index
属性指定默认的访问页面,location /
表示匹配所有请求。页面报404,那么你就到
root
指定的目录下查看是否有index.html文件