You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-analyzer/icinga/files/icinga-apache.conf

24 lines
591 B

<IfDefine ICINGA>
ScriptAlias /icinga/cgi-bin/ /usr/lib/icinga/cgi-bin/
<Directory "/usr/lib/icinga/cgi-bin/">
AllowOverride AuthConfig
Options ExecCGI
Order allow,deny
Allow from all
AuthName "Icinga Access"
AuthType Basic
AuthUserFile /etc/icinga/htpasswd.users
Require valid-user
</Directory>
Alias /icinga /usr/share/icinga/htdocs
<Directory "/usr/share/icinga/htdocs">
AllowOverride AuthConfig
Order allow,deny
Allow from all
AuthName "Icinga Access"
AuthType Basic
AuthUserFile /etc/icinga/htpasswd.users
Require valid-user
</Directory>
</IfDefine>