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
d8cd85c8
Commit
d8cd85c8
authored
Mar 25, 2016
by
Bilal
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
addressing comments
parent
98853e12
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
9 deletions
+17
-9
playbooks/roles/harstorage/defaults/main.yml
+9
-0
playbooks/roles/harstorage/templates/edx/etc/harstorage/production.ini.j2
+8
-9
No files found.
playbooks/roles/harstorage/defaults/main.yml
View file @
d8cd85c8
...
@@ -48,3 +48,12 @@ harstorage_python_pkgs:
...
@@ -48,3 +48,12 @@ harstorage_python_pkgs:
-
{
name
:
"
pymongo"
,
version
:
"
2.8"
}
-
{
name
:
"
pymongo"
,
version
:
"
2.8"
}
harstorage_redhat_pkgs
:
[]
harstorage_redhat_pkgs
:
[]
harstorage_port
:
"
5000"
harstorage_host
:
"
127.0.0.1"
harstorage_version
:
"
1.0"
# mongo packages
mongo_port
:
"
27017"
mongo_repl_set
:
"
repl1"
mongo_admin_user
:
"
admin"
mongo_admin_password
:
"
admin"
playbooks/roles/harstorage/templates/edx/etc/harstorage/production.ini.j2
View file @
d8cd85c8
...
@@ -8,8 +8,8 @@ debug = false
...
@@ -8,8 +8,8 @@ debug = false
[server:main]
[server:main]
use = egg:Paste#http
use = egg:Paste#http
host =
127.0.0.1
host =
{{ harstorage_host }}
port =
5000
port =
{{ harstorage_port }}
[app:main]
[app:main]
use = egg:harstorage
use = egg:harstorage
...
@@ -18,17 +18,16 @@ static_files = true
...
@@ -18,17 +18,16 @@ static_files = true
temp_store = %(here)s/data
temp_store = %(here)s/data
bin_store = %(here)s
bin_store = %(here)s
ps_enabled = true
ps_enabled = true
static_version =
1.0
static_version =
{{ harstorage_version }}
mongo_replicate = false
mongo_replicate = false
mongo_replset =
repl1
mongo_replset =
{{ mongo_repl_set }}
mongo_host = localhost
mongo_host = localhost
mongo_port =
27017
mongo_port =
{{ mongo_port }}
mongo_db =
harstorage
mongo_db =
{{ harstorage_role_name }}
mongo_auth = false
mongo_auth = false
mongo_user = admin
mongo_user = {{ mongo_admin_user }}
mongo_pswd = admin
mongo_pswd = {{ mongo_admin_password }}
cache_dir = %(here)s/data
cache_dir = %(here)s/data
beaker.session.key = harstorage
beaker.session.key = harstorage
beaker.session.secret = somesecret
beaker.session.secret = somesecret
...
...
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