that's exactly how i have it - a different jrun directive in the cf9 vhost.

this is in my httpd.conf:
<IfModule mod_jrun22.c>
    JRunConfig Verbose false
    JRunConfig Apialloc false
    JRunConfig Ignoresuffixmap false
    JRunConfig Serverstore "D:/JRun4/lib/wsconfig/1/jrunserver.store"
    JRunConfig Bootstrap 127.0.0.1:51020
    AddHandler jrun-handler .cfm .cfc .cfr
</IfModule>

and this is my vhost def for cf9:
<VirtualHost 127.0.0.1:80>
    DocumentRoot "D:/Inetpub/cf9root"
    ServerName cf9dev
    ServerAlias cf9dev
    Alias /CFIDE/ "D:/JRun4/servers/cf9/cfusion-ear/cfusion-war/CFIDE/"
    JRunConfig Apialloc false
    JRunConfig Serverstore "D:/JRun4/lib/wsconfig/cf9/jrunserver.store"
    JRunConfig Bootstrap 127.0.0.1:51002
    <Directory "D:\JRun4\servers\cf9\cfusion-ear\cfusion-war\CFIDE">
        Options Indexes FollowSymLinks
        AllowOverride None
        Order allow,deny
        Allow from all
    </Directory>
    ErrorLog "logs/cf9dev-error.log"
    CustomLog "logs/cf9dev-access.log" common
</VirtualHost>

i guess something else is at play here...

Azadi Saryev



On 12/12/2009 00:39, Dave Watts wrote:
>   
>> setting up virtual Apache servers - something tells me it is not the
>> same as vhosts, is it?
>> but google seems to think it is... could you point me to where i can
>> find more info on how to set them up?
>>     
> Yes, it's the same. You have to put the instance-specific JRun
> directives in each vhost, though.
>
> Dave Watts, CTO, Fig Leaf Software
> http://www.figleaf.com/
>
> Fig Leaf Software provides the highest caliber vendor-authorized
> instruction at our training centers in Washington DC, Atlanta,
> Chicago, Baltimore, Northern Virginia, or on-site at your location.
> Visit http://training.figleaf.com/ for more information!
>
> 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329094
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to