
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>
30 lines
1013 B
Smarty
30 lines
1013 B
Smarty
{{/*
|
|
Copyright 2017 The Openstack-Helm Authors.
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/}}
|
|
|
|
<VirtualHost *:80>
|
|
<Location />
|
|
ProxyPass http://localhost:${NAGIOS_PORT}/
|
|
ProxyPassReverse http://localhost:${NAGIOS_PORT}/
|
|
</Location>
|
|
<Proxy *>
|
|
AuthName "Nagios"
|
|
AuthType Basic
|
|
AuthBasicProvider file ldap
|
|
AuthUserFile /usr/local/apache2/conf/.htpasswd
|
|
AuthLDAPBindDN ${BIND_DN}
|
|
AuthLDAPBindPassword ${BIND_PASSWORD}
|
|
AuthLDAPURL ${LDAP_URL}
|
|
Require valid-user
|
|
</Proxy>
|
|
</VirtualHost>
|