Example Apache vhost – За да не го забравя
<VirtualHost *:80>
ServerName alex.apache.org
DocumentRoot /var/www/mydir/
ServerAdmin alex@mindinc.eu
ErrorLog /var/log/httpd/lol-error.log
CustomLog /var/log/httpd/access.log combined
LogLevel debug
ServerSignature on
<Directory /var/www/mydir/>
Options All
Order allow,deny
allow from all
</Directory>
</VirtualHost>
