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 30 31 32 33 34
|
#
# nsd.tcl --
#
# Sample nsopenssl configuration.
#
# $Header: /cvsroot/aolserver/nsopenssl/nsd.tcl,v 1.5 2001/08/09 01:39:41 scottg Exp $
#
# Applies only to nsopenssl versions prior to 2.x
# See docs at http://scottg.net for updated info on 2.x
ns_section "ns/server/${servername}/module/nsopenssl"
ns_param address $address
ns_param port $httpsport
ns_param hostname $hostname
ns_param CertFile certfile.pem
ns_param KeyFile keyfile.pem
ns_param Protocol All
#ns_param Protocol SSLv2
#ns_param Protocol SSLv3
#ns_param Protocol TLSv1
#ns_param CipherSuite "ALL:!ADH:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+
EXP"
#ns_param SessionCache true
#ns_param SessionCacheSize 512
#ns_param SessionCacheTimeout 300
ns_param ClientVerify true
ns_param CADir ca
ns_param CAFile ca.pem
ns_param Trace false
ns_param RandomFile /some/file
ns_section "ns/server/${servername}/modules"
ns_param nsopenssl ${bindir}/nsopenssl${ext}
|