No nodeinfo! Why?
I recently installed a new #
Hubzilla hub. It really wasn't the first one. It runs really well, as far as I can tell.
The only problem is that it doesn't provide #
nodeinfo and is therefore not found by certain services.
The call to "
https://klacker.org/.well-known/nodeinfo" results in a 404.
However, the rewrite rule in the nginx configuration is present and so far ok (two other hubs work with exactly this rule). As far as I understand it, "nodeinfo" is generated dynamically via index.php. At what point in my new hub can it be stuck? In my opinion, it can't be the nginx configuration, as this is identical for all three hubs.
location ^~ /.well-known/ {
allow all;
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?q=$1;
}
}
Could it be that something is misconfigured in Hubzila itself, or is there perhaps a completely different explanation?