]> git.pld-linux.org Git - packages/proftpd.git/blob - proftpd.conf
- restore pre-1.3.3 /var/run/proftpd path
[packages/proftpd.git] / proftpd.conf
1 # $Id$
2
3 ServerName              "ProFTPD"
4 ServerType              standalone
5 DeferWelcome            off
6 DefaultServer           on
7 #IdentLookups           off
8 #UseReverseDNS          off
9
10 # If you want .message files to work with browsers, you probably
11 # want to uncomment the next line
12 #MultilineRFC2228       on
13
14 # Port 21 is the standard FTP port.
15 Port                    21
16 # Umask 022 is a good standard umask to prevent new dirs and files
17 # from being group and world writable.
18 Umask                   022
19
20 # Set the user and group that the server normally runs at.
21 User                    ftp
22 Group                   ftp
23
24 #RequireValidShell      off
25
26 # use separate auth files instead of system auth
27 #AuthUserFile           /etc/ftpd/passwd
28 #AuthGroupFile          /etc/ftpd/group
29
30 # Normally, we want files to be overwriteable.
31 <Directory />
32         AllowOverwrite  on
33 </Directory>
34
35 # lock users to their homedir
36 DefaultRoot             ~
37
38 # allow resume uploads and downloads
39 AllowRetrieveRestart    on
40 AllowStoreRestart       on
41
42 # enable this to have your ftp server FXP gateway.
43 # only enable this if you trust your users as it allows your ftp server to connect anywhere.
44 # DO NOT enable this if you have anonymous logins enabled!
45 #AllowForeignAddress    on
46
47 # NAT support
48 # http://www.castaglia.org/proftpd/doc/contrib/ProFTPD-mini-HOWTO-NAT.html
49 #MasqueradeAddress      my.domain.com
50 #PassivePorts           60000 65535
51
52 #UseIPv6                off
53
54 # Do not announce server software at logon. for paranoids.
55 #ServerIdent            off
56
57 # To prevent DoS attacks, set the maximum number of child processes
58 # to 30.  If you need to allow more than 30 concurrent connections
59 # at once, simply increase this value.  Note that this ONLY works
60 # in standalone mode, in inetd mode you should use an inetd server
61 # that allows you to limit maximum number of processes per service
62 # (such as xinetd).
63 MaxInstances            30
64
65 # Idle
66 TimeoutLogin            300
67 TimeoutNoTransfer       300
68
69 # Load additional (modules) config
70 Include /etc/ftpd/conf.d/*.conf
This page took 0.110745 seconds and 3 git commands to generate.