Minor tweak to host-meta.

This commit is contained in:
default 2024-01-30 08:09:43 +01:00
parent b3e289b40b
commit 644138b2b9

View File

@ -226,9 +226,10 @@ int server_get_handler(xs_dict *req, const char *q_path,
if (strcmp(q_path, "/.well-known/host-meta") == 0) { if (strcmp(q_path, "/.well-known/host-meta") == 0) {
status = 200; status = 200;
*ctype = "application/xrd+xml"; *ctype = "application/xrd+xml";
*body = xs_str_new("<XRD>" *body = xs_fmt("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
"<Link rel=\"lrdd\" type=\"application/xrd+xml\" template=\"%s/.well-known/webfinger?resource={uri}\"/>" "<XRD>"
"</XRD>"); "<Link rel=\"lrdd\" type=\"application/xrd+xml\" template=\"https://%s/.well-known/webfinger?resource={uri}\"/>"
"</XRD>", xs_dict_get(srv_config, "host"));
} }
else else
if (strcmp(q_path, "/nodeinfo_2_0") == 0) { if (strcmp(q_path, "/nodeinfo_2_0") == 0) {