ServerName "FTP"
ServerType standalone
Port 21
# If you don't want normal users logging in at all, uncomment this
# next section
<Limit LOGIN>
DenyAll
</Limit>
User nobody
Group nogroup
#AnonRequirePassword off
MaxInstances 30
TimeoutStalled 300
#DisplayLogin welcome.msg
#DisplayFirstChdir .message
<Anonymous /mnt/s2c/chris/ftp>
# Allow logins if they are disabled above.
<Limit LOGIN>
Allow from all
</Limit>
# Maximum clients with message
MaxClients 5 "Sorry, max %m users -- try again later"
User ftp
Group ftp
# We want clients to be able to login with "anonymous" as well as "ftp"
UserAlias anonymous ftp
AnonRequirePassword off
# PersistentPasswd off
# Limit WRITE everywhere in the anonymous chroot
<Limit WRITE>
DenyAll
</Limit>
# An upload directory that allows storing files but not retrieving
# or creating directories.
<Directory incoming/*>
<Limit READ>
DenyAll
</Limit>
<Limit STOR>
AllowAll
</Limit>
</Directory>
</Anonymous>