Deactivate HTTPS on dev and devstack

When running locally, XBlocks which access third-party software no longer
cause server errors.

Because devstack inherits from aws, the HTTPS flag was implicitly set to 'on'.
This meant that XBlocks attempted to use SSL when dealing with third-party
components like LTI.  Since SSL is not enabled on devstack, this caused server
errors whenever these features ran.
This commit is contained in:
Albert Liang
2015-07-30 12:46:59 -07:00
parent b2545ce8a8
commit 46434582c8
3 changed files with 4 additions and 0 deletions

View File

@@ -11,6 +11,7 @@ MEDIA_ROOT = "/edx/var/edxapp/uploads"
DEBUG = True
USE_I18N = True
TEMPLATE_DEBUG = DEBUG
HTTPS = 'off'
################################ LOGGERS ######################################