You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
345 B
15 lines
345 B
# default: off
|
|
# description: The vsftpd FTP server serves FTP connections. It uses \
|
|
# normal, unencrypted usernames and passwords for authentication.
|
|
service ftp
|
|
{
|
|
socket_type = stream
|
|
wait = no
|
|
user = root
|
|
server = /usr/sbin/vsftpd
|
|
server_args = /etc/vsftpd/vsftpd.conf
|
|
nice = 10
|
|
disable = yes
|
|
flags = IPv4
|
|
}
|