awsでのデプロイを試みています。
nginxを起動するとエラーログが出てしまいます。
nginx.error.log [error] 2956#0: *2 open() "/usr/share/nginx/html/favicon.ico" failed (2: No such file or directory), client: 182.251.242.8, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "ec2-52-199-252-86.ap-northeast-1.compute.amazonaws.com", referrer: "http://ec2-52-199-252-86.ap-northeast-1.compute.amazonaws.com/"
というエラーが発生してしまいます。
nginx の設定ファイル # log directory error_log /var/www/rails/hoge_app/log/nginx.error.log; access_log /var/www/rails/hoge_app/log/nginx.access.log; # max body size client_max_body_size 2G; upstream app_server { # for UNIX domain socket setups server unix:/var/www/rails/hoge_app/tmp/sockets/.unicorn.sock fail_timeout=0; } server { listen 80; server_name 52.199.252.86; # nginx so increasing this is generally safe... keepalive_timeout 5; # path for static files root /var/www/rails/hoge_app/public; # page cache loading try_files $uri/index.html $uri.html $uri @app; location = /favicon.ico { log_not_found off; } location @app { # HTTP headers proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $http_host; proxy_redirect off; proxy_pass http://app_server; } # Rails error pages error_page 500 502 503 504 /500.html; location = /500.html { root /var/www/rails/hoge_app/public; } }
location = /favicon.ico { log_not_found off;
を記載するとエラーが出なくなる、という記事を読んで、記載したのですが、変化がありません。。。
もしくは書き方を間違えているのでしょうか。
原因が分かる方、いらっしゃいませんか?
回答1件
あなたの回答
tips
プレビュー