summary refs log tree commit diff
path: root/pkgs/servers/mail/mailman/wsgi.py
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/servers/mail/mailman/wsgi.py')
-rw-r--r--pkgs/servers/mail/mailman/wsgi.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/pkgs/servers/mail/mailman/wsgi.py b/pkgs/servers/mail/mailman/wsgi.py
new file mode 100644
index 00000000000..5bdbc511473
--- /dev/null
+++ b/pkgs/servers/mail/mailman/wsgi.py
@@ -0,0 +1,17 @@
+"""
+WSGI config for meh 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.9/howto/deployment/wsgi/
+"""
+
+import os
+
+from django.core.wsgi import get_wsgi_application
+
+
+os.environ.setdefault("DJANGO_SETTINGS_MODULE", "settings")
+
+application = get_wsgi_application()