3 distinguished_name = req_dn
 
   4 x509_extensions = v3_req
 
   7 organizationName = OpenStreetMap
 
   8 commonName = <%= @domains.first %>
 
   9 emailAddress = operations@osmfoundation.org
 
  12 basicConstraints = CA:FALSE
 
  13 keyUsage = digitalSignature, keyEncipherment
 
  14 extendedKeyUsage = serverAuth, clientAuth
 
  15 subjectAltName = @alt_names
 
  18 <% @domains.each_with_index do |d, i| -%>
 
  19 DNS.<%= i + 1 %> = <%= d %>