From 31b621565d916184058c715702504122ea42960a Mon Sep 17 00:00:00 2001 From: Sebastian Wagner Date: Thu, 15 Sep 2022 11:15:09 +0000 Subject: [PATCH] doc README: fix PUBLIC_URL in docker-compose example PUBLIC_URL must not be enclosed in quotation marks, see Awesome-Technologies/synapse-admin#286 - add a note on this in the example - fix the example itself fixes Awesome-Technologies/synapse-admin#286 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4b5ee45..c654964 100644 --- a/README.md +++ b/README.md @@ -82,8 +82,8 @@ or by editing it in the [.env](.env) file. See also the context: https://github.com/Awesome-Technologies/synapse-admin.git # args: # - NODE_OPTIONS="--max_old_space_size=1024" - # # see #266 - # - PUBLIC_URL="/synapse-admin" + # # see #266, PUBLIC_URL must be without surrounding quotation marks + # - PUBLIC_URL=/synapse-admin # - REACT_APP_SERVER="https://matrix.example.com" ports: - "8080:80"