Hi,
I’m an idiot…
In https://www.xwiki.org/xwiki/bin/view/Documentation/AdminGuide/Installation/#HDebuggingproxyconfigurationissues there is an example groovy(?) code to list the proxy settings in the wiki.
For
- JAVA_OPTS="-Dhttp.proxyHost=10.x.x.x -Dhttp.proxyPort=80 -Dhttps.proxyHost=10.x.x.x -Dhttps.proxyPort=80"
this shows
[…]
Name: http.proxyHost = Value 10.x.x.x -Dhttp.proxyPort=80 -Dhttps.proxyHost=10.x.x.x -Dhttps.proxyPort=80 -Dhttp.proxySet=true
[…]
which doesn’t look right.
With
- JAVA_OPTS=-Dhttp.proxyHost=10.x.x.x -Dhttp.proxyPort=80 -Dhttps.proxyHost=10.x.x.x -Dhttps.proxyPort=80
(note the missing “”) it shows
[...]
Name: http.proxyHost = Value 10.x.x.x
Name: http.proxyPort = Value 80
[..]
and the flavor list in the installer shows a list of flavors. Installation works to.
So yeah my problem is solved.
One more thing, xwiki-platform/xwiki-platform-core/xwiki-platform-oldcore/src/main/java/com/xpn/xwiki/XWiki.java at 458d4d89e4f91082549676c0182b61a1526b5281 · xwiki/xwiki-platform · GitHub shows the usage of String proxyHost = System.getProperty(“http.proxyHost”); but I couldn’t find any mentioning of https.proxyHost (with the s) anywhere in the code for xwiki. Fortunately we have one proxy for http and https on the same ip and port. I don’t know what happens if you need a different proxy ip/port for https urls. Maybe someone from the xwiki devs could have a look at this.
Will give xwiki a test drive now. Thanks for the help.
regards
cd