mirror of https://github.com/mikaku/Monitorix.git
33 lines
861 B
Plaintext
33 lines
861 B
Plaintext
#
|
|
# Monitorix is a lightweight system monitoring tool
|
|
#
|
|
|
|
Alias /monitorix /var/lib/monitorix/www
|
|
ScriptAlias /monitorix-cgi /var/lib/monitorix/www/cgi
|
|
|
|
<Directory /var/lib/monitorix/www/cgi/>
|
|
DirectoryIndex monitorix.cgi
|
|
Options ExecCGI
|
|
Order Deny,Allow
|
|
Deny from all
|
|
Allow from 127.0.0.1
|
|
</Directory>
|
|
|
|
# Apache rules to restrict access to Monitorix:
|
|
# Don't forget to add <username> in .htpasswd with the 'htpasswd' command.
|
|
#
|
|
#<Directory "/var/lib/monitorix/www">
|
|
# Options Indexes Includes FollowSymLinks
|
|
# Order Deny,Allow
|
|
# Deny from All
|
|
# Allow from 127.0.0.1
|
|
# AllowOverride None
|
|
# AuthUserFile /etc/httpd/conf/.htpasswd
|
|
# AuthGroupFile /dev/null
|
|
# AuthName "Monitorix: Restricted access, sorry."
|
|
# AuthType Basic
|
|
# Require user <username>
|
|
# Satisfy Any
|
|
#</Directory>
|
|
|