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