微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

ruby-on-rails – nginx:[emerg]一个重复的默认服务器

当我尝试重启Nginx并在控制台中写入此命令时

Nginx -t

我有一个错误

Nginx: [emerg] a duplicate default server for 0.0.0.0:80 in /etc/Nginx/sites-enabled/default.save:20
Nginx: configuration file /etc/Nginx/Nginx.conf test Failed

启用站点-/

server {
        listen 80 default_server;
        listen [::]:80 default_server ipv6only=on;

        server_name localhost;
        passenger_enabled on;
        rails_env    production;
        root         /home/hh/public;

        access_log  /var/log/Nginx/host.access.log;
        # redirect server error pages to the static page /50x.html
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }
}

Nginx.conf

user www-data;
worker_processes 4;
pid /run/Nginx.pid;

events {
        worker_connections 768;
}

http {

        sendfile on;
        tcp_nopush on;
        tcp_nodelay on;
        keepalive_timeout 65;
        types_hash_max_size 2048;

        include /etc/Nginx/mime.types;
        default_type application/octet-stream;


        access_log /var/log/Nginx/access.log;
        error_log /var/log/Nginx/error.log;

        include /etc/Nginx/conf.d/*.conf;
        include /etc/Nginx/sites-enabled/*;
}

一小时前一切正常,但重启后Nginx我有这个问题.

最佳答案
如果你看一下/ etc / Nginx / sites-enabled /你看到两个文件,default.save和default只删除其中一个

 sudo rm -rf  /etc/Nginx/sites-enabled/default.save 

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐