I'm hoping someone can assit me with creating a template for a customised ibay. 
Currently I have installed Mysource, from 
http://mysource.squiz.net, which is a web content management system. Upon installing it, it requires a customised entry in httpd.conf. What I have thought of doing is modifying the entries relating to that ibay in httpd.conf. 
Then I change the content for a virtual domain to point to that ibay. This works successfully, as I am able to access all the functions of mysource.
My only problem is how can I make the changes permenant. I dont seem to be able to understand which templte should be modified and what I should add in the template.
Here is a copy of the entries I have currently added to my httpd.conf. These changes have been made to both virtual host 192.169.1.20 & 127.0.0.1
    ServerName www.some_domain.com
    ServerAlias some_domain.com
    # primary content
    DocumentRoot /home/e-smith/files/ibays/mysource/html/web
    
        AllowOverride All
    
    AliasMatch "^(/.*)?/__lib(.*)$"       "/home/e-smith/files/ibays/mysource/html/web/__lib$2"
    AliasMatch "^(/.*)?/__squizlib(.*)$"  "/home/e-smith/files/ibays/mysource/html/squizlib$2"
    AliasMatch "^(/.*)?/__data(.*)$"      "/home/e-smith/files/ibays/mysource/html/data/unrestricted$2"
    # Any HTTP request made at this domain followed by '/_edit'
    # will open the editing interface for that site, page etc.
    AliasMatch "^(/.*)?/_edit(.*)$"       "/home/e-smith/files/ibays/mysource/html/web/edit$2"
    # Any *other* HTTP request made at this domain gets handled
    # by the MySource web frontend controller script.
    AliasMatch "^(/.*)?$"                 "/home/e-smith/files/ibays/mysource/html/web/index.php"
    #DocumentRoot         /home/e-smith/files/ibays/mysource/html
    #ScriptAlias /cgi-bin /home/e-smith/files/ibays/mysource/cgi-bin
    #Alias       /files   /home/e-smith/files/ibays/mysource/files
    # alias for Apache icons
    Alias /icons/ /var/www/icons/
Any help with this would be much appreciated. Once I have overcome this, I can provide a howto for other if they wish.
Thank you.
Andrew.