- Minor
Creating a certificate_bundle.pem in /boot/config/ssl/certs and using a wildcard certificate will result in a Nginx configuration error in /etc/nginx/conf.d/emhttp-servers.conf
It looks like that the common name of the cert is being used in the configuration, around like 40, in this section:
# # Redirect http requests to https # listen *:80 default_server; listen [::]:80 default_server; return 302 https://*.example.com:443$request_uri;
Changing this from https://*.example.com to https://subdomain.example.com and running nginx -s reload will fix the issue.
The issue is that port 80 redirects result in a corrupted content error in FireFox. Have not tested other browers.