Browse Source

Fix empty dhparam.pem

Kenichi HIROSE 6 năm trước cách đây
mục cha
commit
6a1a518fec
1 tập tin đã thay đổi với 2 bổ sung1 xóa
  1. 2 1
      generate-dhparam.sh

+ 2 - 1
generate-dhparam.sh

@@ -37,7 +37,8 @@ touch $GEN_LOCKFILE
 # Generate a new dhparam in the background in a low priority and reload nginx when finished (grep removes the progress indicator).
 (
     (
-        nice -n +5 openssl dhparam -out $DHPARAM_FILE $DHPARAM_BITS 2>&1 \
+        nice -n +5 openssl dhparam -out $DHPARAM_FILE.tmp $DHPARAM_BITS 2>&1 \
+        && mv $DHPARAM_FILE.tmp $DHPARAM_FILE \
         && echo "dhparam generation complete, reloading nginx" \
         && nginx -s reload
     ) | grep -vE '^[\.+]+'