Files
check_mk/zzz_check_mk.conf
Darin Perusich 07362fa4d2 - update to 1.2.0p1
+ Core
    Added macros $DATE$, $SHORTDATETIME$ and $LONGDATETIME$' to notification macros
  + Checks & Agents
    FIX: diskstat: handle output 'No Devices Found' - avoiding exception
  + Multisite
    FIX: fix severe exception in all views on older Python versions (like RedHat 5.5).
  +WATO
    FIX: fix order of rule execution: subfolders now take precedence as they should.
-- 1.2.0 changes
  + Setup
      FIX: fix building of RPM packages (due to mk_mysql, mk_postgres)
  + Core
      FIX: fix error message in case of duplicate custom check
  + WATO
      FIX: add missing icon on cluster hosts to WATO in Multisite views
      FIX: fix search field in host table if more than 10 hosts are shown
      FIX: fix bulk edit and form properties (visibility of attributes was broken)
      FIX: fix negating hosts in rule editor
  + Checks & Agents
      fileinfo: added this check to Linux agent. Simply put your file patterns into /etc/check_mk/fileinfo.cfg for configuration.
      mysql.sessions: New check for MySQL sessions (need new plugin mk_mysql)
      mysql.innodb_io: New check for Disk-IO of InnoDB
      mysql_capacity: New check for used/free capacity of MySQL databases
      postgres_sessions: New check for PostgreSQL number of sessions
      postgres_stat_database: New check for PostgreSQL database statistics
      postgres_stat_database.size: New check for PostgreSQL database size
      FIX: hpux_if: convert_to_hex was missing on non-SNMP-hosts -replace with inline implementation
      tcp_conn_stats: handle state BOUND (found on Solaris)
      diskstat: support for checking latency, LVM and VxVM on Linux (needs updated agent)

OBS-URL: https://build.opensuse.org/package/show/server:monitoring/check_mk?expand=0&rev=14
2012-06-26 20:58:19 +00:00

49 lines
2.4 KiB
Plaintext

# Created by setup of check_mk version 1.2.0p1
# This file will *not* be overwritten at the next setup
# of check_mk. You may edit it as needed. In order to get
# a new version, please delete it and re-run setup.sh.
# Note for RedHat 5.3 users (and probably other version:
# this file must be loaded *after* python.conf, otherwise
# <IfModule mod_python.c> does not trigger! For that
# reason, it is installed as zzz_.... Sorry for the
# inconveniance.
<IfModule mod_python.c>
Alias /check_mk /usr/share/check_mk/web/htdocs
<Directory /usr/share/check_mk/web/htdocs>
Options FollowSymLinks
AddHandler mod_python .py
PythonHandler index
PythonDebug Off
DirectoryIndex index.py
# Need Nagios authentification. Please edit the
# following: Set AuthName and AuthUserFile to the
# same value that you use for your Nagios configuration!
Order deny,allow
allow from all
AuthName "Nagios Access"
AuthType Basic
AuthUserFile /etc/nagios/htpasswd.users
require valid-user
ErrorDocument 403 "<h1>Authentication Problem</h1>Either you've entered an invalid password or the authentication<br>configuration of your check_mk web pages is incorrect.<br><br>Please make sure that you've edited the file<br><tt>/etc/apache2/conf.d/check_mk</tt> and made it use the same<br>authentication settings as your Nagios web pages.<br>Restart Apache afterwards."
ErrorDocument 500 "<h1>Server or Configuration Problem</h1>A Server problem occurred. You'll find details in the error log of Apache. One possible reason is, that the file <tt>/etc/nagios/htpasswd.users</tt> is missing. You can create that file with <tt>htpasswd</tt> or <tt>htpasswd2</tt>. A better solution might be to use your existing htpasswd file from your Nagios installation. Please edit <tt>/etc/apache2/conf.d/check_mk</tt> and change the path there. Restart Apache afterwards."
</Directory>
# Automation is done without HTTP Auth
<Location "/check_mk/automation.py">
Order allow,deny
Allow from all
Satisfy any
</Location>
</IfModule>
<IfModule !mod_python.c>
Alias /check_mk /usr/share/check_mk/web/htdocs
<Directory /usr/share/check_mk/web/htdocs>
Deny from all
ErrorDocument 403 "<h1>Check_mk: Incomplete Apache2 Installation</h1>You need mod_python in order to run the web interface of check_mk.<br> Please install mod_python and restart Apache."
</Directory>
</IfModule>