The main Bubble source repository. Contains the Bubble API server, the web UI, documentation and utilities. https://getbubblenow.com
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 

38 líneas
1.7 KiB

  1. #
  2. # Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/
  3. #
  4. ---
  5. # user under which we run acme-tiny and owner of ssl_base_folder
  6. acme_user: acme
  7. # Path where we put all our SSL private keys and certificates
  8. acme_ssl_base_folder: /var/ssl
  9. # Path where we tell acme-tiny to put our challenges. Writable by acme_user and readable by
  10. # www-data (nginx)
  11. acme_challenges_folder_path: "{{ acme_ssl_base_folder }}/challenges"
  12. # A list of *simple* domains to run acme_tiny on. Example: "www.example.com"
  13. # For each of those domains, a CSR with a single domain will be created and processed.
  14. acme_domain: "{{ server_name }}"
  15. # A list of domains that are grouped in the same request.
  16. # The generated CSR will use SAN openssl configuration when generating the CSR.
  17. # See acme_tiny README.
  18. # Each item in this list is a hash with the same structure as _acme_multi_domains_item.
  19. acme_multi_domains: []
  20. # Example: {'base_name': 'example.com', domains: ['example.com', 'www.example.com']}
  21. # base_name will be the main name of the cert, that is, the name of the folder containing its
  22. # keys and certs as well as the name of the nginx snippet.
  23. # The first domain of "domains" is the "main" host of the resulting cert.
  24. _acme_multi_domains_item:
  25. base_name: ''
  26. domains: []
  27. # If set, we will fetch existing SSL data from our specified host name (from the inventory)
  28. # **instead** of going through with ACME challenges. You should use this option when you're in the
  29. # process of transferring a host and you want to avoid the downtime between the moment where you
  30. # change your DNS record and the moment where you can proceed with a proper challenge.
  31. acme_copy_from_hostname: ''