From 0d5636809fbb11784edc37fd611ac1471c9e1f29 Mon Sep 17 00:00:00 2001 From: Dan Scott Date: Wed, 28 Sep 2011 23:06:19 -0400 Subject: [PATCH] Remove an installation step: Listen 443 uncommenting Every distribution known to man ships Apache listening on port 443, so installers always have to comment out the "Listen 443" directive - so why not just comment it out ourselves and save a step in the installation instructions? Signed-off-by: Dan Scott --- Open-ILS/examples/apache/eg.conf | 2 +- README | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/Open-ILS/examples/apache/eg.conf b/Open-ILS/examples/apache/eg.conf index dbcd0c419d..77b5f408c1 100644 --- a/Open-ILS/examples/apache/eg.conf +++ b/Open-ILS/examples/apache/eg.conf @@ -102,7 +102,7 @@ ExpiresByType text/css "access plus 50 minutes" # ---------------------------------------------------------------------------------- # Set up our SSL virtual host # ---------------------------------------------------------------------------------- -Listen 443 +#Listen 443 NameVirtualHost *:443 DocumentRoot "/openils/var/web" diff --git a/README b/README index 41025ebc8d..108fb0ba20 100644 --- a/README +++ b/README @@ -162,8 +162,6 @@ and browser during testing and development a. Replace `Allow from 10.0.0.0/8` with `Allow from all` (to enable access to the offline upload / execute interface from any workstation on any network - note that you must secure this for a production instance) - b. Comment the line `Listen 443` as it conflicts with the same declaration - elsewhere in the Apache configuration files. 4. Change the user for the Apache server. * (Debian and Ubuntu): As the root user, edit `/etc/apache2/envvars`. Change `export APACHE_RUN_USER=www-data` to -- 2.43.2