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>