当我尝试重启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后我遇到了这个问题。
答案 0 :(得分:10)
如果你看/etc/nginx/sites-enabled/
,就会看到两个文件,default.save
和default
只删除其中一个
sudo rm -rf /etc/nginx/sites-enabled/default.save
答案 1 :(得分:0)
您应该删除默认 conf 文件中的 default_server
。