Fix case of PerlSetEnv directives in the README.
authorJason Stephenson <jason@sigio.com>
Thu, 18 May 2017 21:21:17 +0000 (17:21 -0400)
committerJason Stephenson <jason@sigio.com>
Thu, 18 May 2017 21:21:17 +0000 (17:21 -0400)
It turns out that uppercase or mixed case both work, but mixed case is
used in the Mod Perl documentation examples, so we'll go with mixed
case in our README examples.

Signed-off-by: Jason Stephenson <jason@sigio.com>
README

diff --git a/README b/README
index 580e62c..58fe229 100644 (file)
--- a/README
+++ b/README
@@ -359,8 +359,8 @@ Apache 2.2
     PerlResponseHandler Plack::Handler::Apache2
     PerlSetVar psgi_app /home/opensrf/NCIPServer/bin/ncip_dancing.pl
     PerlSetEnv NCIP_CONFIG_DIR "/home/opensrf/NCIPServer/t/config_sample"
-    PerlSetENV OILS_NCIP_CONFIG /openils/conf/oils_ncip.xml
-    PerlSetENV DANCER_ENVIRONMENT "production"
+    PerlSetEnv OILS_NCIP_CONFIG /openils/conf/oils_ncip.xml
+    PerlSetEnv DANCER_ENVIRONMENT "production"
     Order deny,allow
     Deny from all
     Allow from 10.0.0.0/8
@@ -378,9 +378,9 @@ Apache 2.4
     SetHandler perl-script
     PerlResponseHandler Plack::Handler::Apache2
     PerlSetVar psgi_app /home/opensrf/NCIPServer/bin/ncip_dancing.pl
-    PerlSetENV NCIP_CONFIG_DIR /home/opensrf/NCIPServer/t/config_sample
-    PerlSetENV OILS_NCIP_CONFIG /openils/conf/oils_ncip.xml
-    PerlSetENV DANCER_ENVIRONMENT "production"
+    PerlSetEnv NCIP_CONFIG_DIR /home/opensrf/NCIPServer/t/config_sample
+    PerlSetEnv OILS_NCIP_CONFIG /openils/conf/oils_ncip.xml
+    PerlSetEnv DANCER_ENVIRONMENT "production"
     Require ip 10.0.0.0/8
  </Location>
 --------------------------------------------------------------------