Hoy !
Voilà y a tout qui marche, apache, php, MySQLAdmin etc alors là il me reste plus qu'à faire un serveur FTP anonyme pour pouvoir mettre mes fichiers dans le repertoir /var/www/html/ depuis un autre PC... mais proftpd déconne, il se lance, mais quand j'essaye de me connecter depuis un autre PC ça me donne ça dans le client FTP sous Windows
Connecté à 160.53.50.227
Compiled in modules:
mod_core.c
mode_auth.c
(y en a une 15 aine comme ça)
...
...
Connexion fermée.
Mon fichier .conf
ServerName "powered by Linux"
ServerType standalone
ServerAdmin ftpadm@localhost
DeferWelcome off
DefaultServer on
# Port 21 is the standard FTP port.
Port 21
# Umask 022 is a good standard umask to prevent new dirs
# and files from being group and world writable.
Umask 022
MaxInstances 30
# Set the user and group that the server normally runs at.
User nobody
Group nogroup
# Normally, we want files to be overwriteable.
<Directory />
AllowOverwrite on
</Directory>
<Anonymous /var/www/html>
# After anonymous login, daemon runs as:
User ftp
Group public
# Client login as 'anonymous' is aliased to 'ftp'.
UserAlias anonymous ftp
# Limit the maximum number of anonymous logins
MaxClients 10
# We want 'welcome.msg' displayed at login, and '.message' displayed
# in each newly chdired directory.
DisplayLogin msgs/welcome.msg
DisplayFirstChdir .message
# Deny write operations to all directories, underneath root-dir
# Default is to allow, so we don't need a <Limit> for read operations.
<Directory *>
<Limit WRITE>
AllowAll
</Limit>
</Directory>
# Only uploads into incomming directory are allowed...
<Directory incoming>
Umask 022
# ... allow file storing, but not other writes
<Limit STOR>
AllowAll
</Limit>
</Directory>
</Anonymous>
Je dois faire quoi pour que ça marche ???
Merci !
Darx