20 lines
796 B
Text
20 lines
796 B
Text
location /.well-known/matrix/client {
|
|
return 200 '{"m.homeserver": {"base_url": "https://matrix.sophies-kitchen.eu"},"m.identity_server": {"base_url": "https://matrix.org"}}';
|
|
default_type application/json;
|
|
add_header Access-Control-Allow-Origin *;
|
|
}
|
|
location /.well-known/matrix/server {
|
|
return 200 '{"m.server": "matrix.sophies-kitchen.eu:443"}';
|
|
default_type application/json;
|
|
add_header Access-Control-Allow-Origin *;
|
|
}
|
|
|
|
location /.well-known/webfinger {
|
|
return 302 'https://chaos.social/.well-known/webfinger?resource=acct:sophie@chaos.social';
|
|
}
|
|
|
|
location /social {
|
|
return 200 '<!doctype html><html><body><a rel="me" href="https://chaos.social/@sophie">Mastodon</a></body></html>';
|
|
default_type text/html;
|
|
add_header Access-Control-Allow-Origin *;
|
|
}
|