将本地域指向 localhost:3000

发布于 2024-11-07 06:04:10 字数 173 浏览 1 评论 0原文

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

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

问候,
尼基尔·古普塔

Hey, I would love to point a local domain to localhost:3000 or other ports on which I am running my Wubrick instances (for Rails)

I can not find an apache2 config to point a local domain to these wubrick instances (or simply localhost:3000). Can some one please help me with that?

Regards,
Nikhil Gupta

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蓝眼睛不忧郁 2024-11-14 06:04:10

好的。找到了解决办法,如下:

<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>

OK. Found the solution, as below:

<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>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文