From 63c21aa89fcc002abad0e50b9f3d2a7086c2ff4a Mon Sep 17 00:00:00 2001 From: Rafael Laverde Date: Mon, 13 Mar 2017 19:11:48 -0500 Subject: [PATCH] Docs: Add missing MAILGUN_SENDER_DOMAIN setting in pythonanywhere wsgi configuration. --- docs/deployment-on-pythonanywhere.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/deployment-on-pythonanywhere.rst b/docs/deployment-on-pythonanywhere.rst index 93f189601..661170722 100644 --- a/docs/deployment-on-pythonanywhere.rst +++ b/docs/deployment-on-pythonanywhere.rst @@ -140,6 +140,7 @@ Click through to the **WSGI configuration file** link (near the top) and edit th os.environ['DJANGO_ADMIN_URL'] = '' os.environ['DJANGO_MAILGUN_API_KEY'] = '' os.environ['DJANGO_MAILGUN_SERVER_NAME'] = '' + os.environ['MAILGUN_SENDER_DOMAIN'] = '' os.environ['DJANGO_AWS_ACCESS_KEY_ID'] = '' os.environ['DJANGO_AWS_SECRET_ACCESS_KEY'] = '' os.environ['DJANGO_AWS_STORAGE_BUCKET_NAME'] = ''