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

いつものように、投稿して反応を見ると、他の同様の投稿を見つけるのに役立ちます。 :rofl: 例えば

みんな、ありがとう! コンテナの nginx で set_real_ip_from を設定しに行きます!

ただし、RFC1918 の全範囲を対象にします。他の人の参考までに、それは次のようになります:

after_bundle_exec:
  - replace:
    filename: /etc/nginx/conf.d/discourse.conf
    from: "types {"
    to: |
      set_real_ip_from 192.168.0.0/16;
      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 {