Skip to content

Commit

Permalink
remove TLSv1 support (#62)
Browse files Browse the repository at this point in the history
  • Loading branch information
53c70r authored Nov 8, 2023
1 parent 12ed85d commit 7ffc922
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion start_vsftpd.sh
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ if [ ! -z "$ADDRESS" ]; then
fi

if [ ! -z "$TLS_CERT" ] || [ ! -z "$TLS_KEY" ]; then
TLS_OPT="-orsa_cert_file=$TLS_CERT -orsa_private_key_file=$TLS_KEY -ossl_enable=YES -oallow_anon_ssl=NO -oforce_local_data_ssl=YES -oforce_local_logins_ssl=YES -ossl_tlsv1=YES -ossl_sslv2=NO -ossl_sslv3=NO -ossl_ciphers=HIGH"
TLS_OPT="-orsa_cert_file=$TLS_CERT -orsa_private_key_file=$TLS_KEY -ossl_enable=YES -oallow_anon_ssl=NO -oforce_local_data_ssl=YES -oforce_local_logins_ssl=YES -ossl_tlsv1=NO -ossl_sslv2=NO -ossl_sslv3=NO -ossl_ciphers=HIGH"
fi

# Used to run custom commands inside container
Expand Down

0 comments on commit 7ffc922

Please sign in to comment.