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 

启用站点-/默认

 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.savedefault只是删除其中的一个

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