1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
<VirtualHost *:80>
ServerAdmin postmaster@mondomain.org
ServerName cyril.mondomaine.org
DocumentRoot /home/cyril/www/
<Directory /home/cyril/public_html/>
Options -Indexes FollowSymLinks MultiViews
AllowOverride All
</Directory>
ErrorLog /home/cyril/logs/error.log
LogLevel warn
CustomLog /home/cyril/logs/access.log combined
</VirtualHost>
<VirtualHost *:80>
ServerAdmin postmaster@mondomaine.org
ServerName www.mondomaine.org
DocumentRoot /home/web/www/
<Directory /home/web/public_html/>
Options -Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
ErrorLog /home/web/logs/error.log
LogLevel warn
CustomLog /home/web/logs/access.log combined
</VirtualHost> |
Partager