From 2f304d0a0dd3c86b0445c26220c8e6c37f6a62e6 Mon Sep 17 00:00:00 2001 From: Jason Stephenson Date: Thu, 18 May 2017 17:21:17 -0400 Subject: [PATCH] Fix case of PerlSetEnv directives in the README. 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 --- README | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README b/README index 580e62c..58fe229 100644 --- 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 -------------------------------------------------------------------- -- 2.43.2