You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How to easy configure social app in nextcloud when it's in a subfolder (of a yunohost server) ?
I have the message ".well-known/webfinger" is not well configured but really don't know witch files or parameters to configure.
Thanks in advance for any help
The text was updated successfully, but these errors were encountered:
I had a precious help
in the file /etc/nginx/conf.d/domain.tld.d/nextcloud.conf
add as root location ^~ /.well-known { return 301 /nextcloud/index.php$uri; }
just before the line (15) try_files $uri $uri/ =404;
then restart nginx sudo systemctl reload nginx
I finally managed to be able to be followed.
For that, I changed the redirect nginx rule location = /.well-known/webfinger { return 301 /nuage-nextcloud/index.php$uri; }
to location = /.well-known/webfinger { return 301 /nuage-nextcloud/index.php$request_uri; }
However, I still can't follow, I face the same issue as here : #1813
How to easy configure social app in nextcloud when it's in a subfolder (of a yunohost server) ?
I have the message ".well-known/webfinger" is not well configured but really don't know witch files or parameters to configure.
Thanks in advance for any help
The text was updated successfully, but these errors were encountered: