Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
configuration
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
configuration
Commits
d07d4776
Commit
d07d4776
authored
Sep 27, 2013
by
John Jarvis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixing some var bugs
parent
a5b72ae8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
12 deletions
+18
-12
playbooks/roles/edxapp/defaults/main.yml
+18
-12
No files found.
playbooks/roles/edxapp/defaults/main.yml
View file @
d07d4776
...
...
@@ -2,14 +2,16 @@
# when the role is included
---
# These are default values for the env and auth
# configuration files. There should be no
# host identifying or sensitive information and
# the defaults should be appropriate for running
# all roles on a single instance
# These are custom variables that can be overridden
# on the command line to change specific values in the hash
# These are variables that default to a localhost
# setup and are meant to be overwritten for
# different environments.
#
# Variables in all caps are environment specific
# Lowercase variables are internal to the role
#
# Defaults specified here should not contain
# any secrets or host identifying information.
EDXAPP_LMS_BASE
:
'
'
EDXAPP_PREVIEW_LMS_BASE
:
'
'
EDXAPP_CMS_BASE
:
'
'
...
...
@@ -20,10 +22,11 @@ EDXAPP_XQUEUE_DJANGO_AUTH:
username
:
'
lms'
password
:
'
password'
EDXAPP_MONGO_HOST
:
[
'
localhost'
]
EDXAPP_MONGO_HOST
S
:
[
'
localhost'
]
EDXAPP_MONGO_PASSWORD
:
'
password'
EDXAPP_MONGO_PORT
:
27017
EDXAPP_MONGO_USER
:
'
mongo'
EDXAPP_MONGO_DB_NAME
:
'
edxapp'
EDXAPP_MYSQL_DB_NAME
:
'
edxapp'
EDXAPP_MYSQL_USER
:
'
root'
...
...
@@ -75,6 +78,9 @@ EDXAPP_SYSLOG_SERVER: ''
EDXAPP_RABBIT_HOSTNAME
:
'
rabbit.{{ENV_NAME}}.vpc.edx.org'
EDXAPP_XML_MAPPINGS
:
{}
#-------- Everything below this line is internal to the role ------------
#Use YAML references (& and *) and hash merge <<: to factor out shared settings
#see http://atechie.net/2009/07/merging-hashes-in-yaml-conf-files/
edxapp_generic_auth_config
:
&edxapp_generic_auth
...
...
@@ -196,12 +202,12 @@ lms_auth_config:
OPTIONS
:
default_class
:
'
xmodule.hidden_module.HiddenDescriptor'
host
:
$EDXAPP_MONGO_HOSTS
db
:
$EDXAPP_MONGO_DB_NAME
db
:
$EDXAPP_MONGO_DB_NAME
collection
:
'
modulestore'
render_template
:
'
mitxmako.shortcuts.render_to_string'
user
:
$EDXAPP_MONGO_USER
password
:
$EDXAPP_MONGO_PASSWORD
port
:
10016
password
:
$EDXAPP_MONGO_PASSWORD
port
:
$EDXAPP_MONGO_PORT
fs_root
:
'
/opt/wwc/data'
ENGINE
:
'
xmodule.modulestore.mongo.MongoModuleStore'
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment