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
The server should optionally support serving multiple domains over https. This would make it easier to support multiple domains in the CMS.
This should be possible using the built in packages, by using tlsConfig.Certificates and tls.Listen rather than ListenAndServe.
There can be a fallback domain, and then several other domains with their own certs that can be used if the server detects them.
We'd need some sort of setup (an array of domains) in the config, with name, aliases, cert, key rather than just the cert_file and key_file keys we have at present.
The text was updated successfully, but these errors were encountered:
The server should optionally support serving multiple domains over https. This would make it easier to support multiple domains in the CMS.
This should be possible using the built in packages, by using tlsConfig.Certificates and tls.Listen rather than ListenAndServe.
There can be a fallback domain, and then several other domains with their own certs that can be used if the server detects them.
We'd need some sort of setup (an array of domains) in the config, with name, aliases, cert, key rather than just the cert_file and key_file keys we have at present.
The text was updated successfully, but these errors were encountered: