🇨🇦

  • 1 Post
  • 348 Comments
Joined 1 year ago
cake
Cake day: July 1st, 2023

help-circle
















  • a problem with passing client IP headers from cloudflared

    I’d be willing to bet this is it. My nginx proxy needs special config to pass client IPs correctly to backend services. Otherwise the backend just sees the IP of the proxying cloudflare server.

    proxy_set_header X-Real-IP $http_cf_connecting_ip;

    A cloudflare specific header. The typical $remote_addr I use elsewhere has the cloudflare server’s IP when cloudflared is involved.