blob: 4949d741a96df9db07963b5ddc9b4eff815d283c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
$NetBSD: patch-ac,v 1.2 2003/05/29 20:08:42 salo Exp $
--- vsftpd.conf.orig 2003-01-21 02:15:34.000000000 +0100
+++ vsftpd.conf 2003-05-29 20:19:35.000000000 +0200
@@ -1,4 +1,4 @@
-# Example config file /etc/vsftpd.conf
+# Example config file @PKG_SYSCONFDIR@/vsftpd.conf
#
# The default compiled in settings are fairly paranoid. This sample file
# loosens things up a bit, to make the ftp daemon more usable.
@@ -88,14 +88,14 @@
# useful for combatting certain DoS attacks.
#deny_email_enable=YES
# (default follows)
-#banned_email_file=/etc/vsftpd.banned_emails
+#banned_email_file=@PKG_SYSCONFDIR@/vsftpd.banned_emails
#
# You may specify an explicit list of local users to chroot() to their home
# directory. If chroot_local_user is YES, then this list becomes a list of
# users to NOT chroot().
#chroot_list_enable=YES
# (default follows)
-#chroot_list_file=/etc/vsftpd.chroot_list
+#chroot_list_file=@PKG_SYSCONFDIR@/vsftpd.chroot_list
#
# You may activate the "-R" option to the builtin ls. This is disabled by
# default to avoid remote users being able to cause excessive I/O on large
@@ -103,3 +103,11 @@
# the presence of the "-R" option, so there is a strong case for enabling it.
#ls_recurse_enable=YES
+# By default the server will run standalone. Comment out the option below if
+# running from inetd.
+listen=YES
+
+# Like the listen parameter, except vsftpd will listen on an IPv6 socket
+# instead of an IPv4 one. This parameter and the listen parameter are mutually
+# exlusive.
+#listen_ipv6=YES
|