1
0
mirror of https://github.com/dcarrillo/docker-nginx.git synced 2025-07-04 03:29:25 +00:00

Increase dhparams key size when testing

This commit is contained in:
2021-11-19 17:39:31 +01:00
parent ca0ea2517c
commit 4447ef0a78

View File

@ -34,7 +34,7 @@ _cleanup()
_setup_crypto_stuff()
{
echo "Generating SSL files..."
openssl dhparam -out "$TMP_DIR"/dhparams.pem 512 > /dev/null 2>&1
openssl dhparam -out "$TMP_DIR"/dhparams.pem 1024 > /dev/null 2>&1
openssl req -new -newkey rsa:4096 -days 365 -nodes -x509 \
-subj "/C=ES/ST=Madrid/L=Madrid/O=dcarrillo/CN=localhost" \
-keyout "$TMP_DIR"/cert.key -out "$TMP_DIR"/cert.pem > /dev/null 2>&1