We have case where we have to change our server URL, but one old deprecated service does not let us change our URL there so we decided to have 2 URL-s running at the same time behind the same server and for new services we would provide a new URL.
server.port=8443
server.ssl.key-store=/ourkeystore
server.ssl.key-store-password=@keystore.key@
server.ssl.enabled=true
server.ssl.enabled-protocols=TLSv1.2
server.ssl.trust-store=ourtruststore
If we have 2 certificates in keystore, then what I have to do for server to know which one to use based on the URL?