Has anybody figured out a way to share the httpd.conf config file for 2 servers in a load balancing scenario. Basically, I am using LVS and keepalived all on Fedora Codre 3 servers to load balance web requests. Since I have several virtualhosts who are binded to specific IP addresses I (and also since my webservers are natted behind my LVS director) I need to map the same public address to 2 different private one. ie: each request for 24.222.45.76 will end up to 192.168.1.76 or 192.168.2.76 inside my LAN. Now this prevents me from using one httpd.conf file for both webserver. Ideally I want to have both webservers with cifs mount points so that I can share 1 httpd.conf file (and also ssl certificates). This way there would only be one file to edit and less human error while doing modifications. Is there any way to use mod_rewrite or variables. Or can I do a trick by using includes. If anybody has attempted to do this please share the info.