From 7d05d9fdea7eaa21f1fa3828621e36456b3764a0 Mon Sep 17 00:00:00 2001 From: lars Date: Fri, 10 Nov 2006 09:05:44 +0000 Subject: [PATCH] template file for ssl certificate creation added --- conf-examples/apache2_dav.conf | 2 +- conf-examples/ssl-cert.conf | 65 ++++++++++++++++++++++++++++++++++ 2 files changed, 66 insertions(+), 1 deletion(-) create mode 100644 conf-examples/ssl-cert.conf diff --git a/conf-examples/apache2_dav.conf b/conf-examples/apache2_dav.conf index 0cb3c62..5c2e6f2 100644 --- a/conf-examples/apache2_dav.conf +++ b/conf-examples/apache2_dav.conf @@ -7,5 +7,5 @@ # a longer value than the default (120) help for high-latency networks DavMinTimeout 600 # include the configuration file, that will contain "include" lines for every share - Include /etc/cryptobox/apache2_dav-includes.conf + Include /etc/cryptobox/apache2-include.conf diff --git a/conf-examples/ssl-cert.conf b/conf-examples/ssl-cert.conf new file mode 100644 index 0000000..a1a1a63 --- /dev/null +++ b/conf-examples/ssl-cert.conf @@ -0,0 +1,65 @@ +# +# OpenSSL configuration file. +# + +# Establish working directory. + +dir = . + +[ ca ] +default_ca = CA_default + +[ CA_default ] +default_days = 3650 +default_md = md5 +policy = policy_match +#serial = $dir/serial +#database = $dir/index.txt +#new_certs_dir = $dir/newcert +#certificate = $dir/cacert.pem +#private_key = $dir/private/cakey.pem +#preserve = no +#email_in_dn = no +#nameopt = default_ca +#certopt = default_ca + +[ policy_match ] +countryName = match +stateOrProvinceName = match +organizationName = match +organizationalUnitName = match +commonName = supplied +emailAddress = optional + +[ req ] +default_bits = 1024 # Size of keys +default_keyfile = stunnel.pem # name of generated keys +default_md = md5 # message digest algorithm +distinguished_name = req_distinguished_name + +[ req_distinguished_name ] +# Variable name Prompt string +#---------------------- ---------------------------------- +0.organizationName = Organization Name (company) +organizationalUnitName = Organizational Unit Name (department, division) +emailAddress = Email Address +emailAddress_max = 40 +localityName = Locality Name (city, district) +stateOrProvinceName = State or Province Name (full name) +#countryName = Country Name (2 letter code) +#countryName_min = 2 +#countryName_max = 2 +#commonName = Common Name (hostname, IP, or your name) +#commonName_max = 64 + +# Default values for the above, for consistency and less typing. +# Variable name Value +#------------------------------ ------------------------------ +0.organizationName_default = CryptoBox +organizationalUnitName_default = s.l. +localityName_default = Kugelmugel +stateOrProvinceName_default = Metropolis +emailAddress_default = info@systemausfall.org + + +