]> TLD Linux GIT Repositories - packages/proftpd.git/blob - proftpd-anonftp.conf
- ehh, more cleanup, release 2
[packages/proftpd.git] / proftpd-anonftp.conf
1 # $Id$
2
3 # A basic anonymous configuration
4 # uncoment this section below if you want gain annonymous ftp acces
5 <Anonymous ~ftp>
6         User                    ftp
7         Group                   ftp
8         AnonRequirePassword     off
9         RequireValidShell       off
10
11         # We want clients to be able to login with "anonymous" as well as "ftp"
12         UserAlias               anonymous ftp
13
14         # Limit the maximum number of anonymous logins
15         MaxClients              10
16
17         # We want 'welcome.msg' displayed at login, and '.message' displayed
18         # in each newly chdired directory.
19         DisplayLogin            welcome.msg
20         DisplayChdir            .message
21
22         AllowStoreRestart on
23
24         # Limit WRITE everywhere in the anonymous chroot
25         <Limit WRITE>
26                 DenyAll
27         </Limit>
28
29 #       <Directory /home/services/ftp/pub/Incoming>
30 #               <Limit READ>
31 #                       DenyAll
32 #               </Limit>
33 #               <Limit WRITE>
34 #                       AllowAll
35 #               </Limit>
36 #               <Limit STOR>
37 #                       AllowAll
38 #               </Limit>
39 #       </Directory>
40 </Anonymous>