From 79404c875dbf20ba783c72b31111c6e2228d28a2 Mon Sep 17 00:00:00 2001 From: Luke Smith Date: Sun, 7 Aug 2022 14:38:49 -0400 Subject: begin rehighlighting of custom info in templates --- content/matrix.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'content/matrix.md') diff --git a/content/matrix.md b/content/matrix.md index 893d58a..338ff9b 100644 --- a/content/matrix.md +++ b/content/matrix.md @@ -47,7 +47,7 @@ Create an Nginx configuration file for Matrix, say ```nginx server { - server_name matrix.example.org ; + server_name {{}}matrix.example.org{{}} ; listen 80; listen [::]:80; location / { @@ -59,7 +59,7 @@ server { client_max_body_size 50M ; } location /.well-known/matrix/server { - return 200 '{"m.homeserver": {"base_url": "https://matrix.example.org"}}'; + return 200 '{"m.homeserver": {"base_url": "https://{{}}matrix.example.org{{}}"}}'; default_type application/json; add_header Access-Control-Allow-Origin *; } @@ -86,7 +86,7 @@ Obviously, we need to encrypt our `matrix` subdomain as well. Let\'s do that with certbot: ```sh -certbot --nginx -d matrix.example.org +certbot --nginx -d {{}}matrix.example.org{{}} ``` ## Configuration -- cgit v1.2.3