From 59486b60f99c0872c40c0c257b24c61f408c6f16 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josu=C3=A9=20Tille?= Date: Tue, 27 Feb 2024 08:04:00 +0100 Subject: [PATCH] Add empty page for / --- conf/nginx.conf | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/conf/nginx.conf b/conf/nginx.conf index 76a811b..a2e70d2 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -1,3 +1,9 @@ +rewrite ^$ /; +location ~ ^/$ { + default_type text/plain; + return 200 "This is where Synapse is installed."; +} + location /_matrix/ { proxy_pass http://localhost:__PORT_SYNAPSE__; proxy_set_header X-Forwarded-For $remote_addr;