6
0
mirror of https://github.com/ChristianLight/tutor.git synced 2024-12-12 14:17:46 +00:00
tutor/openedx/config/templates/lms.auth.json.templ
Régis Behmo bda9e042f9 No longer refer to 'edxapp'
'edxapp' is an old reference to the vagrant image and it does not make
much sense.
2018-04-12 15:45:59 +02:00

36 lines
898 B
Plaintext

{
"SECRET_KEY": "${SECRET_KEY}",
"AWS_ACCESS_KEY_ID": "",
"AWS_SECRET_ACCESS_KEY": "",
"XQUEUE_INTERFACE": {
"basic_auth": ["edx", "edx"],
"django_auth": {
"username": "lms",
"password": "password"
},
"url": "http://localhost:18040"
},
"CONTENTSTORE": {
"ENGINE": "xmodule.contentstore.mongo.MongoContentStore",
"DOC_STORE_CONFIG": {
"db": "${MONGODB_DATABASE}",
"host": "mongodb"
}
},
"DOC_STORE_CONFIG": {
"db": "${MONGODB_DATABASE}",
"host": "mongodb"
},
"DATABASES": {
"default": {
"ENGINE": "django.db.backends.mysql",
"NAME": "${MYSQL_DATABASE}",
"USER": "${MYSQL_USERNAME}",
"PASSWORD": "${MYSQL_PASSWORD}",
"HOST": "mysql",
"PORT": "3306",
"ATOMIC_REQUESTS": true
}
}
}