I've been trying to redirect web traffic from HTTP to HTTPS by adding the line to the httpd.conf file:
Redirect permanent / https://100.100.100.100
but to no avail. The browser response is Firefox has detected that the server is redirecting the request for this address in a way that will never complete.
I understand that it works for domain names but my server doesn't use one. Is there any way around this/what am I doing wrong.
curl -I http://100.100.100.100to check what response code you get back without having to worry about caching. – Ladadadada Jan 23 at 22:53