Ok... do the webserver first. Get those names decided, then put them into dns.
httpd.conf
Code:
<VirtualHost www.demo.projekts.biz:80>
DocumentRoot /var/www/newproject/futura/demo
ServerName demo.projekts.biz
ScriptAlias /cgi-bin/ "/var/www/cgi-bin/"
Alias /icons/ "/var/www/icons/"
ErrorLog /var/log/httpd/errors/futura.newproject
TransferLog /var/log/httpd/transfers/futura.newproject
CustomLog /var/log/httpd/access/futura.newproject common
ServerAdmin andrzej@projekts.biz
</VirtualHost>
named.conf
Code:
zone "projekts.biz" {
type master;
file "pz/projekts.biz";
allow-query { any; };
};
/var/named/pz/projekts.biz
Code:
$TTL 3D
@ IN SOA projekts.biz. root.projekts.biz. (
2005032901
8H
4H
4W
3D )
;
NS dsl1.epa.com.pl.
NS projekts.biz.
NS dns.alfanet.wroclaw.pl.
NS dns2.alfanet.wroclaw.pl.
MX 10 projekts.biz.
;
localhost A 127.0.0.1
projekts.biz. A 83.16.231.94
ftp A 83.16.231.94
linux A 83.16.231.94
www.futur A 83.16.231.94
smoothie A 83.16.231.94
www.demo A 83.16.231.94
demo A 83.16.231.94