Le ServerName te permet de rediriger sur le bon virtualhost, d'après l'url entré dans le navigateur.
Par exemple pour sephi-chan.fr :
Par exemple pour sephi-chan.fr :
Code PHP :
<?php
<VirtualHost 91.121.140.104:80>
ServerName sephi-chan.fr
ServerAlias www.sephi-chan.fr
DocumentRoot /home/sephi-chan/public_html
ErrorLog /home/sephi-chan/logs/error_log
CustomLog /home/sephi-chan/logs/access_log combined
DirectoryIndex index.html index.htm index.php index.php4 index.php5
<Directory /home/sephi-chan/public_html>
Options -Indexes IncludesNOEXEC FollowSymLinks
allow from all
AllowOverride All
</Directory>
<Directory /home/sephi-chan/cgi-bin>
allow from all
</Directory>
</VirtualHost>