c7d0317768
This adds the ability to drive the CGI configuration for nagios via values, similar to the other nagios configuration entities Change-Id: I8e9de21d141e0a87cdda11c4a778abec210277f3
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 ldap file
|
|
AuthUserFile /usr/local/apache2/conf/.htpasswd
|
|
AuthLDAPBindDN ${BIND_DN}
|
|
AuthLDAPBindPassword ${BIND_PASSWORD}
|
|
AuthLDAPURL ${LDAP_URL}
|
|
Require valid-user
|
|
</Proxy>
|
|
</VirtualHost>
|