Hello There I am again ,
I managed to install XWiki in the meantime with .dep package method. Now I would like to enable https for all traffic. Just http doesn’t meet our corporate requirements. What I found was this and Stefana provided me this link as well:
When I activate it like described:
<!-- A "Connector" represents an endpoint by which requests are received
and responses are returned. Documentation at :
Java HTTP Connector: /docs/config/http.html
Java AJP Connector: /docs/config/ajp.html
APR (HTTP/AJP) Connector: /docs/apr.html
Define a non-SSL/TLS HTTP/1.1 Connector on port 8080
-->
<Connector port="8080" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443"
**secure="true"**
** scheme="https" />**
<!-- A "Connector" using the shared thread pool-->
<!--
<Connector executor="tomcatThreadPool"
port="8080" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443"
secure="true"
scheme="https" />
-->
No https is working. Can someone tell me what I did wrong, please? Thank you for your help.