I have Jboss running with Apache server in a RedHat server, with a website in the 8080 port, and de domain is pinting to localhost:8080 so when Jboss is down, Apache throws an error and i want to redirect that to an static html file, but I can't use the same domain.
In the hosts file I have
127.0.0.1 domain1.com
In httpd.conf
ProxyPreserveHost On
ProxyPass / http://localhost:8080/
ProxyPassReverse / http://localhost:8080/
ServerName www.domain1.com
Now:
- ErrorDocument 503 /var/www/html/error // inside /error there is an html file, but this is not working
- ErrorDocument 503 /error/index.html // not working either
- ErrorDocument 503 http://www.domain1.com/error // not working because domain1.com is pointing to Jboss that is.. down.
So, how can I manage this to get a Maintenance document whet Jboss is down?
Thank you!