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

前端之家收集整理的这篇文章主要介绍了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 
原文链接:https://www.f2er.com/nginx/434519.html

猜你在找的Nginx相关文章