avto4certbot.conf 530 B

1234567891011121314151617181920212223242526272829
  1. ## config file
  2. ## domains - follow the format! domains email port...
  3. domains=(
  4. "mydomen.ru admin@mydomen.ru 80"
  5. "mydomen2.ru admin@mydomen.ru 80"
  6. );
  7. ## if update - restart this services
  8. services=(
  9. "apache2"
  10. );
  11. ## - nginx sites
  12. sites_nginx="/etc/nginx/sites-enabled";
  13. ## - apache2 sites
  14. sites_apache="/etc/apache2/sites-enabled";
  15. # create new cert or update
  16. path_ssl="/etc/ssl";
  17. path_cert="/etc/letsencrypt/live";
  18. ## temp directory for create request
  19. tmp_dir="/tmp/certbot";
  20. ## log file
  21. log_file="/var/log/syslog";