Questions tagged [rack-pow]

Pow is a zero-config Rack server for Mac OS X created by 37signals.

Pow is a zero-configuration Rack server for Mac OS X. It makes developing Rails and Rack applications as frictionless as possible. You can install it in ten seconds and have your first app up and running in under a minute. No mucking around with /etc/hosts, no compiling Apache modules, no editing configuration files or installing preference panes. And running multiple apps with multiple versions of Ruby is trivial.

To serve a Rack app, just symlink it into ~/.pow directory. Let's say you're working on an app that lives in ~/Projects/myapp. You'd like to access it at http://myapp.dev/. Setting it up is as easy as:

$ cd ~/.pow
$ ln -s ~/Projects/myapp

The name of the symlink (myapp) determines the hostname you use (myapp.dev) to access the application it points to (~/Projects/myapp).

136 questions
1
vote
1 answer

Installing Pow for Rails 4 hangs on MacOS Sierra

I have been trying to install pow (for Rails) on MacOS Sierra, but it gets hung after giving the password asked for root privilegies. $ curl get.pow.cx | sh % Total % Received % Xferd Average Speed Time Time Time Current …
1
vote
1 answer

Add a .dev command as url in a facebook app

I want to test a facebook login with a ruby on rails app. I am using pow, so the domain name of my local server is http://my_app.dev/. If I put this into the Site Url for my facebook app, I get the following error message: This URL contains an…
Obromios
  • 15,408
  • 15
  • 72
  • 127
1
vote
1 answer

Pow port proxying doesn't work with Rails 5

I'm have a Rails 5 app running with Foreman and I'm trying to use Pow's port proxying to reach it. When I try to access my app at myapp.dev I get the following error: Proxy Error Couldn't proxy request to localhost:4000. Error: connect…
Jonathan
  • 925
  • 6
  • 19
1
vote
0 answers

Routing to rails server from local IP

I have a rails app running on standard port 3000. I can access it from localhost:3000 just fine, but I want to access it from my LAN address as well. (http://192.168.1.x:3000). When I try to use the LAN IP in my browser, I get a connection…
user1309480
  • 75
  • 3
  • 7
1
vote
0 answers

Set include_path and auto_prepend_file with rack-legacy

I am using rack-legacy to run a PHP app under pow, as described here. Now rack-legacy does not parse .htaccess and I wonder how I can set include_path and auto_prepend_file so all scripts include my standard lib.
Alexander Presber
  • 6,429
  • 2
  • 37
  • 66
1
vote
2 answers

"Application not found" when using Pow

I have POW installed, but I do not understand how to symlink to my app. The example they use has /path/to/myapp. I really don't get what path I put in here. I have a folder on my desktop that I wanted to use for my development files. Do I put that…
Charlie
  • 335
  • 1
  • 5
  • 17
1
vote
1 answer

Can I setup my Pow symlink so my domain is different than the name of the folder my project is in?

I have a project currently setup using Pow, and would like to change the domain to be something other than my projects root directory name. For example, the root directory of my project is called project-refactor, and I want to change my domain…
brendanwb
  • 96
  • 1
  • 5
1
vote
0 answers

Pow does not work when wifi is on

When using the ios-simulator, I cannot reach pow endpoints while my wifi is on. When I turn off my wifi, everything works. Any ideas?
Eric Francis
  • 23,039
  • 31
  • 88
  • 122
1
vote
2 answers

.pow - failed to load

I have been using pow for years but all of a sudden it's not working for me. I'm at my wits end trying to debug this. When I try to visit my .dev/ domains I am getting simply http://foo.dev/ failed to load in the page title. The page content simply…
Anthony To
  • 2,193
  • 2
  • 21
  • 29
1
vote
0 answers

Pow (webserver) with directory listing

Is there a way to do directory listing with Pow? http://pow.cx Since GUI access to Apache is kind of deprecated on OS X. I am looking for a very simple web server setup where I can add random directories and serve up static content that may not have…
Gordon Potter
  • 5,802
  • 9
  • 42
  • 60
1
vote
0 answers

Pow server suddenly stopped working

As the title says, Pow just stopped working today. I simply get "Oops! Google Chrome could not connect to app.dev" when visiting the app.dev or IP address directly. curl: (7) couldn't connect to host Details MacOS…
mike
  • 1,526
  • 3
  • 17
  • 25
1
vote
1 answer

Can I access an application running on Pow from a VMWare Fusion VM?

I'm trying to access an application in order to test Internet Explorer against my Rails application. I have done this before, but it was when I ran my apps using Passenger and Nginx. Now that I am using Pow, I can't get it to work. I am aware of…
1
vote
1 answer

Installing Pow 0.4.1 on OS X Mountain Lion: Illegal Instruction 4

First post here. I have POW version 0.3.2 installed and working seamlessly, which it has been for a long time. For the first time I have the need of accessing my POW virtual hosts from another machine on the network (an iPad), which requires POW…
Fabio Papa
  • 15
  • 6
1
vote
4 answers

anyone knows about pow alternative in ubuntu or win7

Lately I was configuring a rails project, other developers are in mac OS X and they were using pow [pow.cx]. but I dont have mac but I do have win7 and ubuntu, So some one plz advice me how can I configure it in win7 or in ubuntu. Can I do it using…
jossie
  • 229
  • 6
  • 11
1
vote
1 answer

How to ignore public/assets with Pow

I'm testing something out with my development environment where I'm precomiling assets locally then rsyncing it to the production server. However, when I'm use Pow it serves the /public/assets/ folder which includes the minified css and js files. I…