Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.