Re: [google-appengine] redirection to HTTPS is not working for Python app.yaml

2011-08-19 Thread thstart
>only works on appspot domains yes I know, but it don't works on appspot - no redirection, it stays with http -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-

Re: [google-appengine] redirection to HTTPS is not working for Python app.yaml

2011-08-19 Thread thstart
I am testing it on production: e.g. uploaded to Google cloud, but don't see the redirection to https in the browser address bar. I am using Python+Django+appengine_django helper my actual app.yaml: - url: /.* script: main.py secure: always probably appengine_django helper is the culprit? -

Re: [google-appengine] redirection to HTTPS is not working for Python app.yaml

2011-08-19 Thread Nadun Kulatunge
wow cool fun stuff << http://j.gs/I9f >> i think you will like it On Fri, Aug 19, 2011 at 12:22 PM, Gopal Patel wrote: > as of now this only works on appspot domains. for custom domain, https is > still "coming soon". > > > On Fri, Aug 19, 2011 at 11:09 AM, Robert Kluin wrote: > >> Are you test

Re: [google-appengine] redirection to HTTPS is not working for Python app.yaml

2011-08-18 Thread Gopal Patel
as of now this only works on appspot domains. for custom domain, https is still "coming soon". On Fri, Aug 19, 2011 at 11:09 AM, Robert Kluin wrote: > Are you testing on the development server or production? > > > > > > > > On Thu, Aug 18, 2011 at 16:43, thstart wrote: > > to my Python app.yaml

Re: [google-appengine] redirection to HTTPS is not working for Python app.yaml

2011-08-18 Thread Robert Kluin
Are you testing on the development server or production? On Thu, Aug 18, 2011 at 16:43, thstart wrote: > to my Python app.yaml I added > - url: /.* >   script: main.py >   secure: always > BUT > I don't get automatically redirected to the HTTPS > > What is wrong? > According: > http://code.

[google-appengine] redirection to HTTPS is not working for Python app.yaml

2011-08-18 Thread thstart
to my Python app.yaml I added - url: /.* script: main.py * secure: always* BUT *I don't get automatically redirected to the HTTPS* * * *What is wrong?* * * According: http://code.google.com/appengine/docs/python/config/appconfig.html#Secure_URLs handlers: - url: /youraccount/.* script: ac