1
0
Fork 0
mirror of https://github.com/nginx-proxy/nginx-proxy synced 2024-06-09 16:26:34 +02:00

Update docker-entrypoint.sh

Default key size is not 2048 anymore but 4096, reference : https://github.com/nginx-proxy/nginx-proxy/blob/master/generate-dhparam.sh#L4
This commit is contained in:
Thibault Soubiran 2020-12-02 13:18:32 +01:00 committed by GitHub
parent c8a6785898
commit aba100ff7b
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,7 +15,7 @@ if [[ $DOCKER_HOST = unix://* ]]; then
fi
# Generate dhparam file if required
# Note: if $DHPARAM_BITS is not defined, generate-dhparam.sh will use 2048 as a default
# Note: if $DHPARAM_BITS is not defined, generate-dhparam.sh will use 4096 as a default
# Note2: if $DHPARAM_GENERATION is set to false in environment variable, dh param generator will skip completely
/app/generate-dhparam.sh $DHPARAM_BITS $DHPARAM_GENERATION