Listing 3: Example proftpd.conf
ServerName "FTP Server"
ServerType standalone
DefaultServer on
Port 21
Umask 022
MaxInstances 30
User nobody
Group nogroup
DefaultRoot ~
<Global>
AllowOverwrite off
<Limit ALL>
Order allow,deny
DenyAll
</Limit>
<Directory ~/public_html/_vti_*>
<Limit ALL>
DenyALL
</Limit>
</Directory>
</Global>
|