Я настроил свою работу на nginx и единорога, как описано в эпизоде Railscasts # 293.
Когда я пытаюсь перенаправить, например
class PostsController < ApplicationController
def show
redirect_to posts_path, :notice => "Test redirect"
end
end
, меня перенаправляют на http://unicorn/posts
вместо http://mydomain.com/posts
Вот мой nginx.conf для приложения
upstream unicorn {
server unix:/tmp/unicorn.scvrush.sock fail_timeout=0;
}
server {
listen 80 default deferred;
# server_name example.com;
root /var/apps/current/public;
try_files $uri/index.html $uri @unicorn;
location @unicorn {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_redirect off;
proxy_pass http://unicorn;
}
keepalive_timeout 5;
}