Commit dbe0a14c by Fred Smith

Merge pull request #2776 from open-craft/agaylard/make-ecommerce-conditionally-enabled

Enable ecommerce on sandbox configuration conditionally.
parents 56d802bf 8e79e690
......@@ -17,6 +17,7 @@
NGINX_SET_X_FORWARDED_HEADERS: True
# These should stay false for the public AMI
COMMON_ENABLE_DATADOG: False
SANDBOX_ENABLE_ECOMMERCE: False
COMMON_ENABLE_SPLUNKFORWARDER: False
roles:
- { role: swapfile, SWAPFILE_SIZE: "2GB" }
......@@ -29,6 +30,10 @@
- xqueue
nginx_default_sites:
- lms
- role: nginx
nginx_sites:
- ecommerce
when: SANDBOX_ENABLE_ECOMMERCE
- role: mysql
when: EDXAPP_MYSQL_HOST == 'localhost'
- edxlocal
......@@ -37,6 +42,10 @@
- { role: 'rabbitmq', rabbitmq_ip: '127.0.0.1' }
- { role: 'edxapp', celery_worker: True }
- edxapp
- role: ecommerce
when: SANDBOX_ENABLE_ECOMMERCE
- role: ecomworker
when: SANDBOX_ENABLE_ECOMMERCE
- notifier
- analytics_api
- insights
......
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