feat(stasks): migrate matrix

This commit is contained in:
2026-08-19 17:10:23 +02:00
parent b002113473
commit 0584856ea3
10 changed files with 532 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
server {
listen 80 default_server;
server_name matrix.poneyworld.net;
# Traefik -> nginx -> synapse
location /_matrix {
proxy_pass http://synapse:8008;
proxy_set_header X-Forwarded-For $remote_addr;
client_max_body_size 128m;
}
location /.well-known/matrix/ {
root /var/www/;
default_type application/json;
add_header Access-Control-Allow-Origin *;
}
}

View File

@@ -0,0 +1,11 @@
{
"m.homeserver": {
"base_url": "https://matrix.poneyworld.net"
},
"org.matrix.msc4143.rtc_foci": [
{
"type": "livekit",
"livekit_service_url": "https://livekit.opytex.org"
}
]
}

View File

@@ -0,0 +1,3 @@
{
"m.server": "synapse.poneyworld.net:443"
}