Fix docs for default headers used by RemoteIp. We only use X-Forwarded-For by default.
authorMark Felder <feld@FreeBSD.org>
Tue, 6 Oct 2020 20:47:11 +0000 (15:47 -0500)
committerMark Felder <feld@FreeBSD.org>
Tue, 6 Oct 2020 20:47:11 +0000 (15:47 -0500)
config/description.exs
docs/configuration/cheatsheet.md

index ac3dfbb2b54939a19af073e5ec2330ab60e74fa4..f6331dd309e68137f5166b16a888145206118100 100644 (file)
@@ -3262,8 +3262,9 @@ config :pleroma, :config_description, [
       %{
         key: :headers,
         type: {:list, :string},
-        description:
-          "A list of strings naming the `req_headers` to use when deriving the `remote_ip`. Order does not matter. Default: `~w[forwarded x-forwarded-for x-client-ip x-real-ip]`."
+        description: """
+          A list of strings naming the `req_headers` to use when deriving the `remote_ip`. Default: `["x-forwarded-for"]`.
+        """
       },
       %{
         key: :proxies,
index 42e5fe80886c4b9d687484f83ebc1aa1e7a509e5..e0194525dd35ef89490ea68eafe1a25861a560c0 100644 (file)
@@ -426,7 +426,7 @@ This will make Pleroma listen on `127.0.0.1` port `8080` and generate urls start
 Available options:
 
 * `enabled` - Enable/disable the plug. Defaults to `false`.
-* `headers` - A list of strings naming the `req_headers` to use when deriving the `remote_ip`. Order does not matter. Defaults to `["x-forwarded-for"]`.
+* `headers` - A list of strings naming the `req_headers` to use when deriving the `remote_ip`. Defaults to `["x-forwarded-for"]`.
 * `proxies` - A list of strings in [CIDR](https://en.wikipedia.org/wiki/CIDR) notation specifying the IPs of known proxies. Defaults to `[]`.
 * `reserved` - Defaults to [localhost](https://en.wikipedia.org/wiki/Localhost) and [private network](https://en.wikipedia.org/wiki/Private_network).