**关闭。**这个问题是off-topic。目前不接受答复。
想改善这个问题吗?Update the question,所以Stack Overflow的on-topic。
十年前就关门了。
Improve this question
server {
#listen 80; ## listen for ipv4; this line is default and implied
#listen [::]:80 default ipv6only=on; ## listen for ipv6
#root /usr/share/nginx/www;
root /home/ubuntu/node-login;
# Make site accessible from
server_name ec2-xx-xx-xxx-xxx.us-west-1.compute.amazonaws.com;
location /{
proxy_pass http://127.0.0.1:8000/;
proxy_redirect off;
}
}
这导致nignx错误[警告]冲突的服务器名称“ec2...”上0.0.0.0:80忽略我不明白,任何解释赞赏.谢谢
3条答案
按热度按时间7kjnsjlb1#
我假设您运行的是Linux,并且使用gEdit编辑文件。在
/etc/nginx/sites-enabled
中,它可能留下了一个临时文件,例如default~
(观看~
)。根据您的编辑器,文件可以命名为
.save
或类似的名称。只需运行$ ls -lah
来查看哪些文件是不希望出现的,并将其删除(感谢@Tisch)。删除这个文件,它会解决你的问题。
v6ylcynt2#
在配置中的某个地方还有另一个
server_name ec2-xx-xx-xxx-xxx.us-west-1.compute.amazonaws.com
。lrl1mhuk3#
应该只定义一个localhost,检查sites-enabled或nginx. conf。