anubis.confd 788 B

123456789101112131415161718192021222324
  1. # The URL of the service that Anubis should forward valid requests to. Supports
  2. # Unix domain sockets.
  3. #ANUBIS_TARGET="http://localhost:3923"
  4. #ANUBIS_TARGET="unix:///path/to/socket"
  5. # The network address that Anubis listens on.
  6. #
  7. # If unset, listen on /run/anubis_${instance}/anubis.sock Unix socket instead.
  8. #ANUBIS_BIND_PORT=":8923"
  9. # The network address that Anubis serves Prometheus metrics on.
  10. #
  11. # If unset, listen on /run/anubis_${instance}/metrix.sock Unix socket instead.
  12. #ANUBIS_METRICS_BIND_PORT=":9090"
  13. # The difficulty of the challenge, or the number of leading zeroes that must be
  14. # in successful responses.
  15. #ANUBIS_DIFFICULTY=4
  16. # Additional command-line options for Anubis.
  17. #ANUBIS_OPTS=""
  18. # Configure the user[:group] Anubis will run as.
  19. #command_user="anubis:anubis"