summaryrefslogtreecommitdiff
path: root/content/matrix.md
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2022-08-07 14:38:49 -0400
committerLuke Smith <luke@lukesmith.xyz>2022-08-07 14:38:49 -0400
commit79404c875dbf20ba783c72b31111c6e2228d28a2 (patch)
tree1a80d0322bf9f81cf26da2204d95c98db854d93b /content/matrix.md
parentef1b2105e344e201e3f92ebece9d28efd58dbcac (diff)
begin rehighlighting of custom info in templates
Diffstat (limited to 'content/matrix.md')
-rw-r--r--content/matrix.md6
1 files changed, 3 insertions, 3 deletions
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 {{<hl>}}matrix.example.org{{</hl>}} ;
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://{{<hl>}}matrix.example.org{{</hl>}}"}}';
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 {{<hl>}}matrix.example.org{{</hl>}}
```
## Configuration