The main Bubble source repository. Contains the Bubble API server, the web UI, documentation and utilities. https://getbubblenow.com
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ů.

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