You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

lua_script.conf 565B

12345678910111213141516171819202122232425
  1. options = {
  2. pidfile = "{= env.TMPDIR =}/rspamd.pid"
  3. }
  4. logging = {
  5. type = "file",
  6. level = "debug"
  7. filename = "{= env.TMPDIR =}/rspamd.log"
  8. }
  9. worker {
  10. type = normal
  11. bind_socket = "{= env.LOCAL_ADDR =}:{= env.PORT_NORMAL =}"
  12. count = 1
  13. task_timeout = 60s;
  14. }
  15. worker {
  16. type = controller
  17. bind_socket = "{= env.LOCAL_ADDR =}:{= env.PORT_CONTROLLER =}"
  18. count = 1
  19. secure_ip = ["127.0.0.1", "::1"];
  20. stats_path = "{= env.TMPDIR =}/stats.ucl"
  21. }
  22. lua = "{= env.TESTDIR =}/lua/test_coverage.lua";
  23. lua = "{= env.LUA_SCRIPT =}";