Hi, I've been scouring the docs & newsgroups for the last hour or so, and have been unable to find a solution to my problem. Currently, I have tomcat being access through the Apache httpd server, configured via the jk_mod connector/module.
My problem is I have to sometimes stop the tomcat server for general maintenance. When this happens, Apache will show an error page "The server encountered an internal error or misconfiguration and was unable to complete your request. ....", because the jkWorker is no longer able to access the Tomcat server. Is there any way I can customize that error page to say/show something different? My workers file is pretty simple: JkWorkerProperty worker.host=localhost JkWorkerProperty worker.type=ajp13 JkWorkerProperty worker.list=jkWorker1 JkWorkerProperty worker.jkWorker1=8010 Then the httpd.conf file has the following: <VirtualHost *:80> ServerName www.mydomain.com DocumentRoot "/var/www/html" JkMount /test/* jkWorker1 </VirtualHost> So if I ever try to access www.mydomain.com/test when tomcat is down, I get that general "server encountered internal error" error page. Is there anything I can do to avoid that? If anyone can point me in the right direction, I'd really appreciate it. Thanks! Eric --------------------------------------------------------------------- To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]