From: Bob Showalter Date: 2007-09-12T23:30:28+09:00 Subject: Re: Proxying junebug through Apache On 9/12/07, Nick Coyne wrote: > Thanks. That moved me forward a bit. > > Now I'm receiving the error: > Forbidden > > You don't have permission to access / on this server > > Looking in the junebug error log I see a line which says: > [warn] proxy: No protocol handler was valid for the URL /. If you are > using a DSO version of mod_proxy, make sure the proxy submodules are > included in the configuration using LoadModule. You need to load mod_proxy and mod_proxy_http. My LoadModule's look like this: LoadModule proxy_module libexec/apache22/mod_proxy.so LoadModule proxy_http_module libexec/apache22/mod_proxy_http.so For the permissions, you need something like this inside your block: Order Allow,Deny Allow from all Most of this you can find by reading the Apache docs under setting up reverse proxies (which is what this is).