43 lines
1.3 KiB
Plaintext
43 lines
1.3 KiB
Plaintext
daemon off;
|
|
worker_processes 1;
|
|
error_log stderr;
|
|
|
|
events {
|
|
worker_connections 32;
|
|
}
|
|
|
|
http {
|
|
access_log /dev/stdout;
|
|
|
|
server {
|
|
listen 443 ssl;
|
|
server_name one.example.org;
|
|
|
|
ssl_certificate /etc/prosody/certs/one.example.org.crt;
|
|
ssl_certificate_key /etc/prosody/certs/one.example.org.key;
|
|
|
|
location = /.well-known/host-meta.json {
|
|
default_type application/json;
|
|
return 200 '{
|
|
"links": [
|
|
{
|
|
"rel": "urn:xmpp:alt-connections:s2s-websocket",
|
|
"href": "wss://xp1.example.org:5281/xmpp-websocket",
|
|
"ips": [
|
|
"192.5.0.40"
|
|
],
|
|
"priority": 15,
|
|
"weight": 50,
|
|
"sni": "xp1.example.org"
|
|
},
|
|
{
|
|
"rel": "urn:xmpp:alt-connections:websocket",
|
|
"href": "wss://xp1.example.org:5281/xmpp-websocket"
|
|
}
|
|
]
|
|
}';
|
|
}
|
|
}
|
|
|
|
}
|