无法在ramaze(机架)应用程序的apache上设置反向代理

时间:2017-07-26 10:59:14

标签: apache rack httpd.conf

Using these instructions我正在尝试为我的ramaze / rack应用设置反向代理。

以下是我的httpd-vhosts.conf

# Virtual Hosts
#

<VirtualHost *:80>
    ServerName localhost
    DocumentRoot c:/wamp/www
    <Directory  "c:/wamp/www/"> 
        Options +Indexes +Includes +FollowSymLinks +MultiViews
        # AllowOverride All

        # desbest edit
        AllowOverride None

        Require local
    </Directory>

    # desbest edit
    ProxyPass "/compesh/"  "http://127.0.0.1:7000/"
    ProxyPassReverse "/compesh/"  "http://127.0.0.1:7000/"

</VirtualHost>
#

当我加载我的应用程序并且我的应用程序从未显示时,我收到错误404文件未找到。

error 404 not found on rack

如何在加载http://localhost/compesh

时展示我的应用

我在制作应用时遇到问题。

0 个答案:

没有答案