vhost.conf and Alias to share common files across domains - impact on server load?
I have a project in mind that effectively means making the same core php scripts available to a range of clients, by placing the scripts under var/www/coredcode/ and using alias in the vhost.conf file to configure my clients' domains to use those rather than local files. Advantage to me is that I only ever have to maintain and upgrade one set of files :-)
What I'm not sure about is if this will impact on the server load. If, for example, I run 15 domains in this way, so each domain is accessing the same index.php file located at var/www/corecode/index.php, is this more demanding of the server than running 15 separate instances of index.php under the 15 different domains? Or will it make little to no difference?
Adam
|