Fisheye: Tag 1.1 refers to a dead (removed) revision in file `openacs-4/packages/acs-core-docs/www/files/analog.cfg.txt'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1 refers to a dead (removed) revision in file `openacs-4/packages/acs-core-docs/www/files/config.tcl.txt'. Fisheye: No comparison available. Pass `N' to diff? Index: openacs-4/packages/acs-core-docs/www/files/dbstart.txt =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/files/dbstart.txt,v diff -u -r1.2 -r1.3 --- openacs-4/packages/acs-core-docs/www/files/dbstart.txt 30 Nov 2002 17:16:33 -0000 1.2 +++ openacs-4/packages/acs-core-docs/www/files/dbstart.txt 28 Apr 2003 04:02:44 -0000 1.3 @@ -1,4 +1,3 @@ -: # # $Header$ dbstart.sh.pp Copyr (c) 1991 Oracle # Modified 6/1/2000: Fixed bug determining version of Oracle by bquinn@arsdigita.com Fisheye: Tag 1.1 refers to a dead (removed) revision in file `openacs-4/packages/acs-core-docs/www/files/emacs.txt'. Fisheye: No comparison available. Pass `N' to diff? Index: openacs-4/packages/acs-core-docs/www/files/openacs4.tcl.txt =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/files/openacs4.tcl.txt,v diff -u -r1.5 -r1.6 --- openacs-4/packages/acs-core-docs/www/files/openacs4.tcl.txt 30 Nov 2002 17:16:33 -0000 1.5 +++ openacs-4/packages/acs-core-docs/www/files/openacs4.tcl.txt 28 Apr 2003 04:02:44 -0000 1.6 @@ -16,11 +16,11 @@ # your OS settings, but you may have to replace them # with sane values if it guesses wrong! set hostname [ns_info hostname] -set address [ns_info address] +set address 127.0.0.1 -set server "birdnotes" +set server "server0" set db_name $server -set servername "Birdnotes.net Community" +set servername "New OpenACS Installation - Development" # User account # This is used in 2 places @@ -47,14 +47,7 @@ set pageroot ${serverroot}/www set directoryfile index.tcl,index.adp,index.html,index.htm -# -# nsssl: Only loads if keyfile.pem and certfile.pem exist. -# If you are using SSL, make sure you have these dirs and files (refer -# to the AOLserver docs) -set sslkeyfile ${homedir}/servers/${server}/modules/nsssl/keyfile.pem -set sslcertfile ${homedir}/servers/${server}/modules/nsssl/certfile.pem - # # Global server parameters # @@ -138,7 +131,7 @@ ns_param defaultparser fancy ns_section ns/server/${server}/adp/parsers -ns_param fancy ".adp" +ns_param fancy ".adp" # # Socket driver module (HTTP) -- nssock @@ -149,28 +142,76 @@ ns_param hostname $hostname ns_param port $httpport -# -# Socket driver module (HTTPS) -- nsssl -# -# nsssl does not load unless sslkeyfile/sslcertfile exist (above). -# -ns_section ns/server/${server}/module/nsssl -ns_param port $httpsport -ns_param hostname $hostname -ns_param address $address -ns_param keyfile $sslkeyfile -ns_param certfile $sslcertfile +ns_section "ns/server/${server}/module/nsopenssl" +# Typically where you store your certificates +# Defaults to $AOLSERVER/servers/${servername}/modules/nsopenssl +#ns_param ModuleDir ${homedir}/servers/${server}/modules/nsopenssl +ns_param ModuleDir ${homedir}/certs + +# NSD-driven connections: +ns_param ServerPort $httpsport +ns_param ServerHostname $hostname +ns_param ServerAddress $address +ns_param ServerCertFile test-cert.pem +ns_param ServerKeyFile test-key.pem +ns_param ServerProtocols "SSLv2, SSLv3, TLSv1" +ns_param ServerCipherSuite "ALL:!ADH:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP" +ns_param ServerSessionCache false +ns_param ServerSessionCacheID 1 +ns_param ServerSessionCacheSize 512 +ns_param ServerSessionCacheTimeout 300 +ns_param ServerPeerVerify true +ns_param ServerPeerVerifyDepth 3 +ns_param ServerCADir ca +ns_param ServerCAFile ca.pem +ns_param ServerTrace false + +# For listening and accepting SSL connections via Tcl/C API: +ns_param SockServerCertFile test-cert.pem +ns_param SockServerKeyFile test-key.pem +ns_param SockServerProtocols "SSLv2, SSLv3, TLSv1" +ns_param SockServerCipherSuite "ALL:!ADH:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP" +ns_param SockServerSessionCache false +ns_param SockServerSessionCacheID 2 +ns_param SockServerSessionCacheSize 512 +ns_param SockServerSessionCacheTimeout 300 +ns_param SockServerPeerVerify true +ns_param SockServerPeerVerifyDepth 3 +ns_param SockServerCADir internal_ca +ns_param SockServerCAFile internal_ca.pem +ns_param SockServerTrace false + +# Outgoing SSL connections +ns_param SockClientCertFile test-cert.pem +ns_param SockClientKeyFile test-key.pem +ns_param SockClientProtocols "SSLv2, SSLv3, TLSv1" +ns_param SockClientCipherSuite "ALL:!ADH:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP" +ns_param SockClientSessionCache false +ns_param SockClientSessionCacheID 3 +ns_param SockClientSessionCacheSize 512 +ns_param SockClientSessionCacheTimeout 300 +ns_param SockClientPeerVerify true +ns_param SockServerPeerVerifyDepth 3 +ns_param SockClientCADir ca +ns_param SockClientCAFile ca.pem +ns_param SockClientTrace false + +# OpenSSL library support: +#ns_param RandomFile /some/file +ns_param SeedBytes 1024 + + # # Database drivers # The database driver is specified here. PostgreSQL driver being loaded. # Make sure you have the driver compiled and put it in {aolserverdir}/bin # ns_section "ns/db/drivers" if { $database == "oracle" } { - ns_param ora8 ${bindir}/ora8.so + ns_param ora8 ${bindir}/ora8.so } else { - ns_param postgres ${bindir}/postgres.so ;# Load PostgreSQL driver + ns_param postgres ${bindir}/postgres.so ;# Load PostgreSQL driver } # @@ -183,9 +224,9 @@ # and even different different database servers. # ns_section ns/db/pools -ns_param pool1 "Pool 1" -ns_param pool2 "Pool 2" -ns_param pool3 "Pool 3" +ns_param pool1 "Pool 1" +ns_param pool2 "Pool 2" +ns_param pool3 "Pool 3" ns_section ns/db/pool/pool1 ns_param maxidle 1000000000 @@ -261,7 +302,7 @@ ns_param logcombined true #ns_param logrefer false #ns_param loguseragent false -ns_param maxbackup 5 +ns_param maxbackup 1000 ns_param rollday * ns_param rollfmt %Y-%m-%d-%H:%M ns_param rollhour 0 @@ -305,20 +346,11 @@ ns_param nscache ${bindir}/nscache.so ns_param nsrewrite ${bindir}/nsrewrite.so ns_param nsxml ${bindir}/nsxml.so -#ns_param nsfts ${bindir}/nsfts.so +ns_param nsopenssl ${bindir}/nsopenssl.so +ns_param nsfts ${bindir}/nsfts.so #ns_param nsperm ${bindir}/nsperm.so #ns_param nscgi ${bindir}/nscgi.so #ns_param nsjava ${bindir}/libnsjava.so -# -## nsssl: loads only if requisite files already exist (see top of this -# file). -# -if { [file exists $sslcertfile] && [file exists $sslkeyfile] } { - ns_param nsssl ${bindir}/nsssle.so -} else { - ns_log warning "nsd.tcl: nsssl not loaded because key/cert files do not exist." -} - ns_log notice "nsd.tcl: finished reading config file." Fisheye: Tag 1.1 refers to a dead (removed) revision in file `openacs-4/packages/acs-core-docs/www/files/package-documentation.xml'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1 refers to a dead (removed) revision in file `openacs-4/packages/acs-core-docs/www/files/qmail.rc.txt'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1 refers to a dead (removed) revision in file `openacs-4/packages/acs-core-docs/www/files/run.txt'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1 refers to a dead (removed) revision in file `openacs-4/packages/acs-core-docs/www/files/tcp.smtp.txt'. Fisheye: No comparison available. Pass `N' to diff?