2012-12-01 03:03:41 +01:00
|
|
|
<VirtualHost *:80>
|
|
|
|
ServerName nagios.humbughq.com
|
|
|
|
Redirect permanent / https://nagios.humbughq.com/
|
|
|
|
</VirtualHost>
|
2012-10-26 20:01:55 +02:00
|
|
|
|
2012-12-01 03:03:41 +01:00
|
|
|
<VirtualHost *:443>
|
|
|
|
ServerName nagios.humbughq.com
|
2012-10-26 20:01:55 +02:00
|
|
|
|
2012-12-01 03:03:41 +01:00
|
|
|
SSLEngine on
|
|
|
|
SSLCertificateFile /etc/apache2/certs/humbug-self-signed.crt
|
|
|
|
SSLCertificateKeyFile /etc/apache2/certs/humbug-self-signed.key
|
2012-10-26 20:01:55 +02:00
|
|
|
|
2012-12-01 03:03:41 +01:00
|
|
|
Header add Strict-Transport-Security "max-age=15768000"
|
2012-12-01 03:08:26 +01:00
|
|
|
Header add X-Frame-Options DENY
|
2012-10-26 20:01:55 +02:00
|
|
|
|
2012-12-01 03:03:41 +01:00
|
|
|
ScriptAlias /cgi-bin/nagios3 /usr/lib/cgi-bin/nagios3
|
|
|
|
ScriptAlias /nagios3/cgi-bin /usr/lib/cgi-bin/nagios3
|
2012-10-26 20:01:55 +02:00
|
|
|
|
2012-12-01 03:03:41 +01:00
|
|
|
# Where the stylesheets (config files) reside
|
|
|
|
Alias /nagios3/stylesheets /etc/nagios3/stylesheets
|
2012-10-26 20:01:55 +02:00
|
|
|
|
2012-12-01 03:03:41 +01:00
|
|
|
# Where the HTML pages live
|
|
|
|
Alias /nagios3 /usr/share/nagios3/htdocs
|
2012-10-26 20:01:55 +02:00
|
|
|
|
2012-12-01 03:03:41 +01:00
|
|
|
RedirectMatch ^/?$ https://nagios.humbughq.com/nagios3/
|
2012-10-26 20:01:55 +02:00
|
|
|
|
2012-12-01 03:07:08 +01:00
|
|
|
<Location "/">
|
|
|
|
AuthType Digest
|
|
|
|
AuthName "wiki"
|
|
|
|
AuthDigestProvider file
|
|
|
|
AuthUserFile /etc/apache2/users/wiki
|
|
|
|
Require valid-user
|
|
|
|
</Location>
|
|
|
|
|
2012-12-01 03:03:41 +01:00
|
|
|
<DirectoryMatch (/usr/share/nagios3/htdocs|/usr/lib/cgi-bin/nagios3|/etc/nagios3/stylesheets)>
|
|
|
|
Options FollowSymLinks
|
2012-10-26 20:01:55 +02:00
|
|
|
|
2012-12-01 03:03:41 +01:00
|
|
|
DirectoryIndex index.php index.html
|
2012-10-26 20:01:55 +02:00
|
|
|
|
2012-12-01 03:03:41 +01:00
|
|
|
AllowOverride AuthConfig
|
|
|
|
Order Allow,Deny
|
|
|
|
Allow From All
|
|
|
|
</DirectoryMatch>
|
|
|
|
|
|
|
|
<Directory /usr/share/nagios3/htdocs>
|
|
|
|
Options +ExecCGI
|
|
|
|
</Directory>
|
|
|
|
|
|
|
|
# Enable this ScriptAlias if you want to enable the grouplist patch.
|
|
|
|
# See http://apan.sourceforge.net/download.html for more info
|
|
|
|
# It allows you to see a clickable list of all hostgroups in the
|
|
|
|
# left pane of the Nagios web interface
|
|
|
|
ScriptAlias /nagios3/side.html /usr/lib/cgi-bin/nagios3/grouplist.cgi
|
|
|
|
</VirtualHost>
|