--- doc/loncapafiles/webserver.piml 2002/01/29 10:32:44 1.1 +++ doc/loncapafiles/webserver.piml 2002/02/02 12:57:10 1.2 @@ -1,7 +1,7 @@ - + -/ +/abc/ + + + + /etc/httpd/conf/httpd.conf @@ -61,11 +65,23 @@ else { /etc/httpd/conf/access.conf This may or may not exist on a system depending on the version of Apache -unverified /etc/httpd/conf/access.conf +unless (-e "") { + print <<; +WARNING! access.conf is not currently present on your system. +This is either due to +* you are missing the Apache software package, +* you have a newer version of Apache that does not + ordinarily install an access.conf +* configuration files are installed in a directory location + different than for +For backwards compatibility, + is being generated. +END +} open OUT,">>"; print OUT 'Include loncapa.conf'."\n"; close OUT; @@ -75,11 +91,23 @@ close OUT; /etc/httpd/conf/srm.conf This may or may not exist on a system depending on the version of Apache -unverified /etc/httpd/conf/srm.conf +unless (-e "") { + print <<; +WARNING! srm.conf is not currently present on your system. +This is either due to +* you are missing the Apache software package, +* you have a newer version of Apache that does not + ordinarily install an srm.conf +* configuration files are installed in a directory location + different than for +For backwards compatibility, + is being generated. +END +} open OUT,">>"; print OUT 'Include loncapa.conf'."\n"; close OUT;