13 lines
378 B
Plaintext
13 lines
378 B
Plaintext
|
|
<VirtualHost *:80>
|
||
|
|
ServerAdmin webmaster@example.com
|
||
|
|
DocumentRoot "/www/server/apache/htdocs"
|
||
|
|
ServerName bt.default.com
|
||
|
|
<Directory "/www/server/apache/htdocs">
|
||
|
|
SetOutputFilter DEFLATE
|
||
|
|
Options FollowSymLinks
|
||
|
|
AllowOverride All
|
||
|
|
Order allow,deny
|
||
|
|
Allow from all
|
||
|
|
DirectoryIndex index.html
|
||
|
|
</Directory>
|
||
|
|
</VirtualHost>
|