From: Bob Showalter Date: 2007-09-13T02:35:01+09:00 Subject: Re: Proxying junebug through Apache On 9/12/07, Nick Coyne wrote: > I'm going in circles here... > > Bob, I tried your vhost setup, no luck though. > > I've set permissions on the junebug folder to be the same owner and > group as the Apache user (www-data). No difference. The permissions don't have anything to do with the proxy setup. Try it with all the rewrite stuff commented out. Does that make a difference? > > I load my original file in, which now looks like this: > > > ServerName my.server.name > > ProxyRequests Off > > #Proxy ACL > > Order allow,deny > Allow from all > > > #Proxy directives > ProxyPass / http://localhost:3301/ > ProxyPassReverse / http://localhost:3301/ > ProxyPreserveHost On > > #Turn rewriting on > RewriteEngine On > RewriteLogLevel 0 > > #Redirect non-static documents > RewriteCond %{DOCUMENT_ROOT}%{REQUEST_FILENAME} !-f > RewriteRule ^/(.*)$ http://localhost:3301%{REQUEST_URI} [P,QSA,L] > > DocumentRoot /home/nick/cvwiki/public/ > > ErrorLog /home/nick/cvwiki/error-cvwiki.log > CustomLog /home/nick/cvwiki/access-cvwiki.log combined > > > > The error I'm now receiving is "503 Service Temporarily Unavailable" > which apparently usually means that Apache can't find anything in the > place its being told to look. If I go to port 3301 in my browser Junebug > is running just fine. > > mmmmph. The 503 means that it can't talks to http://localhost:3301. Is Junebug listening on localhost? Or is it only bound to an external interface? Stop and restart your browser. You're getting close...