]> git.pld-linux.org Git - packages/proftpd.git/blobdiff - proftpd.conf
- up to 1.3.6b
[packages/proftpd.git] / proftpd.conf
index 5d2538480170246f99661f1b1879b00c25089248..9f00ce861b1e948f53bd2ba4a6ab34dd7164356f 100644 (file)
@@ -1,49 +1,58 @@
 # $Id$
 
-ServerName                     "ProFTPD"
-ServerType                     standalone
+ServerName             "ProFTPD"
+ServerType             standalone
 DeferWelcome           off
 DefaultServer          on
+#IdentLookups          off
+#UseReverseDNS         off
+
+# Set to off if you use NSS LDAP, NIS, etc.
+#PersistentPasswd      off
 
 # If you want .message files to work with browsers, you probably
 # want to uncomment the next line
 #MultilineRFC2228      on
 
 # 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
 
 # Set the user and group that the server normally runs at.
-User                           ftp
-Group                          ftp
+User                   ftp
+Group                  ftp
+
+#RequireValidShell     off
 
 # use separate auth files instead of system auth
-#AuthUserFile /etc/ftpd/passwd
-#AuthGroupFile /etc/ftpd/group
+#AuthUserFile          /etc/ftpd/passwd
+#AuthGroupFile         /etc/ftpd/group
 
 # Normally, we want files to be overwriteable.
 <Directory />
-       AllowOverwrite          on
+       AllowOverwrite  on
 </Directory>
 
 # lock users to their homedir
-DefaultRoot         ~
+DefaultRoot            ~
 
 # allow resume uploads and downloads
-AllowRetrieveRestart on
-AllowStoreRestart on
+AllowRetrieveRestart   on
+AllowStoreRestart      on
 
 # enable this to have your ftp server FXP gateway.
 # only enable this if you trust your users as it allows your ftp server to connect anywhere.
 # DO NOT enable this if you have anonymous logins enabled!
-#AllowForeignAddress on
+#AllowForeignAddress   on
 
 # NAT support
 # http://www.castaglia.org/proftpd/doc/contrib/ProFTPD-mini-HOWTO-NAT.html
-#MasqueradeAddress my.domain.com
-#PassivePorts 60000 65535
+#MasqueradeAddress     my.domain.com
+#PassivePorts          60000 65535
+
+#UseIPv6               off
 
 # Do not announce server software at logon. for paranoids.
 #ServerIdent           off
This page took 0.068451 seconds and 4 git commands to generate.