Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 1.0.3
-
Fix Version/s: 1.1-alpha-1
-
Component/s: Web interface
-
Labels:None
-
Complexity:Intermediate
-
Number of attachments :
Description
As noted in CONTINUUM-240, it's not currentlyy possible to run the continuum webapp behind an https proxy, as all the links are http://...
My apache setup is something along the lines of:
<VirtualHost xx.xx.xx.xx:443> SSLEngine on ProxyPass / http://localhost:8080/ ProxyPassReverse / http://localhost:8080/ ProxyPreserveHost On </VirtualHost>
and my jetty config:
<listeners> <http-listener> <port>8080</port> </http-listener> </listeners>
The links are correct, except that they have s/https/http/.
Why does the webapp need to use absolute links anyway?
Attachments
Issue Links
| This issue is related to: | ||||
| CONTINUUM-240 | Absolute links bypass mod_proxy |
|
|
|
Can't you just go into http://localhost:8080/continuum/continuum/target/EditContinuumConfiguration.vm and change the Base URL to the https version?