Ich habe einen Ubuntu 16.04-Host von Alibaba Cloud. Beim Zugriff auf die IP (zum Beispiel: 0.0.0.0) wird die Nginx-Willkommensseite angezeigt, aber wenn ich darauf zugreife, wird die 404-Seitendatei geöffnet. Mit anderen Worten: Alle Dateien im Stammverzeichnis haben kein Routing. 0.0.0.0/index.html
显示404,在主机输入curl 127.0.0.1/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
那行,目录改成自己的目录。nginx安装目录下的conf/nginx.conf配置如下:
其中
root
属性指定了访问的文件所在根目录,index
属性指定默认的访问页面,location /
表示匹配所有请求。页面报404,那么你就到
root
指定的目录下查看是否有index.html文件