From 412bc4b01ce2ce0282f4fa8eab649b7d9498438f Mon Sep 17 00:00:00 2001 From: Aaron van Meerten Date: Mon, 19 Aug 2019 11:25:36 -0500 Subject: [PATCH] prosody: documented global config and modules environment vars --- README.md | 2 ++ docker-compose.yml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/README.md b/README.md index 320dc30..6e993a2 100644 --- a/README.md +++ b/README.md @@ -219,6 +219,8 @@ Variable | Description | Default value `XMPP_MODULES` | Custom Prosody modules for XMPP_DOMAIN (comma separated) | mod_info,mod_alert `XMPP_MUC_MODULES` | Custom Prosody modules for MUC component (comma separated) | mod_info,mod_alert `XMPP_INTERNAL_MUC_MODULES` | Custom Prosody modules for internal MUC component (comma separated) | mod_info,mod_alert +`GLOBAL_MODULES` | Custom prosodule modules to load in global configuration (comma separated) | mod_statistics,mod_alert +`GLOBAL_CONFIG` | Custom configuration string with escaped newlines | foo = bar;\nkey = val; `JICOFO_COMPONENT_SECRET` | XMPP component password for Jicofo | s3cr37 `JICOFO_AUTH_USER` | XMPP user for Jicofo client connections | focus `JICOFO_AUTH_PASSWORD` | XMPP password for Jicofo client connections | passw0rd diff --git a/docker-compose.yml b/docker-compose.yml index 9a9ec2c..7380d15 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -41,6 +41,8 @@ services: - AUTH_TYPE - ENABLE_AUTH - ENABLE_GUESTS + - GLOBAL_MODULES + - GLOBAL_CONFIG - LDAP_URL - LDAP_BASE - LDAP_BINDDN