I run grapdb as a standalone server. The service starts on http://localhost:7200. I need to configure an Apache redirect to graphDB workbench, to access it through port 80 :
ProxyPass /graphdb http://localhost:7200
ProxyPassReverse /graphdb http://localhost:7200
However, when accessing http://server/graphdb, all the loading of CSS and javascript fails because they are loaded from http://server/css/x, or http://server/webjars/y, instead of http://server/graphdb/css/x or http://server/graphdb/webjars/y.
Is it possible to access GraphDB workbench behind an Apache proxy and what would be the correct configuration for this ?