On Jun 21, 11:24 pm, hiphoox <norberto.ortig...@gmail.com> wrote:
> Sorry about that,
>
> let me describe my current configuration
>
> I'm using webfaction hosting
>
> I created two applications:
>
> 1. A Django (trunk)/mod_wsgi (2.0)/Python (2.5) one.
I really wish WebFaction would stop offering such an old version of
mod_wsgi. The current version is 2.5 with both 2.6 and 3.0 not far
away.
Anyway, from my understanding of how WebFaction works, the issue is
that WebFaction uses another front end server to actually accept
requests. It is that other server which handles the HTTPS requests.
The request as it is proxied through to your server is only HTTP.
Because this occurs, the back end server only knows about the request
being HTTP and that HTTPS was used on front end server has been lost.
This means that WSGI environment variable 'wsgi.url_scheme' is always
being set to 'http', stuffing up any URL reconstruction being done in
the Django application.
If one was using nginx as the front end server and had control over
it, you would setup nginx to pass across a special header which
indicates whether HTTPS was originally used. There is no
standarisation on what header should be used or what it should be set
to. Adding some inbuilt mechanism to deal with this in mod_wsgi has
been looked up, but was abandoned because of the lack of
standarisation. See:
http://code.google.com/p/modwsgi/issues/detail?id=133
Anyway, one way which is also understood by Paste is to use in nginx
configuration:
proxy_set_header X-Forwarded-Scheme $scheme;
In your WSGI script file, you would then use:
import os, sys
sys.path.append('/usr/local/django')
os.environ['DJANGO_SETTINGS_MODULE'] = 'mysite.settings'
import django.core.handlers.wsgi
_application = django.core.handlers.wsgi.WSGIHandler()
def application(environ, start_response):
environ['wsgi.url_scheme'] = environ.get
('HTTP_X_FORWARDED_SCHEME', 'http')
return _application(environ, start_response)
In other words, use a WSGI wrapper application to update
'wsgi.url_scheme' based on the value of the passed header.
At this point you are going to have to ask the WebFaction people
whether they pass any special header through which indicates whether
original request used HTTPS or not and customise above as appropriate.
If they don't provide a way of getting that information, I'd really
suggest you move to a proper VPS where you can control everything
yourself.
Graham
> 2. A Symbolic link to static one to deliver static resources for
> admin_media
>
> my http.conf has the following info:
>
> +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
> +++++++++++++++++
> ServerRoot "/home/experior/webapps/django_trunk/apache2"
>
> LoadModule dir_module modules/mod_dir.so
> LoadModule env_module modules/mod_env.so
> LoadModule log_config_module modules/mod_log_config.so
> LoadModule mime_module modules/mod_mime.so
> LoadModule rewrite_module modules/mod_rewrite.so
> LoadModule wsgi_module modules/mod_wsgi.so
>
> KeepAlive Off
> Listen 8311
> LogFormat "%{X-Forwarded-For}i %l %u %t \"%r\" %>s %b \"%{Referer}i\"
> \"%{User-Agent}i\"" combined
> CustomLog logs/access_log combined
> ServerLimit 2
>
> WSGIScriptAliasMatch ^/([^/]+) /home/experior/webapps/django_trunk/$1/
> apache/django.wsgi
> +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
> +++++++++++++++++
>
> The django.wsgi has:
>
> +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
> +++++++++++++++++
> import os
> import sys
>
> sys.path = ['/home/experior/webapps/django_trunk', '/home/experior/
> webapps/django_trunk/lib/python2.5'] + sys.path
> sys.path.append('/home/experior/webapps/django_trunk/experior/')
>
> from django.core.handlers.wsgi import WSGIHandler
>
> os.environ['DJANGO_SETTINGS_MODULE'] = 'experior.settings'
> application = WSGIHandler()
> +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
> +++++++++++++++++
>
> Please let me know if you need more info.
>
> Best regards,
>
> On Jun 20, 11:11 pm, Graham Dumpleton <graham.dumple...@gmail.com>
> wrote:
>
>
>
> > Any solution may be dependent on how Django was being hosted. Neither
> > of you have actually said how you were hosting Django. Even if OP
> > worked it out, his solution may not be relevant to use due to you
> > hosting it differently.
>
> > Graham
>
> > On Jun 21, 1:50 pm, hiphoox <norberto.ortig...@gmail.com> wrote:
>
> > > Hi,
>
> > > I have exactly the same problem. Did you get any way to resolve it?
>
> > > Regards,
>
> > > Norberto Ortigoza
>
> > > On Jun 12, 9:54 am, Francis <lav.fran...@gmail.com> wrote:
>
> > > > Hi folks,
>
> > > > I have set to instance of my server, one serving in http with admin
> > > > disable and another one accessible throu https with admin enable.
>
> > > > But this config cause me some trouble, each time I save something in
> > > > the administration interface, it redirect me to http instead of https.
> > > > (which throw 404)
>
> > > > Is there something I can set to tell the admin site to redirect to
> > > > https?
>
> > > > Thank you
>
> > > > Francis
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---