Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I just switched from using Passenger to using POW because I didn't have to run the Apache server to run rails apps on POW. But I'm not having luck running MAMP Pro and POW simultaneously.

Anyone have any luck running both MAMP Pro and POW?

share|improve this question

2 Answers

up vote 10 down vote accepted

There is another way that I prefer. You don't have to mess with scripts or anything —much. The downside is, you need to have MAMP Pro running to access your Pow apps.

First, if you have Pow installed (which, in your case, you do), uninstall it with curl get.pow.cx/uninstall.sh | sh. Not to worry, all settings and applications will be preserved.

Then, you have to add a line to Pow configuration file. Do echo 'export POW_DST_PORT=88' >> ~/.powconfig, and then install Pow again with curl get.pow.cx | sh.

Now, open MAMP Pro, go to Hosts, and create a new host. Doesn't matter what it is named and which directory is selected (though I use 'rails.dev' and the folder I keep my Rails apps in). (Also, deselect the select box for "local name resolution", just in case.) Then go to the Advanced tab, and fill this in to the textarea labeled "Customized virtual host general settings":

ServerName pow
ServerAlias *.dev

ProxyPass / http://localhost:20559/
ProxyPassReverse / http://localhost:20559/
ProxyPreserveHost On

This is a solution derived from the Running Pow with Apache article on 37signals' github wiki, and it works fine on the great MAMP Pro 1.9.X for Snow Leopard as well as the dreadful MAMP Pro 2.0.X on Lion.

share|improve this answer
Keep in mind - with this MAMP has to be running at all times to access your *.dev sites, otherwise you'll have to go to *.dev:88 – brittohalloran Dec 11 '11 at 2:03
Thanks this is great. I feel like I switch back and forth between MAMP and Pow all the time. So to have MAMP on all the time is no biggie. – Marc Dec 30 '11 at 9:05
Actually with MAMP Pro 2, Pow works without having to do the steps you gave above. I just upgraded and tried it. – Marc Dec 30 '11 at 9:10
I'm running MP 2.0.5 and Pow caused my other sites that I run through MP to not run. The solution given above worked perfectly. I am now a happy camper! – Jonathan Miller Sep 7 '12 at 15:08

There is a shell script if you need to switch between running Pow and Apache: https://gist.github.com/919084

And another script in ruby that changes Pow's listening port, so you can still run Apache on port 80: https://gist.github.com/911687

Also, I would suggest you to install powder gem

share|improve this answer
This is just what I was looking for! – Marc Aug 10 '11 at 22:15

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.