mirror of https://github.com/django/django.git
Fixed #5604 -- Check for use of HTTPS by looking at the `wsgi.url_scheme` environment variable instead of the `HTTPS` environment variable since `wsgi.url_scheme` is required by the WSGI spec, while `HTTPS` is not. Thanks, ramiro.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6428 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
e8c9e3a853
commit
f4bb24658b
|
@ -105,7 +105,8 @@ class WSGIRequest(http.HttpRequest):
|
||||||
return '%s%s' % (self.path, self.environ.get('QUERY_STRING', '') and ('?' + self.environ.get('QUERY_STRING', '')) or '')
|
return '%s%s' % (self.path, self.environ.get('QUERY_STRING', '') and ('?' + self.environ.get('QUERY_STRING', '')) or '')
|
||||||
|
|
||||||
def is_secure(self):
|
def is_secure(self):
|
||||||
return 'HTTPS' in self.environ and self.environ['HTTPS'] == 'on'
|
return 'wsgi.url_scheme' in self.environ \
|
||||||
|
and self.environ['wsgi.url_scheme'] == 'https'
|
||||||
|
|
||||||
def _load_post_and_files(self):
|
def _load_post_and_files(self):
|
||||||
# Populates self._post and self._files
|
# Populates self._post and self._files
|
||||||
|
|
Loading…
Reference in New Issue