プロキシ経由で実IPが認識されなくなりました

最近これについて何かを思い出しましたが、自分も見つかりません。Handling the "chain of trust" of the end user's real IP - #8 by supermathie には Cloudflare テンプレートへのリンクが含まれており、それは良いモデルになると思います。

以下は私が行っていることで、まだ動作しているようです(「Discourse 2026.6.0-latest - GitHub - discourse/discourse: A platform for community discussion. Free, open, simple. · GitHub version 5c507d8359f4d6e8a5d98780c622d51cedbd9bd7」時点)

after_bundle_exec:
  - replace:
    filename: /etc/nginx/conf.d/discourse.conf
    from: "types {"
    to: |
      set_real_ip_from 192.168.1.0/24;
      set_real_ip_from 192.168.11.0/24;
      set_real_ip_from 172.16.0.0/12;
      set_real_ip_from 10.0.0.0/8;
      real_ip_recursive on;
      real_ip_header X-Forwarded-For;
      types {