diff --git a/Justfile b/Justfile index 92d15eb..861e1ec 100644 --- a/Justfile +++ b/Justfile @@ -10,12 +10,6 @@ OUT_DIR := "public" git checkout -B gh-pages touch .nojekyll - # Create matrix homeserver files - # Remove it or change it to your server - mkdir -p .well-known/matrix/ - echo '{"m.homeserver": {"base_url": "https://matrix.4rs.nl}}' > .well-known/matrix/client - echo '{"m.server": "matrix.4rs.nl:443"}' > .well-known/matrix/server - git add . git commit -m "Deploy blog to github pages" git remote add origin $(git --git-dir ../.git remote get-url github) diff --git a/static/.well-known/matrix/client b/static/.well-known/matrix/client new file mode 100644 index 0000000..bc1a02c --- /dev/null +++ b/static/.well-known/matrix/client @@ -0,0 +1 @@ +{"m.homeserver": {"base_url": "https://matrix.4rs.nl"}} diff --git a/static/.well-known/matrix/server b/static/.well-known/matrix/server new file mode 100644 index 0000000..f6c0d5c --- /dev/null +++ b/static/.well-known/matrix/server @@ -0,0 +1 @@ +{"m.server": "matrix.4rs.nl:443"}