I'm wondering if this is possible at all, and if so, how to accomplish it...
We have an application we're serving by using the same set of source code, and setting up different <Location> sections in the virtual host to set different variables and path aliases based on who the customer is... But we have clusters of 6 servers in multiple locations, with more such setups to come, and with the rate of having to add sites because of new customers and temp sites for sales demos, it's becoming difficult to manage so many setups in this fashon, and restarting apache becomes more and more an unpleasant thing to do with the more end-users that are hitting it. What I'd like to do (if even possible!), is have something like this: Have a databae table that stores the information for each setting, then load it dynamically as a request comes in... mailer dream code: $ENV{REQUEST_URI} =~ /^\/(.*?)\//; $base_path = $1; if (!exists($Location{$base_path})) { ... do database calls to load necessairy information ... and set as if this was a perl section in an ... httpd.conf file. } ... then execute as if that location section was always there If there's a better solution then this, I'm also eager to hear it :) Dan.