Merge pull request #9141 from Stanford-Online/aliang8/devstack-https

Deactivate HTTPS on devstack
This commit is contained in:
Kevin Falcone
2015-08-10 17:29:05 -04:00
3 changed files with 4 additions and 0 deletions

View File

@@ -13,6 +13,8 @@ from lms.envs.dev import (WIKI_ENABLED)
DEBUG = True
TEMPLATE_DEBUG = DEBUG
HTTPS = 'off'
LOGGING = get_logger_config(ENV_ROOT / "log",
logging_env="dev",
tracking_filename="tracking.log",

View File

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

View File

@@ -16,6 +16,7 @@ SITE_NAME = 'localhost:8000'
PLATFORM_NAME = ENV_TOKENS.get('PLATFORM_NAME', 'Devstack')
# By default don't use a worker, execute tasks as if they were local functions
CELERY_ALWAYS_EAGER = True
HTTPS = 'off'
################################ LOGGERS ######################################