View difference between Paste ID: b1fFL2xZ and tPArVfqF
SHOW: | | - or go back to the newest paste.
1
NameVirtualHost *:80
2
3
<VirtualHost *:80>						# Indique que le virtualhost est sur toutes les IP
4
	ServerName toto.com				# Indique que ce VirtualHost concerne "http://toto.com/"
5
	ServerAlias www.toto.com				# Indique que www est un alias de toto.com, et pointera sur le MEME contenu
6
	ServerAdmin webmaster@dtc.com		# Indique l'email de l'admin, pas très important
7
	DocumentRoot /var/www/toto.com		# Indique oΓΉ sont les fichiers
8
</VirtualHost>