PDA

View Full Version : proftpd anonymous ftp virtualserver


edwintenhaaf
8th August 2007, 17:15
Hello,

On my new installed debian Etch server with ispconfig i'm trying to give two domains the possibillity to use anonymous ftp

but when I enable anonymous ftp voor domain B it overwrites the settings of domain A in the proftpd_ispconfig.conf
It overwrites the previous virtualhost instead of adding a new one.

Did I miss something in the configuration of ispconfig / proftpd ?

Can anyone help me to solve the problem ?


###################################
#
# ISPConfig proftpd Configuration File
# Version 1.0
#
###################################
DefaultAddress 127.0.0.1
IdentLookups off
ServerIdent off
<VirtualHost xx.xx.xx.xx>
DefaultRoot ~
AllowOverwrite on
Umask 002
<Anonymous /var/www/web7/ftp>
User web7_anonftp
Group web7_anonftp
UserAlias anonymous web7_anonftp
UserAlias guest web7_anonftp
MaxClients 10
<Directory *>
<Limit WRITE>
DenyAll
</Limit>
</Directory>
<Directory /var/www/web7/ftp/incoming>
Umask 002
<Limit STOR>
AllowAll
</Limit>
<Limit READ>
DenyAll
</Limit>
</Directory>
</Anonymous>
</VirtualHost>

till
8th August 2007, 22:24
You need a dedicated IP address for every anonymous account.

edwintenhaaf
14th August 2007, 19:52
thank you 'Till' sounds logical !

Edwin