When I configure the cmdbuild in https (apache + ProxyPass) I return mixed content in https and http.
Do you need to modify something else?
When I configure the cmdbuild in https (apache + ProxyPass) I return mixed content in https and http.
Do you need to modify something else?
I have a same problem. If you change the port the same thing happens.
You can configure Apache as proxy service.
ProxyPass /cmdbuild/ ajp://localhost:8009/cmdbuild/
ProxyPassReverse /cmdbuild/ ajp://localhost:8009/cmdbuild/
A solution was found on the post : “cmdbuild-behind-nginx-reverse-proxy/5070/2”
For the ones using nginx, the solution for me was to add the following header :
#Inside your nginx server {} block add:
add_header Content-Security-Policy "upgrade-insecure-requests";
Hope it helps !