1
0

pebble-config.json 731 B

123456789101112131415161718192021222324252627
  1. {
  2. "pebble": {
  3. "listenAddress": "0.0.0.0:14000",
  4. "managementListenAddress": "0.0.0.0:15000",
  5. "certificate": "/test/certs/localhost/cert.pem",
  6. "privateKey": "/test/certs/localhost/key.pem",
  7. "httpPort": 5002,
  8. "tlsPort": 5001,
  9. "ocspResponderURL": "",
  10. "externalAccountBindingRequired": false,
  11. "domainBlocklist": ["blocked-domain.example"],
  12. "retryAfter": {
  13. "authz": 3,
  14. "order": 5
  15. },
  16. "profiles": {
  17. "default": {
  18. "description": "The profile you know and love",
  19. "validityPeriod": 7776000
  20. },
  21. "shortlived": {
  22. "description": "A short-lived cert profile, without actual enforcement",
  23. "validityPeriod": 518400
  24. }
  25. }
  26. }
  27. }