poliverso.org

@Friendica Admins Good morning everyone. I have a problem that has been going on since we updated the instance to the latest release.
As you can see from the image (which is taken from a mastodon screen), from Mastodon, from Misskey, from Pixelfed and from Pleroma it is impossible to see the profile pic of most of the poliverso accounts.
Can anyone give me some suggestions to solve this annoying problem?
Are there any ways to "force" sending or updating images on federated instances?
1
Michael Vogel friendica (via ActivityPub)
I currently don't have a clue. Have you checked for errors in your log?
1 1
Luca Nucifora friendica (via ActivityPub)
@Signor Amministratore @Michael Vogel I did some checks: in a mastodon server I found out that friendica's users in the account table have "avatar_remote_url" field empty, so when it refreshs the account information, it does not ask for an updated avatar. I compared the "/.well-known/webfinger?resource=" from a mastodon server and a friendica server and I can read the property "http://webfinger.net/rel/avatar" from both. so we don't know how to proceed further in the troubleshooting.
1 1
Luca Nucifora friendica (via ActivityPub)

@Signor Amministratore @Michael Vogel for future reference, the problem was caused by a nginx reverse proxy in front of the apache server.. with these headers it seems to work again, but I am not sure about it..

proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Port $server_port;
proxy_set_header Host $host;
proxy_set_header Proxy '';

2 2