Unifi Controller Custom Certificate Installation 1. Convert Certificate + Key to PKCS12 bundle openssl pkcs12 -export \ -inkey $KEY \ -in $CERT \ -out $BUNDLE \ -passout pass: 2. Copy bundle to container docker cp $BUNDLE $CONTAINER:$BUNDLE 3. Import bundle to Java key store docker exec $CONTAINER keytool -importkeystore \ -deststorepass aircontrolenterprise \ -destkeypass aircontrolenterprise \ -destkeystore /usr/lib/unifi/data/keystore \ -srckeystore $BUNDLE \ -srcstoretype PKCS12 \ -srcstorepass "" 4. Restart container docker restart $CONTAINER 5. Check certificate fingerprint served matches local fingerprint1="$(openssl x509 -in /etc/ssl/private/fullchain.pem -noout -fingerprint)" fingerprint2="$(openssl s_client -connect localhost:8443 < /dev/null | openssl x509 -fingerprint -noout)" test "$fingerprint1" = "$fingerprint2" && echo "PASS" || echo "FAIL"