Ошибка 403 после подключения к Nagios. Я использую ldap auth, и эта часть работает, но когда я вхожу в систему, я всегда получаю 403 запрещенный доступ.
nagios apache conf:
# SAMPLE CONFIG SNIPPETS FOR APACHE WEB SERVER
# Last Modified: 11-26-2005
#
# This file contains examples of entries that need
# to be incorporated into your Apache web server
# configuration file. Customize the paths, etc. as
# needed to fit your system.
ScriptAlias /nagios/cgi-bin "/usr/local/nagios/sbin"
<Directory "/usr/local/nagios/sbin">
# SSLRequireSSL
Options ExecCGI
AllowOverride None
Order allow,deny
Allow from all
# Order deny,allow
# Deny from all
# Allow from 127.0.0.1
AuthBasicProvider ldap
AuthzLDAPAuthoritative off
AuthLDAPURL ldap://10.1.1.220:389/OU=UsersVDB,DC=vdb,DC=local?sAMAccountName?sub?(memberOf=*******)
AuthLDAPBindDN cn=******
AuthLDAPBindPassword ********
AuthType Basic
AuthName "Nagios Access LDAP"
Require valid-user
</Directory>
Alias /nagios "/usr/local/nagios/share"
<Directory "/usr/local/nagios/share">
# SSLRequireSSL
Options None
AllowOverride None
Order allow,deny
Allow from all
# Order deny,allow
# Deny from all
# Allow from 127.0.0.1
AuthBasicProvider ldap
AuthzLDAPAuthoritative off
AuthLDAPURL ldap://10.1.1.220:389/OU=UsersVDB,DC=vdb,DC=local?sAMAccountName?sub?(memberOf=C*********)
AuthLDAPBindDN cn=************
AuthLDAPBindPassword *********
AuthType Basic
AuthName "Nagios Access LDAP"
Require valid-user
</Directory>
В моем httpd.conf есть:
ErrorLog logs/error_log
Не знаю почему, но не могу выводить информацию при доступе к моему журналу ошибок ...
[Wed Apr 27 09:30:04 2016] [debug] proxy_util.c(1929): proxy: worker proxy:reverse already initialized
[Wed Apr 27 09:30:04 2016] [debug] proxy_util.c(2025): proxy: initialized single connection worker 0 in child 16583 for (*)
*Was the blank i've put to separe the nagios log and the other*
Что я могу сделать ?