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