将本地域指向localhost:3000

时间:2011-05-14 16:53:36

标签: apache2 virtual-hosts

嘿,我很乐意将本地域指向localhost:3000或其他运行我的Wubrick实例的端口(对于Rails)

我找不到apache2配置来将本地域指向这些wubrick实例(或简称localhost:3000)。有人可以帮助我吗?

的问候,
尼基尔古普塔

2 个答案:

答案 0 :(得分:2)

行。找到解决方案,如下所示:

<VirtualHost *:80>
    ServerAdmin webmaster@localhost
    ServerName rails.new
    ServerAlias www.rails.new rails
    PassengerEnabled Off
    ProxyPass / http://127.0.0.1:3000/
    ProxyPassReverse / http://127.0.0.1:3000/
</VirtualHost>

答案 1 :(得分:0)

如果您想要更简单方便的东西,可以使用此项目 如果没有配置文件,它会做同样的事情

https://github.com/cristianoliveira/ergo