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文件未找到。
时展示我的应用我在制作应用时遇到问题。