내부 IP 주소 172.17.0.1에서 스팸이 발생하고 있나요?

사용자 IP를 확인하면 모두 해당 주소에서 온 것이 맞죠?

리버스 프록시(예: nginx-proxy)를 사용 중이죠?

app.yml 파일에 다음과 같은 내용을 추가해야 합니다.

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