Merci pour vos réponses.
Il est vrai que d’utiliser les nouvelles configurations d’apache2, c’est beaucoup plus propre de faire ca si j’ai plusieurs domaines à mettre en place.
J’ai tenté de faire simplement par apache2.conf comme j’ai essayé de faire ca avec les nouvelles configurations.
J’ai crée mon fichier lyonnight.com dans /etc/apache2/sites-available j’ai également laisse le fichier default.
J’ai également crée comme il se soit un lien symbolique de lyonnight.com dans /etc/apache2/sites-enabled qui pointe vers /etc/apache2/sites-available
Voila à quoi ressemble mon fichier /etc/apache2/sites-available/lyonnight.com :
[code]NameVirtualHost 91.121.31.134:80
<VirtualHost 91.121.31.134:80>
ServerName www.lyonnight.com
ServerAlias lyonnight.com
DocumentRoot /var/www/dossiertest
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/dossiertest>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
ErrorLog /var/log/apache2/lyonnight-error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog /var/log/apache2/lyonnight-access.log combined
ServerSignature On
Alias /doc/ "/usr/share/doc/"
<Directory "/usr/share/doc/">
Options Indexes MultiViews FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
Allow from 127.0.0.0/255.0.0.0 ::1/128
</Directory>
[/code]
Le résultat reste le même lorsque j’active le virtual host, http://www.lyonnight.com et http://ns300419.ovh.net/ donne la même chose, tous les deux pointent vers mon dossier /var/www/dossiertest alors que normalement seul http://www.lyonnight.com devrait pointer sur /var/www/dossiertest.
Si je précise le port 82 au virtual host, la il y a pas de soucis http://www.lyonnight.com:82 pointe vers /var/www/dossiertest et http://ns300419.ovh.net/ vers /var/www
J’ai lu qu’il fallait garder le /etc/apache2/sites-available/default
Voici la description de celui-ci :
[code]NameVirtualHost *
<VirtualHost *>
ServerAdmin webmaster@localhost
DocumentRoot /var/www
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
# This directive allows us to have apache2's default start page
# in /apache2-default/, but still have / go to the right place
# RedirectMatch ^/$ /apache2-default/
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
ErrorLog /var/log/apache2/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog /var/log/apache2/access.log combined
ServerSignature On
Alias /doc/ "/usr/share/doc/"
<Directory "/usr/share/doc/">
Options Indexes MultiViews FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
Allow from 127.0.0.0/255.0.0.0 ::1/128
</Directory>
[/code]
Voici à quoi ressemble mon /etc/hosts :
J’ai également testé avec :
Donc je sais plus trop quoi faire pour tester de nouvelles choses, toucher /etc/hosts devrait suffire ? faut il que je touche bind ?
Pensez vous que cela vient d’apache ?
Merci à tous