I've got:

# JRun Settings
LoadModule jrun_module "C:/JRun4/lib/wsconfig/1/mod_jrun20.so"
<IfModule mod_jrun20.c>
    JRunConfig Verbose false
    JRunConfig Ssl false
    JRunConfig Ignoresuffixmap false
    JRunConfig Apialloc false
    JRunConfig Serverstore "C:/JRun4/lib/wsconfig/1/jrunserver.store"
    JRunConfig Bootstrap 127.0.0.1:51098
    AddHandler jrun-handler .jsp .jws .cfm .cfml .cfc .cfr .cfswf
</IfModule>

At the very end of my conf file. This is the default for everything on
the server.

Then I just specify other boot strap ports to hook up different
virtuals to different CF instances in JRun:

<VirtualHost *:80>
  ServerName CFMX7.cletus.gruden.int
  DocumentRoot "C:\JRun4\servers\CFMX7\cfusion-ear\cfusion-war"
  ErrorLog "logs/CFMX7.cletus.gruden.int-error.log"
  CustomLog logs/CFMX7.cletus.gruden.int-access.log common
  JRunConfig Bootstrap 127.0.0.1:51099
</VirtualHost>

<VirtualHost *:80>
  ServerName CFMX61-1.cletus.gruden.int
  DocumentRoot "C:\JRun4\servers\CFMX61-1\cfusion-ear\cfusion-war"
  ErrorLog "logs/CFMX61-1.cletus.gruden.int-error.log"
  CustomLog logs/CFMX61-1.cletus.gruden.int-access.log common
  JRunConfig Bootstrap 127.0.0.1:51098
</VirtualHost>

<VirtualHost *:80>
  ServerName CFMX61-2.cletus.gruden.int
  DocumentRoot "C:\JRun4\servers\CFMX61-2\cfusion-ear\cfusion-war"
  ErrorLog "logs/CFMX61-2.cletus.gruden.int-error.log"
  CustomLog logs/CFMX61-2.cletus.gruden.int-access.log common
  JRunConfig Bootstrap 127.0.0.1:51097
</VirtualHost>

-- 
Mark Stanton 
Gruden Pty Ltd 
http://www.gruden.com

---
You are currently subscribed to cfaussie as: [email protected]
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/

Reply via email to