From ab7d9ea1c3f7fb7e650242a5a50004d61ca606ac Mon Sep 17 00:00:00 2001 From: Daniel Weipert Date: Tue, 14 Nov 2023 14:16:45 +0100 Subject: [services] matrix - conduit --- .../conduit/nginx/templates/matrix.conf.template | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Applications/Services/matrix/conduit/nginx/templates/matrix.conf.template (limited to 'Applications/Services/matrix/conduit/nginx/templates/matrix.conf.template') diff --git a/Applications/Services/matrix/conduit/nginx/templates/matrix.conf.template b/Applications/Services/matrix/conduit/nginx/templates/matrix.conf.template new file mode 100644 index 0000000..c1e1083 --- /dev/null +++ b/Applications/Services/matrix/conduit/nginx/templates/matrix.conf.template @@ -0,0 +1,19 @@ +server { + server_name ${CONDUIT_DOMAIN}; + listen 80 default_server; + + location /.well-known/matrix/server { + return 200 '{"m.server": "${CONDUIT_DOMAIN}:443"}'; + types { } default_type "application/json; charset=utf-8"; + } + + location /.well-known/matrix/client { + return 200 '{"m.homeserver": {"base_url": "https://${CONDUIT_DOMAIN}"}}'; + types { } default_type "application/json; charset=utf-8"; + add_header "Access-Control-Allow-Origin" *; + } + + location / { + return 404; + } +} -- cgit v1.2.3