]> git.pld-linux.org Git - packages/proftpd.git/blob - proftpd.conf
- separated anonftp config
[packages/proftpd.git] / proftpd.conf
1 # $Id$
2
3 ServerName                      "ProFTPD"
4 ServerType                      standalone
5 DeferWelcome                    off
6 DefaultServer                   on
7
8 # If you want .message files to work with browsers, you probably
9 # want to uncomment the next line
10 #MultilineRFC2228               on
11
12 # Port 21 is the standard FTP port.
13 Port                            21
14 # Umask 022 is a good standard umask to prevent new dirs and files
15 # from being group and world writable.
16 Umask                           022
17
18 # Set the user and group that the server normally runs at.
19 User                            ftp
20 Group                           ftp
21
22 # use separate auth files instead of system auth
23 #AuthUserFile /etc/ftpd/passwd
24 #AuthGroupFile /etc/ftpd/group
25
26 # Normally, we want files to be overwriteable.
27 <Directory />
28         AllowOverwrite          on
29 </Directory>
30
31 # Load additional (modules) config
32 Include /etc/ftpd/conf.d/*.conf
This page took 0.345538 seconds and 4 git commands to generate.