railsアプリをデプロイに向けてまずはブラウザにIPアドレスで表示させることに取り掛かっています。
<ターミナル>の表示の[warn]の通りサーバー名が競合していると出ているのですが
どのように変えればこのエラーが解決できるでしょうか。。
もしわかる方がいれば教えていただきたいです。
<ターミナル> [ec2-user@ip-10-0-0-49 music_app]$ sudo nginx -t nginx: [warn] conflicting server name "54.248.224.228" on 0.0.0.0:80, ignored nginx: the configuration file /etc/nginx/nginx.conf syntax is ok nginx: configuration file /etc/nginx/nginx.conf test is successful
<music_app.conf> server { listen 80; client_max_body_size 4G; server_name 54.248.224.228; keepalive_timeout 5; # Location of our static files root /var/www/rails/music_app/public; location ~ ^/assets/ { root /var/www/rails/music_app/public; } location / { proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $http_host; proxy_redirect off; if (!-f $request_filename) { proxy_pass http://unicorn_server; break; } }
<nginx.conf> server { listen 80; client_max_body_size 4G; server_name 54.248.224.228; }
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2020/11/11 10:13