Repos with recipes to deploy some infrastructure services
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

39 строки
829 B

  1. ---
  2. ##
  3. # PowerDNS Recursor Configuration
  4. ##
  5. pdns_rec_config:
  6. # Listen Address
  7. local-address: "127.0.0.1"
  8. local-port: "53"
  9. # Embedded webserver
  10. webserver: yes
  11. webserver-address: "0.0.0.0"
  12. webserver-port: "8001"
  13. api-key: "powerdns"
  14. # Let the kernel do the distribution of queries
  15. pdns-distributes-queries: "no"
  16. reuseport: "yes"
  17. # We need more mthreads to handle huge traffic load
  18. threads: 5
  19. max-mthreads: 8192
  20. # This tests that we expand lists to comma-separated configuration items
  21. allow-from:
  22. - 127.0.0.0/24
  23. - 127.0.1.0/24
  24. - '2001:DB8:10::/64'
  25. pdns_rec_config_lua: "{{ pdns_rec_config_dir }}/rpz.lua"
  26. pdns_rec_config_lua_file_content: |
  27. rpzMaster("127.0.0.2", "rpz.test", {refresh=30})
  28. pdns_rec_service_overrides:
  29. LimitCORE: infinity