summary refs log tree commit diff
path: root/contrib
diff options
context:
space:
mode:
authorkaiyou <pierre@jaury.eu>2018-02-08 20:43:45 +0100
committerkaiyou <pierre@jaury.eu>2018-02-08 20:43:45 +0100
commit914a59cb8c12b25d77ed9a81e4543c23d7e10b5e (patch)
tree3a3a189077cee5a4b80afcdd523d6a04f780648a /contrib
parentUse 'synapse' as a default postgres user in Docker examples (diff)
downloadsynapse-914a59cb8c12b25d77ed9a81e4543c23d7e10b5e.tar.xz
Disable the Web client in the Docker image
Diffstat (limited to 'contrib')
-rw-r--r--contrib/docker/README.md1
-rw-r--r--contrib/docker/conf/homeserver.yaml6
2 files changed, 3 insertions, 4 deletions
diff --git a/contrib/docker/README.md b/contrib/docker/README.md
index 0493d2ee6e..9f40dc0d58 100644
--- a/contrib/docker/README.md
+++ b/contrib/docker/README.md
@@ -94,7 +94,6 @@ variables are available for configuration:
   statistics reporting back to the Matrix project which helps us to get funding.
 * ``SYNAPSE_NO_TLS``, set this variable to disable TLS in Synapse (use this if
   you run your own TLS-capable reverse proxy).
-* ``SYNAPSE_WEB_CLIENT``, set this variable to enable the embedded Web client.
 * ``SYNAPSE_ENABLE_REGISTRATION``, set this variable to enable registration on
   the Synapse instance.
 * ``SYNAPSE_ALLOW_GUEST``, set this variable to allow guest joining this server.
diff --git a/contrib/docker/conf/homeserver.yaml b/contrib/docker/conf/homeserver.yaml
index 1ca1fe991f..19a2cbad29 100644
--- a/contrib/docker/conf/homeserver.yaml
+++ b/contrib/docker/conf/homeserver.yaml
@@ -12,7 +12,7 @@ tls_fingerprints: []
 
 server_name: "{{ SYNAPSE_SERVER_NAME }}"
 pid_file: /homeserver.pid
-web_client: {{ "True" if SYNAPSE_WEB_CLIENT else "False" }}
+web_client: False
 soft_file_limit: 0
 
 ## Ports ##
@@ -26,7 +26,7 @@ listeners:
     tls: true
     x_forwarded: false
     resources:
-      - names: [client, webclient]
+      - names: [client]
         compress: true
       - names: [federation]  # Federation APIs
         compress: false
@@ -39,7 +39,7 @@ listeners:
     x_forwarded: false
 
     resources:
-      - names: [client, webclient]
+      - names: [client]
         compress: true
       - names: [federation]
         compress: false