Browse Source

merge: uhttpd: update cert generation to match system defaults

Signed-off-by: Zoltan HERPAI <[email protected]>
Zoltan HERPAI 8 years ago
parent
commit
2ffff58c2b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      package/network/services/uhttpd/files/uhttpd.init

+ 1 - 1
package/network/services/uhttpd/files/uhttpd.init

@@ -52,7 +52,7 @@ generate_keys() {
 	[ -n "$GENKEY_CMD" ] && {
 		$GENKEY_CMD \
 			-days ${days:-730} -newkey rsa:${bits:-2048} -keyout "${UHTTPD_KEY}.new" -out "${UHTTPD_CERT}.new" \
-			-subj /C="${country:-DE}"/ST="${state:-Saxony}"/L="${location:-Leipzig}"/O="${commonname:-Lede}$UNIQUEID"/CN="${commonname:-Lede}"
+			-subj /C="${country:-ZZ}"/ST="${state:-Somewhere}"/L="${location:-Unknown}"/O="${commonname:-OpenWrt}$UNIQUEID"/CN="${commonname:-OpenWrt}"
 		sync
 		mv "${UHTTPD_KEY}.new" "${UHTTPD_KEY}"
 		mv "${UHTTPD_CERT}.new" "${UHTTPD_CERT}"