On Oct 27, 2:20 pm, zweb <traderash...@gmail.com> wrote:
> I want to serve whole of my site on HTTPS.
> But HttpResponseRedirect  is sending to http by default.
>
> Any way to tell django that it should use https and not http
>
> I am using mod_python on one site and mod_wsgi on another. Both need
> to go to HTTPS

For mod_wsgi, you first need to verify whether it is saying you are
running under HTTPS in the first place. To do this you need to know
the value of wsgi.url_scheme as passed in WSGI request environment.

One way of doing that is to use a WSGI middleware wrapper to capture
request details. See first example in:

  
http://code.google.com/p/modwsgi/wiki/DebuggingTechniques#Tracking_Request_and_Response

If wsgi.url_scheme isn't 'https', then your Apache configuration is
wrong, or you are using another front end web server which is actually
handling HTTPS and you aren't conveying that fact through to backend
Apache and doing appropriate configuration changes to reflect that.

If 'wsgi.url_scheme' is correct, then it is a Django issue, or more
likely how you are using Django or how you have configured it for
location of media resources etc.

Post output or request details from that first code example in
referenced document.

Graham
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to