当我尝试重启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/*;
}
最佳答案