unbound.confd 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. # /etc/conf.d/unbound
  2. # Configuration file
  3. #UNBOUND_CONFFILE="/etc/unbound/unbound.conf"
  4. # PID file
  5. # This is a fallback value which should NOT be changed. If you ever need
  6. # to change PID file, please change value in configuration file instead!
  7. #UNBOUND_PIDFILE="/run/unbound.pid"
  8. # You can use this configuration option to pass additional options to the
  9. # start-stop-daemon, see start-stop-daemon(8) for more details.
  10. # Per default we wait 1000ms after we have started the service to ensure
  11. # that the daemon is really up and running.
  12. #UNBOUND_SSDARGS="--wait 1000"
  13. # The termination timeout (start-stop-daemon parameter "retry") ensures
  14. # that the service will be terminated within a given time (25 + 5 seconds
  15. # per default) when you are stopping the service.
  16. #UNBOUND_TERMTIMEOUT="TERM/25/KILL/5"
  17. # Options to unbound
  18. # See unbound(8) for more details
  19. # Notes:
  20. # * Do not specify another CONFIGFILE but use the variable above to change the location
  21. #UNBOUND_OPTS=""
  22. # If you want to preserve unbound's cache, set the following variable to
  23. # a non-zero value. In this case unbound's cache will be dumped to disk
  24. # before shutdown and loaded right after start.
  25. # To be able to dump and load cache you have to set up keys (use `unbound-control-setup`)
  26. # and need to set 'control-enable: yes' in your configuration!
  27. # WARNING: If you don't know what you are doing you should NOT use this
  28. # feature. Loading the cache with old or wrong data can result in
  29. # old or wrong data being returned to clients.
  30. #UNBOUND_PRESERVE_CACHE=""