I am trying to use the custom error messages option on the Apache Server. I am on a V5R3 machine. I have a web server with a server instance that uses a reverse proxy to access an application server. I want to display a html page when the web server is not able to contact the application server because it is down. I have tried several things but I never get my error page to display. I just get the standard 502 Proxy error page. Any help would be greatly appreciated. Below is part of my config file.
LoadModule proxy_module /QSYS.LIB/QHTTPSVR.LIB/QZSRCORE.SRVPGM LoadModule proxy_http_module /QSYS.LIB/QHTTPSVR.LIB/QZSRCORE.SRVPGM LoadModule proxy_connect_module /QSYS.LIB/QHTTPSVR.LIB/QZSRCORE.SRVPGM LoadModule proxy_ftp_module /QSYS.LIB/QHTTPSVR.LIB/QZSRCORE.SRVPGM Listen 172.19.0.5:8101 DocumentRoot /www/testsetup/htdocs ServerUserID QTMHHTTP AddOutputFilter INCLUDES .html Alias /images/ /www/images/ Alias /utilities/ /www/utilities/ ProxyPass / http://172.16.10.6:8101/ ProxyErrorOverride On ProxyTimeout 60 ErrorDocument 500 /index_down.html ErrorDocument 502 /index_down.html ErrorDocument 504 /index_down.html ErrorDocument 400 /index_down.html ErrorDocument 300 /index_down.html I have tried putting the full path name for the html in the error document statement but that didn't help. Thanks is advance. Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/Easy400Group/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
