nginxエラー「nginx: [warn] conflicting server name "ドメイン" on 0.0.0.0:80, ignored」の対処法
Ubuntu20.04でnginx起動した際に下記のエラーが出てたので対処します。
sudo nginx -t
nginx: [warn] conflicting server name "ドメイン" on [::]:443, ignored
nginx: [warn] conflicting server name "ドメイン" on 0.0.0.0:443, ignored
nginx: [warn] conflicting server name "ドメイン" on 0.0.0.0:80, ignored
nginx: [warn] conflicting server name "ドメイン" on [::]:80, ignored
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful
解決した方法
私の場合ですが、「/etc/nginx/sites-available」にあるファイルで
listen 80; listen [::]:80; # server_name ドメイン; listen 443; listen [::]:443; # server_name ドメイン;
を「#」をつけて無効にしたところ解決しました。