Browse Source

uhttpd: prefer px5g for certificate creation

Prefer the old default 'px5g' for certificate creation
as Firefox seems to dislike OpenSSL-created certs.

Signed-off-by: Hannu Nyman <[email protected]>
Hannu Nyman 9 years ago
parent
commit
82132540a3
1 changed files with 2 additions and 2 deletions
  1. 2 2
      package/network/services/uhttpd/files/uhttpd.init

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

@@ -44,10 +44,10 @@ generate_keys() {
 	config_get location   "$cfg" location
 	config_get commonname "$cfg" commonname
 
-	# Prefer OpenSSL for certificate generation (existence evaluated last)
+	# Prefer px5g for certificate generation (existence evaluated last)
 	local GENKEY_CMD=""
-	[ -x "$PX5G_BIN" ] && GENKEY_CMD="$PX5G_BIN selfsigned -der"
 	[ -x "$OPENSSL_BIN" ] && GENKEY_CMD="$OPENSSL_BIN req -x509 -outform der -nodes"
+	[ -x "$PX5G_BIN" ] && GENKEY_CMD="$PX5G_BIN selfsigned -der"
 	[ -n "$GENKEY_CMD" ] && {
 		$GENKEY_CMD \
 			-days ${days:-730} -newkey rsa:${bits:-2048} -keyout "${UHTTPD_KEY}.new" -out "${UHTTPD_CERT}.new" \