diff options
author | Maik Schreiber <blizzy@gentoo.org> | 2002-11-02 17:07:20 +0000 |
---|---|---|
committer | Maik Schreiber <blizzy@gentoo.org> | 2002-11-02 17:07:20 +0000 |
commit | 18604317a62f297638450a6c62e6925d1710da74 (patch) | |
tree | 84393915221386aeb2cb4fe95dd2a89eef368dd2 /net-ftp/proftpd/files | |
parent | new snapshot (diff) | |
download | gentoo-2-18604317a62f297638450a6c62e6925d1710da74.tar.gz gentoo-2-18604317a62f297638450a6c62e6925d1710da74.tar.bz2 gentoo-2-18604317a62f297638450a6c62e6925d1710da74.zip |
new version
Diffstat (limited to 'net-ftp/proftpd/files')
-rw-r--r-- | net-ftp/proftpd/files/digest-proftpd-1.2.7_rc2 | 1 | ||||
-rw-r--r-- | net-ftp/proftpd/files/proftpd.conf | 34 |
2 files changed, 19 insertions, 16 deletions
diff --git a/net-ftp/proftpd/files/digest-proftpd-1.2.7_rc2 b/net-ftp/proftpd/files/digest-proftpd-1.2.7_rc2 new file mode 100644 index 000000000000..9a56afe0de4a --- /dev/null +++ b/net-ftp/proftpd/files/digest-proftpd-1.2.7_rc2 @@ -0,0 +1 @@ +MD5 c70b2029193fb68f0e7896fc1fe8f228 proftpd-1.2.7rc2.tar.bz2 638445 diff --git a/net-ftp/proftpd/files/proftpd.conf b/net-ftp/proftpd/files/proftpd.conf index 55db30ebef9b..13936d5944c8 100644 --- a/net-ftp/proftpd/files/proftpd.conf +++ b/net-ftp/proftpd/files/proftpd.conf @@ -9,42 +9,44 @@ DefaultServer on AuthPAM off AuthPAMConfig ftp # Port 21 is the standard FTP port. -Port 21 +Port 21 + # Umask 022 is a good standard umask to prevent new dirs and files # from being group and world writable. -Umask 022 +Umask 022 # To prevent DoS attacks, set the maximum number of child processes # to 30. If you need to allow more than 30 concurrent connections # at once, simply increase this value. Note that this ONLY works -# in inetd mode, in inetd mode you should use an inetd server +# in standalone mode, in inetd mode you should use an inetd server # that allows you to limit maximum number of processes per service -# (such as xinetd) -MaxInstances 30 +# (such as xinetd). +MaxInstances 30 -# Set the user and group that the server normally runs at. -User nobody -Group nobody +# Set the user and group under which the server will run. +User proftpd +Group proftpd # Normally, we want files to be overwriteable. -<Directory /*> - AllowOverwrite on +<Directory /> + AllowOverwrite on </Directory> # A basic anonymous configuration, no upload directories. <Anonymous ~ftp> - User ftp - Group ftp + User ftp + Group ftp + # We want clients to be able to login with "anonymous" as well as "ftp" - UserAlias anonymous ftp + UserAlias anonymous ftp # Limit the maximum number of anonymous logins - MaxClients 10 + MaxClients 10 # We want 'welcome.msg' displayed at login, and '.message' displayed # in each newly chdired directory. - DisplayLogin welcome.msg - DisplayFirstChdir .message + DisplayLogin welcome.msg + DisplayFirstChdir .message # Limit WRITE everywhere in the anonymous chroot <Limit WRITE> |