# This is a basic ProFTPD configuration file (rename it to
# 'proftpd.conf' for actual use. It establishes a single server
# and a single anonymous login. It assumes that you have a user/group
# "nobody" and "ftp" for normal operation and anon.
ServerName "ProFTPD"
AuthUserFile /etc/proftpd/passwd.vhosts
LogFormat BytesLog "%b"
ServerType standalone
DeferWelcome off
DefaultServer on
DefaultRoot ~ !wheel
AllowForeignAddress on
PassivePorts 49152 65534
# Port 21 is the standard FTP port.
<IfModule mod_tls.c>
TLSEngine on
TLSProtocol TLSv1
TLSRequired off
TLSRSACertificateFile /etc/ftpd-rsa.pem
TLSRSACertificateKeyFile /etc/ftpd-rsa-key.pem
TLSVerifyClient off
</IfModule>
Port 21
# Umask 022 is a good standard umask to prevent new dirs and files
# from being group and world writable.
Umask 022
# Set the user and group that the server normally runs at.
User nobody
Group proftpd
# Normally, we want files to be overwriteable.
<Directory />
AllowOverwrite on
</Directory>
<Anonymous ~guest>
User anony
Group ftp
AnonRequirePassword on
MaxClientsPerHost 1 "Bitte nicht öfters als 1x verbinden"
MaxClientsPerUser 10
TransferRate RETR 20 user anony
<Limit LOGIN>
AllowAll
</Limit>
<Directory /home/user/*>
<Limit READ DIRS>
IgnoreHidden on
</Limit>
<Limit READ CWD RETR>
AllowAll
</Limit>
<Limit READ CWD RETR WRITE MKD RTFR RNTO DELE RMD STOR SITE_CHMOD>
AllowUser diel2001
</Limit>
</Directory>
</Anonymous>