Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

sitegen.json 870B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "siteConfDir": "/etc/apache2/sites-available/",
  3. "siteDir": "/var/",
  4. "confDir": "/etc/sitegen/",
  5. "certRenewTime": 5356800,
  6. "letsencryptCommands": [
  7. {
  8. "patterns": "*",
  9. "command": {
  10. "letsencryptCommand": "certbot",
  11. "letsencryptArgs": [
  12. "--agree-tos",
  13. "--text",
  14. "--renew-by-default",
  15. "--webroot",
  16. "--webroot-path",
  17. "/tmp/acme-challenge/",
  18. "certonly"
  19. ]
  20. }
  21. },
  22. {
  23. "patterns": "*",
  24. "command": {
  25. "letsencryptCommand": "certbot",
  26. "letsencryptArgs": [
  27. "--agree-tos",
  28. "--text",
  29. "--renew-by-default",
  30. "--authenticator",
  31. "certbot-dns:auth",
  32. "certonly"
  33. ]
  34. }
  35. }
  36. ],
  37. "letsencryptDir": "/etc/letsencrypt/live/",
  38. "certDir": "/etc/ssl/private/"
  39. }