web-dev-qa-db-ja.com

nginx vhostエラー「デフォルトサーバーが重複しています」

設定したCentOS 7ボックスで名前ベースの仮想ホストを設定するときに問題が発生しました。起動しようとすると、次のエラーが表示されます。

Dec 07 20:55:28 li805-37 nginx [7284]:nginx:[emerg] /etc/nginx/conf.d/website-one.conf:2の0.0.0.0:80のデフォルトサーバーの複製

/etc/nginx/nginx.confの内容は次のとおりです

user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;

# Load dynamic modules. See /usr/share/nginx/README.dynamic.
include /usr/share/nginx/modules/*.conf;

events {
    worker_connections 1024;
}

http {
    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" 

'
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';

    access_log  /var/log/nginx/access.log  main;

    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;

    include /etc/nginx/conf.d/*.conf;
}

そしてvhostの設定、最初にノードを実行するwebsite-one

upstream node_server {
   server 127.0.0.1:3000 fail_timeout=0;
}

server {
    listen 80;
    server_name website-one.com;

    index index.html index.htm;
    access_log /var/log/webone/access.log;
    error_log /var/log/webone/error.log debug;

    location / {
        proxy_set_header Host $Host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_redirect off;
        proxy_buffering off;
        proxy_pass http://node_server;
    }

    location /public/ {
        root /opt/website-one;
    }
}

それからwebsite-twoは今のところ静的なHTMLサイトです:

server {
    listen 80;
    server_name website-two.com;

    access_log /var/log/webtwo/access.log;
    error_log /var/log/webtwo/error.log debug;
    index index.php index.html index.htm;

    location / {
        root /var/www/;
    }

}

また、/etc/nginxディレクトリで「default_server」を検索してみたところ、結果は、簡潔にするために削除した/etc/nginx/nginx.conのコメント化された2行にヒットしました。

4
Frank Conry

これは私の側の完全なオナラでした。初めに、私はそのようにnginxを開始しようとしました:

Sudo systemctl start nginx.service

失敗したとき、エラーメッセージを確認しました。

Sudo systemctl status -l nginx.service

次に、問題を修正した後、Sudo systemctl status -l nginx.serviceを再度実行してエラーがまだ存在するかどうかを確認しましたが、サービスを開始しようとせずに、このコマンドを実行すると、最後のエラーが表示されます。したがって、すでに問題を修正しているにもかかわらず、同じエラーが発生していました。 nginxの設定を変更するときは、エラーメッセージを確認する前に実際にサービスを開始する必要があります。

2
Frank Conry