我正在尝试让 OSX 10.8.2 上的 Apache 将请求代理到特定 URL 到运行在端口 8080 上的 Node.js 服务器,遵循本指南:http
://garrows.com/?p=455
为了做到这一点,我将以下内容添加到 apache2/users/george.conf:
ProxyRequests Off
ProxyPass /foo http://localhost:8080
ProxyPassReverse /foo http://localhost:8080
但是添加了这个,apache不会启动。事实上,只要我添加了“ProxyRequests Off”指令,apache 将不再启动。这是该指令的正确位置吗?