Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

sitegen.json 924B

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