Last active
December 16, 2015 15:19
-
-
Save dky/5454735 to your computer and use it in GitHub Desktop.
Apache Nagios config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ScriptAlias /nagios/cgi-bin "/usr/local/nagios/sbin" | |
| <Directory "/usr/local/nagios/sbin"> | |
| Options ExecCGI | |
| AllowOverride None | |
| Order allow,deny | |
| Allow from all | |
| AuthName "Nagios Access" | |
| AuthType "Basic" | |
| AuthUserFile /etc/httpd/.htpasswd.users | |
| Require valid-user | |
| </Directory> | |
| Alias /nagios "/usr/local/nagios/share" | |
| <Directory "/usr/local/nagios/share"> | |
| Options None | |
| AllowOverride None | |
| Order allow,deny | |
| Allow from all | |
| AuthName "Nagios Access" | |
| AuthType "Basic" | |
| AuthUserFile /etc/httpd/.htpasswd.users | |
| Require valid-user | |
| </Directory> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment