From 6438f1ff427cfbb604399c23e25f4371eb671cdd Mon Sep 17 00:00:00 2001 From: Tilo Spannagel Date: Sun, 19 Feb 2023 17:16:17 +0100 Subject: [PATCH] Add matrix_playbook_ssl_enabled: true to configuring-playbook-own-webserver.md Otherwise the public hookshot url will use http and not https --- docs/configuring-playbook-own-webserver.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/configuring-playbook-own-webserver.md b/docs/configuring-playbook-own-webserver.md index 6377b8b1f..e7dc24557 100644 --- a/docs/configuring-playbook-own-webserver.md +++ b/docs/configuring-playbook-own-webserver.md @@ -127,6 +127,9 @@ This is the recommended way for using another reverse-proxy, because the integra # playbook-managed-proxy is the default right now, so we can keep this commented out. # matrix_playbook_reverse_proxy_type: playbook-managed-nginx +# Ensure that public urls use https +matrix_playbook_ssl_enabled: true + # Disable SSL certificate retrieval matrix_ssl_retrieval_method: none @@ -150,6 +153,9 @@ matrix_nginx_proxy_container_federation_host_bind_port: '127.0.0.1:8449' ```yaml matrix_playbook_reverse_proxy_type: playbook-managed-traefik +# Ensure that public urls use https +matrix_playbook_ssl_enabled: true + # Disable the web-secure (port 443) endpoint, which also disables SSL certificate retrieval devture_traefik_config_entrypoint_web_secure_enabled: false