我已经在linode上使用unicorn和nginx设置并部署了一个rails应用程序。但是,当我转到我已在site-enable中的应用程序配置中设置的URL时,我将使用正在侦听端口80的默认站点。 如果我到了IP和端口,我根本得不到任何东西。 如果我将网站设置为监听80就可以了
网址从注册商指向linode IP并且工作正常。
启用网站的xxxx.co.uk文件
upstream unicorn
server unix:/tmp/unicorn.xxxx.co.uk.sock fail_timeout=0;
}
server {
server_name xxxx xxxx;
listen 3001 default deferred;
root /var/www/apps/nocn.org.uk/current/public;
location ^~ /assets/ {
gzip_static on;
#try $uri /old$uri
expires max;
add_header Cache-Control 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;
}
error_page 500 502 503 504 /500.html;
client_max_body_size 4G;
keepalive_timeout 10;
}
答案 0 :(得分:1)
确保您在linode的防火墙或配置中启用了对端口3001的远程访问(可能使用iptables)。