View Single Post
Old 03-03-2007, 07:29 PM   #1
Junior Member
 
Join Date: Feb 2007
Posts: 26
apryan
Default Editing default settings on services Bind & Apache

Currently ispmgr adds web sites as the following:'
Code:
<VirtualHost 123.123.123.123:80>
        ServerName test.com
        DocumentRoot /usr/home/test/data/www/test.com
        SuexecUserGroup test test
        CustomLog /usr/home/test/data/logs/test.com.access.log combined
        ErrorLog /usr/home/test/data/logs/test.com.error.log
</VirtualHost>
and adds domain (dns) sites as the following:
Code:
$TTL    3600
test.com.       IN      SOA     ns1.mydomain.com. dns.mydomain.com. (2007030301 10800 3600 604800 86400)
;
test.com.       IN      NS       ns1.mydomain.com.
test.com.       IN      NS       ns2.mydomain.com.
test.com.       IN      MX      10 mail
test.com.       IN      A       123.123.123.123
www     IN      A       123.123.123.123
ftp     IN      A       123.123.123.123
mail    IN      A       123.123.123.123
test.com.       IN      TXT     "v=spf1 a mx ~all"
Is there a way we can change the layout of how ispmgr adds those in or is that set in stone and un-editable? I do know that some settings are in ispmgr.conf such as the NS name servers and www,ftp,mail as default DNS entries, however i am looking to edit other items as well.

Thanks
apryan is offline   Reply With Quote