1
When creating a Reverse proxy environment with Apache and XOOPS i walk against some problems :
First the Reverse entry which is made on the Proxy Server:
#Xoops Portal Entry on 10.0.1.1 Server
#
ProxyPass /portal/
http://10.0.1.10/portalProxyPassReverse /portal/
http://10.0.1.10/portalSecond the configuration of mainfile.php on the
.10server:
define('XOOPS_URL', '/portal');
So if there is a GET request on 10.0.1.1 for "/portal"
it proxies all data coming from
http://10.0.1.10/portalprob #1 - Images not displayed because of define('XOOPS_URL', '/portal'); ##can be solved
prob #2 - When loggin in XOOPS_URL gets duplicated and redirect goes wrong
i.e.
http://10.0.1.1/portal/10.0.1.10/portal/modules/mydownloadsprob #3 - Administration of blocks is acting 'foo' it does not matter what action gets performed (deleting,adding,modifying) it will FAIL
prob #4 - Administration of module (updating,disactivating,uninstall) is acting foo to...
nothing will work
Is there any workaround for this ? or perhaps a FIX ?
It would be a waste to implement XOOPS as a dynamic system
when it aint possible to work in combination with mod_proxy ... cause if it won't work ..XOOPS aint that flexible as i stated before.
Please show me that it has the flexibility