I will list down point wise scenario .
- We have one app is running in current production say on URL 1 .
- Now we are setting up our app to new infra on new URL say URL2 .
- We have over 50k+ customers using our old url and we dont want to ask to our customers to change the URL .
- Apart from app access from browser customers are hitting our app via rest api on https connection with certificates if old URL i.e URL1
- We have changed the target (DNS change-CNAME) of our old URL and now when some one is hitting OLD url they are connected to new migrated app .
- SAN For URL2 certificates contains both URL1 and URL2 name .
Problem :
The customers who are using rest api calls are now failing due to certificate problems they have certs of old URL which are not working any more and we can not ask 50k+ plus customers to install new certs . Installation of new certificates may require customer application restart which is not an feasible scenario .
How can we resolve this issue ? Or if there is any other way we can resolve this problem ?