我有一个 rails 应用程序...我安装了 chain: nginx+passenger 并运行 rails server。但我的问题是,在浏览器中我必须设置 url,如:
page.com:3000
但是如何只使用page.com?
我无法运行passenger start -e=development -p=80
用户限制命令....
我的 nginx 配置文件是这样的:
server {
listen 80;
server_name localhost;
#charset koi8-r;
#root /home/prog/OnlineAuto/Shop/public;
#passenger_enabled on;
#access_log logs/host.access.log main;
location / {
root /home/prog/OnlineAuto/Shop/public;
index index.html index.htm;
passenger_enabled on;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
那么如何在没有任何端口的情况下按域获取我的 rails 应用程序?(但在 3000 端口上运行 rails 服务器)