Wrong links in My Activity Stream on user profile page

Hi all

I recently installed a brand new xwiki 11.0.3 instance (Debian package with Apache httpd reverse proxy for TLS) and found that links in the “My activity stream” section of the user profile page are incorrectly rendered as absolute http links instead of relative links that consider https.
In the meantime I upgraded to 11.1 but it doesn’t change anything.

Can anybody confirm this behaviour? Is there something that needs to be configured on the wiki side for this feature to work?

rbr

It is probably the reverse proxy that makes the application container think it is running under http instead of https. If that happens to me I add a scheme="https" to the <connector in /etc/tomcat8/server.xml like:

    <Connector port="8080" protocol="HTTP/1.1"
           connectionTimeout="20000"
           URIEncoding="UTF-8"
           scheme="https"
           secure="true"
           address="127.0.0.1"
           proxyPort="443"
           redirectPort="443" />

HTH