I have in my development machine many virtual hosts, managed by the VirtualHostX app
Some projects are made in rails, so i am trying to make some of them available via passenger. But i want to use the VirtualHostsX interface to set them available or not.
The only way i found was using ProxyPass, like this:
ProxyPass / http://127.0.0.1:3000/
ProxyPassReverse / http://127.0.0.1:3000/
this is not the same as having a rails app served by passenger, because this will only work if i had the server started in terminal. This is great to develop and test, but still, i really need passenger on some projects
Every other way that i try i get error 403 Forbiden, You don't have permission to access / on this server.
Does anyone know how to add passenger to VirtualHostsX?
P.S.: I'm using the apache2 provided by Mac OS X