Commit 9a016142 by Brandon DeRosier Committed by GitHub

Merge pull request #3718 from open-craft/bdero/rabbitmq-fix-default-tls

Change the default XQUEUE_RABBITMQ_TLS value to false
parents 582f716a d891e660
- Role: xqueue
- Changed `XQUEUE_RABBITMQ_TLS` default from `true` to `false`.
- Role: credentials - Role: credentials
- Added `CREDENTIALS_EXTRA_APPS` to enable the inclusion of additional Django apps in the Credentials Service. - Added `CREDENTIALS_EXTRA_APPS` to enable the inclusion of additional Django apps in the Credentials Service.
- Role: common - Role: common
...@@ -210,11 +213,12 @@ ...@@ -210,11 +213,12 @@
- Added `MONGO_AUTH` to turn authentication on/off. Auth is now enabled by default, and was previously disabled by default. - Added `MONGO_AUTH` to turn authentication on/off. Auth is now enabled by default, and was previously disabled by default.
- Role: xqueue - Role: xqueue
- Added `EDXAPP_CELERY_BROKER_USE_SSL` to allow configuring celery to use TLS. - Added `XQUEUE_RABBITMQ_TLS` to allow configuring xqueue to use TLS when connecting to the AMQP broker.
- Added `XQUEUE_RABBITMQ_VHOST` to allow configuring the xqueue RabbitMQ host.
- Added `XQUEUE_RABBITMQ_PORT` to allow configuring the RabbitMQ port.
- Role: edxapp - Role: edxapp
- Added `XQUEUE_RABBITMQ_VHOST` to allow configuring the xqueue RabbitMQ host. - Added `EDXAPP_CELERY_BROKER_USE_SSL` to allow configuring celery to use TLS.
- Added `XQUEUE_RABBITMQ_PORT` and `XQUEUE_RABBITMQ_TLS` to allow configuring the RabbitMQ port, and enabling TLS respectively.
- Role: ecommerce - Role: ecommerce
- Added `ECOMMERCE_ENTERPRISE_URL` for the `enterprise` API endpoint exposed by a new service `edx-enterprise` (currently hosted by `LMS`), which defaults to the existing setting `ECOMMERCE_LMS_URL_ROOT`. - Added `ECOMMERCE_ENTERPRISE_URL` for the `enterprise` API endpoint exposed by a new service `edx-enterprise` (currently hosted by `LMS`), which defaults to the existing setting `ECOMMERCE_LMS_URL_ROOT`.
......
...@@ -48,7 +48,7 @@ XQUEUE_RABBITMQ_PASS: 'edx' ...@@ -48,7 +48,7 @@ XQUEUE_RABBITMQ_PASS: 'edx'
XQUEUE_RABBITMQ_VHOST: '/' XQUEUE_RABBITMQ_VHOST: '/'
XQUEUE_RABBITMQ_HOSTNAME: 'localhost' XQUEUE_RABBITMQ_HOSTNAME: 'localhost'
XQUEUE_RABBITMQ_PORT: 5672 XQUEUE_RABBITMQ_PORT: 5672
XQUEUE_RABBITMQ_TLS: true XQUEUE_RABBITMQ_TLS: false
XQUEUE_LANG: 'en_US.UTF-8' XQUEUE_LANG: 'en_US.UTF-8'
XQUEUE_MYSQL_DB_NAME: 'xqueue' XQUEUE_MYSQL_DB_NAME: 'xqueue'
......
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