- Accueil
- » Forum
- » Serveurs
- » Host virtuel?
Pages : 1
#1 Le 28/08/2005, à 03:40
- Maze12
Host virtuel?
Bonjour,
je voudrai cree des nom de domaine loceau ( par exemple "mon_domain.local" redirige vers-> "127.0.0.1:80") et je ne sais pas comment m'y prendre :s
Si quelqu'un saurai comment m'aider ca serai super cool
Merci par avance
To be continued...
Materiel : HP Pavillon HDX - Core2Duo T8100 , Ram 3Gb, Nvidia 8800gt ,Wifi PRO/Wireless 4965 AGN
OS : Kubuntu 9.04 - KDE 4.2.90
Hors ligne
#2 Le 28/08/2005, à 10:50
- keyes
Re : Host virtuel?
t'ajoutes tes nom d'hôtes dans /etc/hosts genre
127.0.0.1 tux.chez-moi
ensuite tu fait un vhost apache 2 dans /etc/apache2/sites-enabled/
genre
tux.chez-moi.conf
NameVirtualHost *
<VirtualHost *>
ServerName tux.chez-moi
ServerAdmin webmaster@tux.vom
DocumentRoot /home/tux/www
<Directory /home/tux/www>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
ErrorLog /home/tux/log/error.log
LogLevel warn
CustomLog /home/tux/log//access.log combined
ServerSignature Off
</VirtualHost>
Hors ligne
Pages : 1