From: Jason Stephenson Date: Thu, 18 May 2017 21:18:59 +0000 (-0400) Subject: Fix typo in previous commit. X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=539310698457bbfbb6c2d6b91de01918ebd313dc;p=working%2FNCIPServer.git Fix typo in previous commit. The "env" in PerlSetENV needs to be all upper case. It wasn't. Guess I should have had someone else review it before committing it. Signed-off-by: Jason Stephenson --- diff --git a/README b/README index 5fa732a..580e62c 100644 --- a/README +++ b/README @@ -360,7 +360,7 @@ Apache 2.2 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 DANCER_ENVIRONMENT "production" Order deny,allow Deny from all Allow from 10.0.0.0/8 @@ -380,7 +380,7 @@ Apache 2.4 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 DANCER_ENVIRONMENT "production" Require ip 10.0.0.0/8 --------------------------------------------------------------------