[LON-CAPA-cvs] cvs: loncom / loncapa_apache.conf
foxr
lon-capa-cvs@mail.lon-capa.org
Tue, 29 Jun 2004 10:28:17 -0000
foxr Tue Jun 29 06:28:17 2004 EDT
Modified files:
/loncom loncapa_apache.conf
Log:
Add configuration variables for certificate request generation and
Certificate generation. This is just as convenient a place to put these
as any I suppose. I thought about putting them in the scripts themselves,
but centralizing configuration variables makes much more sense to me.
Convince me otherwise and I'll back out this change.
Index: loncom/loncapa_apache.conf
diff -u loncom/loncapa_apache.conf:1.85 loncom/loncapa_apache.conf:1.86
--- loncom/loncapa_apache.conf:1.85 Fri Jun 18 11:13:07 2004
+++ loncom/loncapa_apache.conf Tue Jun 29 06:28:16 2004
@@ -1,7 +1,7 @@
##
## loncapa_apache.conf -- Apache HTTP LON-CAPA configuration file
##
-## $Id: loncapa_apache.conf,v 1.85 2004/06/18 15:13:07 www Exp $
+## $Id: loncapa_apache.conf,v 1.86 2004/06/29 10:28:16 foxr Exp $
##
#
@@ -935,6 +935,8 @@
PerlSetVar lonhttpdPort 8080
+#----------------------------------------------------------------------------
+#
# Parameters used by secure lond/lonc
#
@@ -978,6 +980,25 @@
# Did we mention that the file described above must have
# permissions really locked down so that it can't be stolen?
+#-------------------------------------------------------------------------
+
+# Parameters that define where all the ssl stuff is that's needed
+# to generate certificate requests and, on a system that's a CA
+# the certificate authority.
+#
+# SSLProgram -> Path to the openssl command
+# SSLDirectory -> Directory containing ssl configuration files etc.
+# SSLCAConfig -> Name of the SSL config file for the certificate
+# Authority.
+# The following are good for the loncapa redhat installs and
+# the loncapa certificate authority system:
+#
+PerlSetVar SSLProgram /usr/bin/openssl
+PerlSetVar SSLDirectory /usr/share/ssl
+PerlSetVar SSLCAConfig loncapaca
+
+#-------------------------------------------------------------------------
+