mirror of
https://github.com/YunoHost-Apps/synapse_ynh.git
synced 2024-09-03 20:26:38 +02:00
13 lines
425 B
Text
13 lines
425 B
Text
location /.well-known/matrix/server {
|
|
return 200 '{"m.server": "__DOMAIN__:__PORT__"}';
|
|
add_header Content-Type application/json;
|
|
add_header Access-Control-Allow-Origin '*';
|
|
}
|
|
|
|
location /.well-known/matrix/client {
|
|
return 200 '{"im.vector.riot.jitsi":
|
|
{"preferredDomain": "__JITSI_SERVER_ADDR__"}
|
|
}';
|
|
add_header Content-Type application/json;
|
|
add_header Access-Control-Allow-Origin '*';
|
|
}
|