Wie kann man die Protokollierung der IP-Adresse deaktivieren?

Für zukünftige Suchende: Sie können NGINX vor der Discourse-Instanz verwenden, Sie können X-Real-IP auf eine feste IP 127.0.0.1 setzen:

  location / {
    proxy_pass http://unix:/var/discourse/shared/standalone/nginx.http.sock:;
    proxy_set_header Host $http_host;
    proxy_http_version 1.1;
    proxy_set_header X-Forwarded-Proto https;
    proxy_set_header X-Real-IP 127.0.0.1;
  }

Lassen Sie es nicht weg, da Sie Fehler erhalten und die App nicht starten kann:

Completed 500 Internal Server Error in 149ms (Views: 11.1ms | ActiveRecord: 0.0ms | Allocations: 70970)
PG::InvalidTextRepresentation (ERROR:  invalid input syntax for type inet: "unix:"
LINE 7:     client_ip = 'unix:',
                        ^
)