burp.conf.tmpl 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. #
  2. # Burp backup client configuration (Salt managed)
  3. #
  4. mode = client
  5. port = 4971
  6. status_port = 4972
  7. server = {{ burp_server_name }}
  8. password = {{ burp_password }}
  9. cname = {{ grains.id }}
  10. # Where to find all the SSL stuff
  11. ssl_cert_ca = /etc/ssl/certs/ffho-cacert.pem
  12. ssl_cert = /etc/ssl/certs/{{ grains.id }}.cert.pem
  13. ssl_key = /etc/ssl/private/{{ grains.id }}.key.pem
  14. ssl_dhfile = /etc/ssl/dhparam.pem
  15. ssl_peer_cn = {{ burp_server_name }}
  16. # Choose the protocol automagically
  17. protocol = 0
  18. pidfile = /var/run/burp.client.pid
  19. syslog = 1
  20. stdout = 1
  21. progress_counter = 1
  22. # Wait a random number of seconds between 0 and the given number before
  23. # contacting the server on a timed backup.
  24. randomise = 1200
  25. # Set server_can_restore to 0 if you do not want the server to be able to
  26. # initiate a restore.
  27. server_can_restore = 0
  28. # The server should configure what we should back up
  29. server_can_override_includes = 1
  30. # Example syntax for pre/post scripts
  31. #backup_script_pre=/path/to/a/script
  32. #backup_script_post=/path/to/a/script
  33. #restore_script_pre=/path/to/a/script
  34. #restore_script_post=/path/to/a/script