我是AWS和Nginx的新手。
当我访问我的弹性IP地址以获取Web服务器EC2实例时,我收到404未找到错误。
虽然我已将文件上传到我在nginx.conf文件中设置为根目录的目录,但是如何显示404找不到错误?
在我编辑了nginx.conf文件之后,我也重新加载了nginx。
$ ls sites/
LICENSE README.md css fonts index.html js
events {}
http {
server {
listen 80;
server_name MY_IP_ADDRESS_HERE;
root /sites/;
}
}
当我将根目录设置为" / usr / share / nginx / html /&#34时,我得到一个默认的nginx页面;在nginx.conf文件中,服务器运行正常。