#Path to SSLeay / OpenSSL executable:
SSL="/usr/local/openssl-0.9.3/bin/openssl"

#OpenSSL Configfile (here: $CNF) needs the same path names!

#for filenames etc.
#usually the string "-CA" will be appended, so don't call you CA
#"myCA", since this would result in a "myCA-CA" ;)
CANAME="myTest1"

#CA directory:
CA="/usr/local/openssl-0.9.3/${CANAME}-CA"
#certs :)
NEW_CERTS_DIR="$CA/newcerts"
CPATH="$CA/certs"
#filenames:
KEY="$CPATH/$1.key"
CSR="$CPATH/$1.csr"
CRT="$CPATH/$1.crt"

#uses with various default extensions like .pem, .txt, .der
CAKEY="$CA/private/${CANAME}-key"	#the private key of the ca
CACERT="$CA/${CANAME}-cacert"		#the certificate of the ca
CAREQ="$CA/${CANAME}-careq"		#the request file
CADERURL="${CANAME}-cacert.der"		#included in .shtml file
CAADMIN_MAIL="steffen@tfh-berlin.de"		#eMail Adress "default"

#crl name
CRL="$CA/${CANAME}-ca.crl"

#keep old crls in:
#(used by OpenSSL too!!)
CRLDIR="$CA/crl"

#config
CNF="$CA/${CANAME}-CA.cnf"
#  ( This file is used by SSLeay / OpenSSL to define the rules of operation )

#local WWW-Dir
CA_WWW_DIR="/usr/local/Apache/documents/${CANAME}-CA"

NS_BASE_URL="https://lnx05.tfh-berlin.de/${CANAME}-CA/"

#REMOVE THIS LINE IF CONFIG IS OK:
#STOP="TRUE"

