Update ordering of auth providers in apache reverse proxy

This updates the ordering of the basic auth providers in the
elasticsearch and nagios chart to check the file provider first
before going out to check the configured ldap server.

Change-Id: I47ff8a1c7b2cefa8425914c5d4d7a76aa8d43216
Signed-off-by: Steve Wilkerson <wilkers.steve@gmail.com>
This commit is contained in:
Steve Wilkerson 2018-06-25 12:33:40 -05:00
parent ce21f6e96d
commit 2dd5bf0594
2 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ limitations under the License.
<Proxy *>
AuthName "Elasticsearch"
AuthType Basic
AuthBasicProvider ldap file
AuthBasicProvider file ldap
AuthUserFile /usr/local/apache2/conf/.htpasswd
AuthLDAPBindDN ${BIND_DN}
AuthLDAPBindPassword ${BIND_PASSWORD}

View File

@ -19,7 +19,7 @@ limitations under the License.
<Proxy *>
AuthName "Nagios"
AuthType Basic
AuthBasicProvider ldap file
AuthBasicProvider file ldap
AuthUserFile /usr/local/apache2/conf/.htpasswd
AuthLDAPBindDN ${BIND_DN}
AuthLDAPBindPassword ${BIND_PASSWORD}