components/proftpd/proftpd.conf
author Milan Jurik <Milan.Jurik@oracle.com>
Wed, 15 Jun 2011 01:09:08 -0700
changeset 305 e95b65443448
child 437 1b84695d4fb4
permissions -rw-r--r--
PSARC 2011/088 Replace WU-ftpd with modern FTP server proftpd 6938409 Solaris needs new ftpd replacing dead WU-ftpd 5084971 FTP needs TLS security 6319934 ftp server should support file transfer auditing 6630488 FTP manifest for SMF is incomplete and not arc compliant

ServerName			"FTP server"
ServerIdent			off
ServerType			standalone
DefaultServer			on
Port				21

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 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

# Set the user and group under which the server will run.
User				ftp
Group				ftp

# Normally, we want files to be overwriteable.
AllowOverwrite		on

# Bar use of SITE CHMOD by default
<Limit SITE_CHMOD>
  DenyAll
</Limit>

# Make PAM the final authority on what gets authenticated.
AuthOrder mod_auth_pam.c* mod_auth_unix.c

# Use system libraries for user lookups
PersistentPasswd off