Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion playbooks/edx_sandbox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@
- edxapp
- notifier
- analytics_api
- insights
- edx_notes_api
- demo
- { role: 'rabbitmq', rabbitmq_ip: '127.0.0.1' }
Expand Down
37 changes: 37 additions & 0 deletions playbooks/opencraft_integration.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
---

# Example sandbox configuration
# for single server community
# installs

- name: Configure instance(s)
hosts: all
sudo: True
gather_facts: True
vars:
migrate_db: "yes"
openid_workaround: True
EDXAPP_LMS_NGINX_PORT: '80'
EDXAPP_LMS_SSL_NGINX_PORT: '443'
NGINX_ENABLE_SSL: True
LETS_ENCRYPT_DOMAINS:
- "{{ EDXAPP_LMS_SITE_NAME }}"
- "{{ EDXAPP_CMS_SITE_NAME }}"
edx_platform_version: 'master'
# Set to false if deployed behind another proxy/load balancer.
NGINX_SET_X_FORWARDED_HEADERS: True
# These should stay false for the public AMI
COMMON_ENABLE_DATADOG: False
COMMON_ENABLE_SPLUNKFORWARDER: False
ENABLE_LEGACY_ORA: !!null
roles:
- role: nginx
nginx_sites:
- cms
- lms
nginx_default_sites:
- lms
- edxlocal
- mongo
- edxapp
- lets_encrypt
2 changes: 1 addition & 1 deletion playbooks/roles/edxlocal/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@

- name: setup users for ecommerce
mysql_user: >
name="{{ ECOMMERCE_DEFAULT_DB_NAME }}"
name="{{ ECOMMERCE_DATABASES.default.USER }}"
password="{{ ECOMMERCE_DATABASES.default.PASSWORD }}"
priv='{{ ECOMMERCE_DEFAULT_DB_NAME }}.*:SELECT,INSERT,UPDATE,DELETE'
when: ECOMMERCE_DEFAULT_DB_NAME is defined
Expand Down
2 changes: 1 addition & 1 deletion util/vagrant/migrate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# defaults
CONFIGURATION="fullstack"
TARGET="named-release/cypress.rc"
TARGET="named-release/cypress"
INTERACTIVE=true
OPENEDX_ROOT="/edx"

Expand Down