nginx:[emerg]一个重复的默认服务器

Cro*_*ton 6 ruby-on-rails passenger nginx

当我尝试重启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
Run Code Online (Sandbox Code Playgroud)

启用站点-/默认

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;
        }
}
Run Code Online (Sandbox Code Playgroud)

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/*;
}
Run Code Online (Sandbox Code Playgroud)

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

Yus*_*sef 11

如果你看看 /etc/nginx/sites-enabled/你看到两个文件,default.savedefault只是删除其中一个

 sudo rm -rf  /etc/nginx/sites-enabled/default.save 
Run Code Online (Sandbox Code Playgroud)