nixos/mastodon: add option trustedProxy

wip/yesman
Izorkin 3 years ago committed by erictapen
parent c36bcb9130
commit f1adea1a94
  1. 12
      nixos/modules/services/web-apps/mastodon.nix

@ -25,6 +25,8 @@ let
ES_ENABLED = if (cfg.elasticsearch.host != null) then "true" else "false";
ES_HOST = cfg.elasticsearch.host;
ES_PORT = toString(cfg.elasticsearch.port);
TRUSTED_PROXY_IP = cfg.trustedProxy;
}
// (if cfg.smtp.authenticate then { SMTP_LOGIN = cfg.smtp.user; } else {})
// cfg.extraConfig;
@ -179,6 +181,16 @@ in {
type = lib.types.str;
};
trustedProxy = lib.mkOption {
description = ''
You need to set it to the IP from which your reverse proxy sends requests to Mastodon's web process,
otherwise Mastodon will record the reverse proxy's own IP as the IP of all requests, which would be
bad because IP addresses are used for important rate limits and security functions.
'';
type = lib.types.str;
default = "127.0.0.1";
};
redis = {
createLocally = lib.mkOption {
description = "Configure local Redis server for Mastodon.";

Loading…
Cancel
Save