nginx+unicorn_railsでurl生成系ヘルパーがhttp://unicorn/...を返す問題
タイトル通り。
image_url等が http://unicorn/assets/... というURLを返してしまう。
原因
- request.hostに"unicorn"が入ってしまう為
対処
- nginxにproxy_set_headerを追加
app.conf
location / {
+ proxy_set_header Host $http_host;
proxy_pass http://unicorn;
}
Author And Source
この問題について(nginx+unicorn_railsでurl生成系ヘルパーがhttp://unicorn/...を返す問題), 我々は、より多くの情報をここで見つけました https://qiita.com/inamori/items/5eb9ec0b6f8a4cd912e6著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .