Ubuntu Pastebin

Paste from hi at Fri, 12 Aug 2016 09:53:17 +0000

Download as text
 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
# This string is the name of the PAM service vsftpd will use.
pam_service_name=vsftpd
#
# This option specifies the location of the RSA certificate to use for SSL
# encrypted connections.
rsa_cert_file=/etc/ssl/private/vsftpd.pem
# This option specifies the location of the RSA key to use for SSL
# encrypted connections.
rsa_private_key_file=/etc/ssl/private/vsftpd.pem
listen_port=5757
ssl_enable=YES
allow_anon_ssl=NO
force_local_data_ssl=YES
force_local_logins_ssl=YES
#ssl_tlsv1=YES
#ssl_sslv2=NO
#ssl_sslv3=NO
require_ssl_reuse=NO
ssl_ciphers=HIGH
port_enable=YES
pasv_enable=YES
pasv_promiscuous=YES
port_promiscuous=YES
pasv_min_port=5757
pasv_max_port=50999
Download as text