neb/servers/keymaker/docker-compose.d/custom/nginx/conf.d/ixvd-web.conf

18 lines
No EOL
434 B
Text

server {
listen 80;
server_name ixvd.net;
location / {
proxy_pass http://ixvd-web$request_uri;
}
# matrix
location /.well-known/matrix/server {
return 200 '{ "m.server": "matrix.ixvd.net:443" }';
}
location /.well-known/matrix/client {
add_header Access-Control-Allow-Origin '*';
return 200 '{ "m.homeserver": { "base_url": "https://matrix.ixvd.net" } }';
}
}