Tenho este domínio criado no apache que funciona apenas via:
http://site.gov.br (exemplo)
Se eu colocar o www ele nao abre. O ping também nao acha.
CODE
<VirtualHost *>
ServerAdmin admin@site.gov.br
DocumentRoot /var/www/apache2-default/www.site.gov.br
ServerName www.site.gov.br
DirectoryIndex index.html index.htm index.cgi index.pl index.php index.$
LogLevel warn
CustomLog /var/log/apache2/access.www.site.gov.br.log combined
ErrorLog /var/log/apache2/error.www.site.gov.br.log
ServerSignature On
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/apache2-default/www.site.gov.br/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
</VirtualHost>
ServerAdmin admin@site.gov.br
DocumentRoot /var/www/apache2-default/www.site.gov.br
ServerName www.site.gov.br
DirectoryIndex index.html index.htm index.cgi index.pl index.php index.$
LogLevel warn
CustomLog /var/log/apache2/access.www.site.gov.br.log combined
ErrorLog /var/log/apache2/error.www.site.gov.br.log
ServerSignature On
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/apache2-default/www.site.gov.br/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
</VirtualHost>
Acredito que a entrada do apache e dns estao corretas, pois se acessar via intranet (proxy que roda no mesmo servidor) ele abre normal.
Alguma luz?