Harry, Hard code websites //URL or use your own redirect mapping.
Xlovecam.com websites will honor either a http or https GET request indefinitely. No 301's are necessary. http and https use seperate server ports.
Configuring HTTPS servers
Code:
server {
listen 80;
listen 443 ssl;
# force https-redirects
if ($scheme = http) {
return 301 https://$server_name$request_uri;
}
}
2 ways to do it in Nginx
You can 'booger a-patchy' this way they are saying ...
https://httpd.apache.org/docs/2.4/bind.html