Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627
  1. # Please don't modify this file as your changes might be overwritten with
  2. # the next update.
  3. #
  4. # You can modify 'local.d/url_redirector.conf' to add and merge
  5. # parameters defined inside this section
  6. #
  7. # You can modify 'override.d/url_redirector.conf' to strictly override all
  8. # parameters defined inside this section
  9. #
  10. # See https://rspamd.com/doc/faq.html#what-are-the-locald-and-overrided-directories
  11. # for details
  12. #
  13. # Module documentation can be found at https://rspamd.com/doc/modules/url_redirector.html
  14. url_redirector {
  15. expire = 1d; # 1 day by default
  16. timeout = 10; # 10 seconds by default
  17. nested_limit = 1; # How many redirects to follow
  18. #proxy = "http://example.com:3128"; # Send request through proxy
  19. key_prefix = "rdr:"; # default hash name
  20. check_ssl = false; # check ssl certificates
  21. max_size = 10k; # maximum body to process
  22. .include(try=true,priority=5) "${DBDIR}/dynamic/url_redirector.conf"
  23. .include(try=true,priority=1,duplicate=merge) "$LOCAL_CONFDIR/local.d/url_redirector.conf"
  24. .include(try=true,priority=10) "$LOCAL_CONFDIR/override.d/url_redirector.conf"
  25. }