On Mon, 7 Feb 2005 22:48:56 -0500, Michael T. Tangorre <[EMAIL PROTECTED]> wrote: > I installed the final release of CFMX 7 using the "Multiserver > Configuration". This is what we will be doing at work once we upgrade so I > need to familiarize myself with how it all works. Anway, the install went > very smoothly. I have 3 instances running that correspond to sites I have on > my dev box: siteA, siteB, siteC. Now, if the webroot for my default IIS > website is G:\ which is where all my apps are stored and I created the > instances of the CF servers under C:\JRun4\servers, how do I point the > server to look at an app on G:\? > > For instance: > > C:\JRun4\servers\cfcoder > G:\cfcoder > > When I got to http://localhost:8103/cfcoder/index.cfm it looks in the > C:\JRun4\servers\cfcoder\ folder. Is there anyway to have it look at > G:\cfcoder ? >
Unless things have changed in CFMX 7, and I don't believe they have in this particular case, in the WEB-INF directory under your server instance, you'll need to open the jrun-web.xml and specify the path to your web root in there using a virtual mapping: <virtual-mapping> <resource-path>/*</resource-path> <system-path>g:/cfcoder</system-path> </virtual-mapping> Restart your MX instance after making that change and you should be fine. Regards, Dave. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket application http://www.houseoffusion.com/banners/view.cfm?bannerid=48 Message: http://www.houseoffusion.com/lists.cfm/link=i:4:193538 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4 Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

