You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Chrome on macOS Catalina treats the self-signed cert in vhost-proxy as revoked and does not allow loading projects over https (the option to proceed is no longer available)
Apple has introduced a series of new requirements for SSL certificates to be accepted by Catalina, documented at https://support.apple.com/en-us/HT210176. To summarize here:
- Key size must be at least 2048 bits.
- Hash algorithm must be SHA-2 or newer.
- DNS names must be in a SubjectAltName, not in the CN field only.
Moreover, for certificates issued after 2019-07-01:
- The ExtendedKeyUsage extension must be present, with the id-kp-ServerAuth OID.
- The validity period may not be longer than 825 days.
The cert in the latest release of vhost-proxy was issues after 2019-07-01 and has the validity period of longer than 825 days:
NET::ERR_CERT_REVOKED
Subject: *.docksal
Issuer: *.docksal
Expires on: Nov 10, 2029
Current date: Dec 20, 2019
...
The validity period on the self-signed cert has to be set to 825 days or less to fix this.
The text was updated successfully, but these errors were encountered:
Chrome on macOS Catalina treats the self-signed cert in vhost-proxy as revoked and does not allow loading projects over https (the option to proceed is no longer available)
According to this:
The cert in the latest release of vhost-proxy was issues after 2019-07-01 and has the validity period of longer than 825 days:
The validity period on the self-signed cert has to be set to 825 days or less to fix this.
The text was updated successfully, but these errors were encountered: