NorthStarDA
IS-IT--Management
i have installed apache 1.3 and the cfmx7.2 development edition server on jrun4 multiserver, apache is configured to handle .cfm requests, but it still tries to download to my client. here are the relevant parts of my httpd.conf file:
does anybody have any ideas of what i did wrong?
=========================================
Don't sweat the petty things and don't pet the sweaty things.
Code:
LoadModule jrun_module "C:/JRun4/lib/wsconfig/1/mod_jrun.so"
...
<VirtualHost 127.0.0.1>
ServerName 127.0.0.1
DocumentRoot "C:/Program Files/Apache Group/Apache/htdocs"
DirectoryIndex index.html index.htm index.cfm
</VirtualHost>
...
<IfModule mod_jrun.c>
JRunConfig Verbose false
JRunConfig Apialloc false
JRunConfig Ssl false
JRunConfig Ignoresuffixmap false
JRunConfig Serverstore "C:/JRun4/lib/wsconfig/1/jrunserver.store"
JRunConfig Bootstrap 127.0.0.1:51020
# JRunConfig Errorurl <optionally redirect to this URL on errors>
# JRunConfig ProxyRetryInterval 600
# JRunConfig ConnectTimeout 15
# JRunConfig RecvTimeout 300
# JRunConfig SendTimeout 15
AddHandler jrun-handler .jsp .jws .cfm .cfml .cfc .cfr .cfswf
</IfModule>
does anybody have any ideas of what i did wrong?
=========================================
Don't sweat the petty things and don't pet the sweaty things.