Split httpd_config.xml ?

#1
Hi,

This question has been asked in past also with a negative reply to it. I am just asking it again with a hope that things might have changed in 2-3 years. Is is possible to split the configuration. Anything like include, require available in other web servers? I want to keep the templates and its member associations in a file different from httpd_config.xml.

Regards,
Akash
 
#3
but per vhost setting is saved in separate files. can you give an example to be more clear on your request.
I want this part:

<vhTemplateList>
<vhTemplate>
<name>abc</name>
<templateFile>$SERVER_ROOT/conf/templates/abc.xml</templateFile>
<listeners>http, https</listeners>
<note></note>
<member>
<vhName>test</vhName>
<vhDomain>test.com</vhDomain>
<vhAliases></vhAliases>
<vhRoot>/home/test/www/</vhRoot>
</member>
<member>
<vhName>hello</vhName>
<vhDomain>hello.com</vhDomain>
<vhAliases></vhAliases>
<vhRoot>/home/hello/www/</vhRoot>
</member>
</vhTemplate>
</vhTemplateList>

to be in a different file or files. Because this is the only part which gets modified when hosts are added, removed to/from templates. I want the main httpd_config.xml to remain static.

-Regards,
Akash
 
Top