Mercurial > sat_legacy_website
view sat_website/wsgi.py @ 159:d893828f58f0
settings: replaced http: by https: urls
author | Goffi <goffi@goffi.org> |
---|---|
date | Sun, 23 Sep 2018 16:19:10 +0200 |
parents | b1c16cd53b62 |
children |
line wrap: on
line source
""" WSGI config for sat_website project. It exposes the WSGI callable as a module-level variable named ``application``. For more information on this file, see https://docs.djangoproject.com/en/1.11/howto/deployment/wsgi/ """ import os from django.core.wsgi import get_wsgi_application os.environ.setdefault("DJANGO_SETTINGS_MODULE", "settings") application = get_wsgi_application()