[resolu]no-ip

Bonjour,
je viens d’installer la debian pour creer un site interenet.

Il est derriere un parefeu ipcop 1.4.9

j’ai installe apache2+php4+mysql, tout fonctionne

puis j’ai installer no-ip, il fonctionne aussi

j’aimerai savoir comment faire pour la redirection du nom que j’ai avec no-ip dans apache.

merci de votre aide

[code]NameVirtualHost pseudo.no-ip.ext

ServerAdmin adresse@mail.com
DocumentRoot /var/www/site/
ServerName pseudo.no-ip.ext
<Directory /var/www/site/>
Options Indexes SymLinksIfOwnerMatch 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/

    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 
[/code]Je pense que ca doit etre quelque chose comme ca que tu désire avoir.

ou

NameVirtualHost *:80
<VirtualHost *:80>
  ServerName prout.no-ip.com
  ServerAlias www.prout.no-ip.com
  DocumentRoot /ma/belle/stuff
</VirtualHost>