I'm having an issue since upgrading to Magnolia 5 where adminCentral loads and
I can login and get the main menu but when I click on pages, security, the
section loading screen comes up and never loads.
This only happens when going through my apache httpd front end. If I go
directly to the backend tomcat instance hosting the app, it works fine.
My reverse proxy setup is below, can anyone tell me what I'm doing wrong? I've
looked at the connections being made in Chrome's dev tools but none of the
javascript/GWT/etc. requests are failing in any obvious way.
Thanks!
[code]
<VirtualHost 1.1.1.1:80>
ServerName test.myApp.io
DocumentRoot /srv/www/myApp.io
RewriteEngine On
RewriteRule ^/myAppTest/(.*) /$1 [R]
<Location />
ProxyPassReverse /
SetOutputFilter INFLATE;proxy-html;DEFLATE
ProxyHTMLURLMap /myAppTest /
</Location>
ProxyRequests Off
ProxyPreserveHost Off
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
<Proxy balancer://cluster>
BalancerMember ajp://my.backend.tomcat.inst:8009 loadfactor=1
route=public1
</Proxy>
ProxyPass / balancer://cluster/myAppTest/ stickysession=JSESSIONID
ProxyPassReverse / http://test.myApp.io/
ProxyPassReverseCookieDomain my.backend.tomcat.inst test.myApp.io
ProxyPassReverseCookiePath /myAppTest /
</VirtualHost>
[/code]
--
Context is everything:
http://forum.magnolia-cms.com/forum/thread.html?threadId=ffc282c8-e2ea-484d-bafb-ded26bcea9e6
----------------------------------------------------------------
For list details, see http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: <[email protected]>
----------------------------------------------------------------