let's say I have a REST service under <https://dom...
# random
p
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
A DNS CName record is probably what you're looking for.
p
will SSL work as expected? I mean, there will be domain mismatch right?
e
you can get a cert with an altname
or (assuming modern tech) allow your server to select the cert to present based on SNI
p
sounds like what we need, thanks! I'll see where I'll go with this