summaryrefslogtreecommitdiff
path: root/config/defaults.yml
blob: 54e417825ab4b7b2725724e89a09dacaec6ebaa3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
dev_ca: &dev_ca
  client_ca_key: "./certs/test/files/ca.key"
  client_ca_cert: "./certs/test/files/ca.crt"
  ca_key_password: nil

cert_options: &cert_options
  client_cert_lifespan: 2
  client_cert_bit_size: 2024
  client_cert_hash: "SHA256"
  free_certs_enabled: true
  free_cert_postfix: "*Free Cert*"

development:
  <<: *dev_ca
  <<: *cert_options
  admins: [admin, admin2]
  domain: develop.me

test:
  <<: *dev_ca
  <<: *cert_options
  admins: [admin, admin2]
  domain: test.me
  

production:
  <<: *cert_options
  admins: []
  domain: deploy.me