#143 Disable mod_auth_openidc with too old Apache versions
Merged 7 years ago by puiterwijk. Opened 7 years ago by puiterwijk.
puiterwijk/ipsilon el6-no-oidc  into  master

file modified
+4 -2
@@ -20,8 +20,10 @@ 

  LoadModule rewrite_module modules/mod_rewrite.so

  LoadModule version_module modules/mod_version.so

  LoadModule wsgi_module modules/mod_wsgi.so

- # openidc needs to be before mellon: https://bugzilla.redhat.com/show_bug.cgi?id=1332729

- LoadModule auth_openidc_module modules/mod_auth_openidc.so

+ <IfVersion >= 2.4>

+     # openidc needs to be before mellon: https://bugzilla.redhat.com/show_bug.cgi?id=1332729

+     LoadModule auth_openidc_module modules/mod_auth_openidc.so

+ </IfVersion>

  

  Listen ${HTTPADDR}:${HTTPPORT} https

  SSLCertificateFile "${CERTROOT}/${NAME}.pem"

Apache 2.2 is used for EL6, which does not have mod_auth_openidc.
So let's disable that, so that the other tests will pass.

Signed-off-by: Patrick Uiterwijk puiterwijk@redhat.com

rebased

7 years ago

Pull-Request has been merged by puiterwijk

7 years ago