diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2017-02-11 13:39:54 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2017-02-11 13:39:54 +0000 |
commit | c5e00c4bf1013a722b3cd313b1748e61bdf21d36 (patch) | |
tree | 9f57f8c4dc7b11ad7c2647524369472b3d9bc2a0 /conf/modules.d/url_redirector.conf | |
parent | 20cf92769ad835a1366cac5a3da73147b71b8a01 (diff) | |
download | rspamd-c5e00c4bf1013a722b3cd313b1748e61bdf21d36.tar.gz rspamd-c5e00c4bf1013a722b3cd313b1748e61bdf21d36.zip |
[Conf] Add default config for url redirector plugin
Diffstat (limited to 'conf/modules.d/url_redirector.conf')
-rw-r--r-- | conf/modules.d/url_redirector.conf | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/conf/modules.d/url_redirector.conf b/conf/modules.d/url_redirector.conf new file mode 100644 index 000000000..a95277efc --- /dev/null +++ b/conf/modules.d/url_redirector.conf @@ -0,0 +1,28 @@ +# Please don't modify this file as your changes might be overwritten with +# the next update. +# +# You can modify '$LOCAL_CONFDIR/rspamd.conf.local.override' to redefine +# parameters defined on the top level +# +# You can modify '$LOCAL_CONFDIR/rspamd.conf.local' to add +# parameters defined on the top level +# +# For specific modules or configuration you can also modify +# '$LOCAL_CONFDIR/local.d/file.conf' - to add your options or rewrite defaults +# '$LOCAL_CONFDIR/override.d/file.conf' - to override the defaults +# +# See https://rspamd.com/doc/tutorials/writing_rules.html for details + +url_redirector { + expire = 1d; # 1 day by default + timeout = 10; # 10 seconds by default + nested_limit = 1; # How many redirects to follow + #proxy = "http://example.com:3128"; # Send request through proxy + key_prefix = "rdr:"; # default hash name + check_ssl = false; # check ssl certificates + max_size = 10k; # maximum body to process + + .include(try=true,priority=5) "${DBDIR}/dynamic/url_redirector.conf" + .include(try=true,priority=1,duplicate=merge) "$LOCAL_CONFDIR/local.d/url_redirector.conf" + .include(try=true,priority=10) "$LOCAL_CONFDIR/override.d/url_redirector.conf" +} |