ColdFusion breaking an Apache Virtual Host?
ilssac Apr 23, 2010 8:43 AMWe updated the our Apache Configuration file last night.
After we did the update, all our Virtual Hosts are working as expected accept one.
This one is returning an *Internal Server Error* for every request we throw at it, htm or cfm.
Looking at the Apache error logs I see this information
[Fri Apr 23 08:33:56 2010] [notice] jrApache[2980: 51406] filterRequest: no match
[Fri Apr 23 08:33:56 2010] [notice] jrApache[2980: 51406] jrun_service: r is 0x2a2bc8, server is 0x16c268, virtual 1
[Fri Apr 23 08:33:56 2010] [notice] jrApache[2980: 51406] jrun_service: no handler, return DECLINED
[Fri Apr 23 08:33:56 2010] [notice] jrApache[2980: 51406] jrun_trans: sub-request so DECLINED
[Fri Apr 23 08:33:56 2010] [notice] jrApache[2980: 51406] jrun_service: r is 0x29a1a8, server is 0x16c268, virtual 1
[Fri Apr 23 08:33:56 2010] [notice] jrApache[2980: 51406] jrun_service: no handler, return DECLINED
[Fri Apr 23 08:33:56 2010] [notice] jrApache[2980: 51406] jrun_trans: sub-request so DECLINED
[Fri Apr 23 08:33:56 2010] [notice] jrApache[2980: 51406] jrun_service: r is 0x343f58, server is 0x16c268, virtual 1
[Fri Apr 23 08:33:56 2010] [notice] jrApache[2980: 51406] jrun_service: no handler, return DECLINED
[Fri Apr 23 08:33:56 2010] [notice] jrApache[2980: 51406] jrun_trans: sub-request so DECLINED
[Fri Apr 23 08:33:56 2010] [notice] jrApache[2980: 51406] jrun_service: r is 0x2d85e8, server is 0x16c268, virtual 1
[Fri Apr 23 08:33:56 2010] [notice] jrApache[2980: 51406] jrun_service: no handler, return DECLINED
[Fri Apr 23 08:33:56 2010] [notice] jrApache[2980: 51406] jrun_trans: sub-request so DECLINED
[Fri Apr 23 08:33:56 2010] [notice] jrApache[2980: 51406] jrun_service: r is 0x2dc600, server is 0x16c268, virtual 1
[Fri Apr 23 08:33:56 2010] [notice] jrApache[2980: 51406] jrun_service: no handler, return DECLINED
[Fri Apr 23 08:33:56 2010] [notice] jrApache[2980: 51406] jrun_trans: sub-request so DECLINED
[Fri Apr 23 08:33:56 2010] [notice] jrApache[2980: 51406] jrun_service: r is 0x347f68, server is 0x16c268, virtual 1
[Fri Apr 23 08:33:56 2010] [notice] jrApache[2980: 51406] jrun_service: no handler, return DECLINED
[Fri Apr 23 08:33:56 2010] [notice] jrApache[2980: 51406] jrun_trans: sub-request so DECLINED
[Fri Apr 23 08:33:56 2010] [notice] jrApache[2980: 51406] jrun_service: r is 0x345f60, server is 0x16c268, virtual 1
[Fri Apr 23 08:33:56 2010] [notice] jrApache[2980: 51406] jrun_service: no handler, return DECLINED
What could this mean? How would ColdFusion and|or JRun be affecting basic html requests. We do not have CF configured to handle html requests.
Here is are Virtual Host block in the Apache configuration file.
### www-stagesite ###
<VirtualHost 134.186.118.85:80>
DocumentRoot /export/home/stageuser/www/htdocs
ServerName www-stagesite.inside.cdpr.ca.gov
ServerAlias www-stagesite
Include /etc/apache2/aliases_stageuser.conf
Include /etc/apache2/cf-webserver_www.conf
# Access to prerelease restricted to DPR IP addresses.
</VirtualHost>
Other Virtual Host blocks that are using the two include files are working correctly.
P.S. This Virtual Host was working correctly before last night's update. But none of the updates we did apply to it as far as I can see.

