pow is great, but many things in my app assume https, and it would be a pain to go through them all and add "if not dev environment". Is it possible to have pow serve https?
|
The easiest way I found was to use Tunnels: https://github.com/jugyo/tunnels
No configuration required. |
|||
|
|
|
Use stunnel to create a tunnel to the pow server. Like:
|
|||||
|
|
POW currently does not support SSL (https://github.com/37signals/pow/issues/5). However, a number of other people have your same desire so hopefully it will be included in a future release! Your best alternative solution if you don't want to go through the hassel of modifying your code is to setup Apache and generate a development SSL certificate. This will require modifying your hosts file and isn't as 'slick' as POW unfortunately, but on the plus side it avoids pesky environment specific conditionals. Edit: The latest update is that POW can be configured with SSL using Nginx as outlined by the following guide: http://shiny-bits-of-code.tumblr.com/post/4749553253/ssl-proxy-with-nginx |
||||
|
|
|
There is currently a way to use SSL while still using POW by setting up an SSL proxy through nginx. Take a look at: http://shiny-bits-of-code.tumblr.com/post/4749553253/ssl-proxy-with-nginx |
|||
|
|
|
I recently created a script that uses the stud tunnel for this. https://gist.github.com/2050941#file_gistfile1.md |
|||
|
|
|
This is also covered nicely here: |
|||
|
|