Method: #lets_encrypt_tls
- Defined in:
- lib/falcon/environments/lets_encrypt_tls.rb
#lets_encrypt_tls ⇒ Object
A Lets Encrypt SSL context environment.
Derived from #tls.
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
# File 'lib/falcon/environments/lets_encrypt_tls.rb', line 31 environment(:lets_encrypt_tls, :tls) do # The Lets Encrypt certificate store path. # @parameter [String] lets_encrypt_root '/etc/letsencrypt/live' # The public certificate path. # @attribute [String] ssl_certificate_path do File.join(lets_encrypt_root, , "fullchain.pem") end # The private key path. # @attribute [String] ssl_private_key_path do File.join(lets_encrypt_root, , "privkey.pem") end end |