summary refs log tree commit diff
path: root/docker/start.py
diff options
context:
space:
mode:
authorAndrew Morgan <andrew@amorgan.xyz>2019-02-05 15:43:26 +0000
committerAndrew Morgan <andrew@amorgan.xyz>2019-02-05 15:43:26 +0000
commitc433d4c4d2d112dcd5541b872155b7fb849e2aad (patch)
tree32749e974e10aeebd8eb813bb00193f19a176da1 /docker/start.py
parentConvert ACME docs to md (diff)
parentMove things from README.rst to UPDATE.md (#4569) (diff)
downloadsynapse-c433d4c4d2d112dcd5541b872155b7fb849e2aad.tar.xz
Merge branch 'release-v0.99.0' of github.com:matrix-org/synapse into anoa/self_signed_upgrade
Diffstat (limited to 'docker/start.py')
-rwxr-xr-xdocker/start.py18
1 files changed, 14 insertions, 4 deletions
diff --git a/docker/start.py b/docker/start.py

index 346df8c87f..941d9996a8 100755 --- a/docker/start.py +++ b/docker/start.py
@@ -47,9 +47,8 @@ if mode == "generate": # In normal mode, generate missing keys if any, then run synapse else: - # Parse the configuration file if "SYNAPSE_CONFIG_PATH" in environ: - args += ["--config-path", environ["SYNAPSE_CONFIG_PATH"]] + config_path = environ["SYNAPSE_CONFIG_PATH"] else: check_arguments(environ, ("SYNAPSE_SERVER_NAME", "SYNAPSE_REPORT_STATS")) generate_secrets(environ, { @@ -58,10 +57,21 @@ else: }) environ["SYNAPSE_APPSERVICES"] = glob.glob("/data/appservices/*.yaml") if not os.path.exists("/compiled"): os.mkdir("/compiled") - convert("/conf/homeserver.yaml", "/compiled/homeserver.yaml", environ) + + config_path = "/compiled/homeserver.yaml" + + convert("/conf/homeserver.yaml", config_path, environ) convert("/conf/log.config", "/compiled/log.config", environ) subprocess.check_output(["chown", "-R", ownership, "/data"]) - args += ["--config-path", "/compiled/homeserver.yaml"] + + + args += [ + "--config-path", config_path, + + # tell synapse to put any generated keys in /data rather than /compiled + "--keys-directory", "/data", + ] + # Generate missing keys and start synapse subprocess.check_output(args + ["--generate-keys"]) os.execv("/sbin/su-exec", ["su-exec", ownership] + args)