pypubsub.yaml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. # General server settings
  2. server:
  3. port: 2069
  4. bind: 0.0.0.0
  5. max_payload_size: 102400 # Max size of each JSON payload
  6. backlog:
  7. size: 0 # Max number of payloads to keep in backlog cache (set to 0 to disable)
  8. max_age: 48h # Maximum age of a backlog item before culling it (set to 0 to never prune on age)
  9. # storage: backlog.json # File-storage for backlog between restarts. Comment out to disable.
  10. # Client settings
  11. clients:
  12. # Payloaders are clients that are allowed to push events (CIDR-based)
  13. payloaders:
  14. - 127.0.0.1/24
  15. - 10.0.0.1/24
  16. # Oldschoolers denotes clients expecting binary events, such as svnwcsub
  17. oldschoolers:
  18. - svnwcsub
  19. # Secure topics are a list of topics that may only be broadcast by certain authenticated users.
  20. # Default is nil, which means all topics are allowed by anyone in the allow CIDRs
  21. secure_topics: ~
  22. # ldap:
  23. # uri: ldaps://ldap.example.org
  24. # user_dn: uid=%s,ou=people,dc=example,dc=org
  25. # base_scope: dc=example,dc=org
  26. # membership_patterns:
  27. # - member=uid=%s,ou=people,dc=example,dc=org:
  28. # - uid=%s
  29. # acl:
  30. # "cn=syadmins,ou=teams,dc=example,dc=org":
  31. # - accounts
  32. # - restricted
  33. # uid=janedoe,ou=people,dc=example,dc=org:
  34. # - accounts
  35. # - contracts
  36. # - hr
  37. #sqs:
  38. # defaultQueue:
  39. # queue: myQueueName.fifo
  40. # region: us-east-1
  41. # delete: true # If set, deletes items from SQS as they are processed. Comment out to keep items in SQS
  42. # # The below can be commented out to use basic ~/.aws/credentials configuration for the user
  43. # key: AWS_ACCESS_KEY_ID
  44. # secret: AWS_SECRET_ACCESS_KEY