hello. I have connected WordPress with a Cloudflare tunnel.
After connecting the tunnel, my website was forced to redirect to HTTPS and I’m experiencing an https error like Mixed Contents.
My webserver doesn’t have an https certificate, and my Ingress Rule and Server block are only set to port 80, as I thought the tunnel handles that part.
ingress:
- hostname: tour.example.com
service: http://localhost:80
originRequest:
noTLSVerify: true
- service: http_status:404
I thought that simply changing the URL from http to https on the WordPress backend would fix this, but when I did, the admin page went into a redirect error (302).
Changing the site address from https to http in WordPress admin page will allow access, but will not resolve the https error.
I’m not sure where I’m misunderstanding. Can anyone advise me on how to resolve this issue?
Thank you