Commit bcf730f2 by John Jarvis

fixing mixxing forum_mongo_database var definition

parent 8c11b685
......@@ -56,12 +56,19 @@
- name: wait for mongo server to start
wait_for: port=27017 delay=2
- name: create a mongodb user
- name: create a mongodb user for studio
mongodb_user: >
database=edxapp
name=edxapp
password=password
state=present
- name: create a mongodb user for forums
mongodb_user: >
database=forum
name=cs_comments_service
password=password
state=present
- name: install memcached
apt: pkg=memcached state=present
......@@ -10,6 +10,7 @@ forum_mongo_user: "cs_comments_service"
forum_mongo_password: "password"
forum_mongo_host: "localhost"
forum_mongo_port: "27010"
forum_mongo_database: "forum"
forum_mongo_url: "mongodb://{{ forum_mongo_user }}:{{ forum_mongo_password }}@{{ formum_mongo_host }}:{{ forum_mongo_port }}/{{ forum_mongo_database }}"
forum_rack_env: "development"
forum_sinatra_env: "development"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment