Apache, CFMX 6.1, CFMX 7

Im currently running two seperate installs of CFMX, both 6.1 and 7 with apache as my local server. To do this ensure in your httpd.conf file you have the following

#######################

### FOR CFMX 6.1

#######################

#
# Bring in additional module-specific configurations
#
<IfModule mod_ssl.c>
Include conf/ssl.conf
</IfModule>
# JRun Settings
LoadModule jrun_module "C:/CFusionMX/runtime/lib/wsconfig/1/mod_jrun20.so"
<IfModule mod_jrun20.c>
JRunConfig Verbose false
JRunConfig Apialloc false
JRunConfig Ssl false
JRunConfig Ignoresuffixmap false
JRunConfig Serverstore "C:/CFusionMX/runtime/lib/wsconfig/1/jrunserver.store"
JRunConfig Bootstrap 127.0.0.1:51010
#JRunConfig Errorurl <optionally redirect to this URL on errors>
AddHandler jrun-handler .jsp .jws .cfm .cfml .cfc
</IfModule>
LoadModule dav_svn_module modules/mod_dav_svn.so
LoadModule authz_svn_module modules/mod_authz_svn.so


#######################

### FOR CFMX 7

#######################

# JRun Settings
LoadModule jrun_module "C:/CFusionMX7/runtime/lib/wsconfig/1/mod_jrun20.so"
<IfModule mod_jrun20.c>
JRunConfig Verbose false
JRunConfig Apialloc false
JRunConfig Ssl false
JRunConfig Ignoresuffixmap false
JRunConfig Serverstore "C:/CFusionMX7/runtime/lib/wsconfig/1/jrunserver.store"
JRunConfig Bootstrap 127.0.0.1:51011
#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>

Also to make my life easier (though not as easy as i first thought it would but thats for another post) i'm using System Manager

Posted: 27-Jun-2005

View: 3468

Permalink: here

Comments

I updated System Manager to make it work a lot better. What in particular didn't you like about it?

#1 Steve
09/Aug/05 6:56 PM

Hi Steve, i cant remember now the issues i had. Sorry, though i think that was down to in-experience at the time more than anything. Also thanks for letting me know of the update.

#2 Andy J
11/Aug/05 3:29 PM