Re: How to make app only accessible through HTTPS?

2011-12-01 Thread Benny Tsai
That's exactly it. I followed the suggestion from a Stack Overflow post and added a check to see whether 'x-forwarded-proto' = 'https'. http://stackoverflow.com/questions/7185074/heroku-nodejs-http-to-https-ssl-forced-redirect On Monday, November 21, 2011 8:26:46 AM UTC-7, j_McCaffrey wrote: >

Re: How to make app only accessible through HTTPS?

2011-11-28 Thread Corey Haines
We are currently use rack/ssl-enforcer Works fine for us https://github.com/tobmatth/rack-ssl-enforcer -- You received this message because you are subscribed to the Google Groups "Heroku" group. To view this discussion on the web visit https://groups.google.com/d/msg/heroku/-/1BjwQcRsxnkJ. To

Re: How to make app only accessible through HTTPS?

2011-11-21 Thread John McCaffrey
Not sure what the official answer would be, but can you app detect the non ssl connection and redirect or refuse? On Tue, Nov 15, 2011 at 11:51 PM, Benny Tsai wrote: > Hi all, > > I have a web service (written using Clojure & Noir) that I want to make > accessible over SSL. I've enabled the Pig

How to make app only accessible through HTTPS?

2011-11-20 Thread Benny Tsai
Hi all, I have a web service (written using Clojure & Noir) that I want to make accessible over SSL. I've enabled the Piggyback SSL add-on (gratifyingly easy to use!), but noticed that my service is still accessible through the old plain HTTP URL. Is there a way to make the service *only* acc