在Nginx

时间:2017-06-24 11:00:51

标签: amazon-web-services nginx amazon-ec2

我是AWS和Nginx的新手。

当我访问我的弹性IP地址以获取Web服务器EC2实例时,我收到404未找到错误。

虽然我已将文件上传到我在nginx.conf文件中设置为根目录的目录,但是如何显示404找不到错误?

在我编辑了nginx.conf文件之后,我也重新加载了nginx。

在EC2上

$ ls sites/
LICENSE  README.md  css  fonts  index.html  js

nginx.conf

events {}

http {
    server {
        listen 80;
        server_name MY_IP_ADDRESS_HERE;
        root /sites/;
    }
}

其他信息

当我将根目录设置为" / usr / share / nginx / html /&#34时,我得到一个默认的nginx页面;在nginx.conf文件中,服务器运行正常。

0 个答案:

没有答案