> > Right now it seems a bit silly having a separate ErrorLog line in each > > of the apache virtual host stubs, but as far as I am aware there isn't > > an easier way is there? > > You could look at mod_macro.
mod_macro (http://www.coelho.net/mod_macro) works great for me. I found that I had to make a few changes to get it to build for Apache 2.0.46. To wit: 110c110 < module macro_module; --- > module AP_MODULE_DECLARE_DATA macro_module; 810c810,811 < char * name, * where, * recursion; --- > char * name, * recursion; > char * where = "???"; 951c952 < AP_DECLARE_DATA module macro_module = { --- > module AP_MODULE_DECLARE_DATA macro_module = { The preload of 'where' may be redundant, I don't remember. I believe that the use of AP_MODULE_DECLARE_DATA was change that I had to make or nothing would build. YMMV mma