You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

sitegen.json 1.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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": "letsencrypt",
  11. "letsencryptArgs": [
  12. "--agree-tos",
  13. "--text",
  14. "--renew-by-default",
  15. "--webroot",
  16. "--webroot-path",
  17. "/tmp/acme-challenge/",
  18. "--server",
  19. "https://acme-v01.api.letsencrypt.org/directory",
  20. "certonly"
  21. ]
  22. }
  23. },
  24. {
  25. "patterns": "*",
  26. "command": {
  27. "letsencryptCommand": "letsencrypt",
  28. "letsencryptArgs": [
  29. "--agree-tos",
  30. "--text",
  31. "--renew-by-default",
  32. "--authenticator",
  33. "certbot-dns:auth",
  34. "--server",
  35. "https://acme-v01.api.letsencrypt.org/directory",
  36. "certonly"
  37. ]
  38. }
  39. }
  40. ],
  41. "letsencryptDir": "/etc/letsencrypt/live/",
  42. "certDir": "/etc/ssl/private/"
  43. }