Regarding DNS records, how do I setup one domain, www.example.com, which has HTTP for www on 1.1.1.1 and HTTPS for www on 2.2.2.2?
For clarity:
- HTTP www.example.com resolves to 1.1.1.1
- HTTPS www.example.com resolves to 2.2.2.2
Currently I have:
@ IN A 1.1.1.1
www IN A 1.1.1.1
My current (average) knowledge of DNS records is suggesting that I'm not going to be able to set it up that way. Instead I'll have to create a new a-record to something like secure IN A 2.2.2.2.
Note: Setting HTTPS www.example.com on 1.1.1.1 is not an option, unfortunately.