let's say I have a REST service under https://domain1.com. What's the easiest and the cheapest way to have another domain like https://domain2.com become a proxy/alias to https://domain1.com? Is it possible to achieve with pure domain config? I control both domains
y
Youssef Shoaib [MOD]
06/13/2024, 9:45 AM
A DNS CName record is probably what you're looking for.
p
Piotr Krzemiński
06/13/2024, 9:46 AM
will SSL work as expected? I mean, there will be domain mismatch right?
e
ephemient
06/13/2024, 4:38 PM
you can get a cert with an altname
ephemient
06/13/2024, 4:39 PM
or (assuming modern tech) allow your server to select the cert to present based on SNI
p
Piotr Krzemiński
06/13/2024, 5:20 PM
sounds like what we need, thanks! I'll see where I'll go with this