summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Felder <feld@FreeBSD.org>2020-10-06 17:29:56 -0500
committerMark Felder <feld@FreeBSD.org>2020-10-06 17:29:56 -0500
commite08eb4aba07ce843f3f1149b8c70fb6b4d855c44 (patch)
tree341a7e72ee5d2656861a9a1e7f5d41228d1cdf15
parent7a2ed2fc90dd16a5ef45c4dd44a6e09bba035299 (diff)
Don't leak internal variables in the docs. They're useless to users.
-rw-r--r--config/description.exs2
-rw-r--r--docs/configuration/cheatsheet.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/config/description.exs b/config/description.exs
index 2c7d91ccc..71cb5d913 100644
--- a/config/description.exs
+++ b/config/description.exs
@@ -3263,7 +3263,7 @@ 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`. Default: `["x-forwarded-for"]`.
+ A list of strings naming the HTTP headers to use when deriving the true client IP. Default: `["x-forwarded-for"]`.
"""
},
%{
diff --git a/docs/configuration/cheatsheet.md b/docs/configuration/cheatsheet.md
index 22333c4f8..7f1dc0fe6 100644
--- a/docs/configuration/cheatsheet.md
+++ b/docs/configuration/cheatsheet.md
@@ -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`. Defaults to `["x-forwarded-for"]`.
+* `headers` - A list of strings naming the HTTP headers to use when deriving the true client IP address. Defaults to `["x-forwarded-for"]`.
* `proxies` - A list of upstream proxy IP subnets in CIDR notation. Defaults to `[]`. IPv4 entries without a bitmask will be assumed to be /32 and IPv6 /128.
* `reserved` - A list of reserved IP subnets in CIDR notation which should be ignored if found in `headers`. Defaults to `["127.0.0.0/8", "::1/128", "fc00::/7", "10.0.0.0/8", "172.16.0.0/12", "192.168.0.0/16"]`.