mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-11 11:35:54 +02:00
58 lines
1.2 KiB
Plaintext
58 lines
1.2 KiB
Plaintext
Listen 1008
|
|
|
|
<VirtualHost *:1008>
|
|
|
|
# SAMPLE CONFIG SNIPPETS FOR APACHE WEB SERVER
|
|
# Last Modified: 11-26-2005
|
|
#
|
|
# This file contains examples of entries that need
|
|
# to be incorporated into your Apache web server
|
|
# configuration file. Customize the paths, etc. as
|
|
# needed to fit your system.
|
|
|
|
ScriptAlias /nagios/cgi-bin "/usr/share/nagios/cgi-bin"
|
|
|
|
<Directory "/usr/share/nagios/cgi-bin">
|
|
# SSLRequireSSL
|
|
Options ExecCGI
|
|
AllowOverride None
|
|
Order allow,deny
|
|
Allow from all
|
|
# Order deny,allow
|
|
# Deny from all
|
|
# Allow from 127.0.0.1
|
|
AuthName "Nagios Access"
|
|
AuthType Basic
|
|
AuthUserFile /etc/nagios/htpasswd.users
|
|
Require valid-user
|
|
</Directory>
|
|
|
|
Alias /nagios "/usr/share/nagios"
|
|
|
|
<Directory "/usr/share/nagios">
|
|
# SSLRequireSSL
|
|
Options None
|
|
AllowOverride None
|
|
Order allow,deny
|
|
Allow from all
|
|
# Order deny,allow
|
|
# Deny from all
|
|
# Allow from 127.0.0.1
|
|
AuthName "Nagios Access"
|
|
AuthType Basic
|
|
AuthUserFile /etc/nagios/htpasswd.users
|
|
Require valid-user
|
|
</Directory>
|
|
|
|
Alias /nagiosql "/usr/share/nagiosql"
|
|
|
|
<Directory "/usr/share/nagiosql">
|
|
include /etc/httpd/conf/conf.d/php*.conf
|
|
Options None
|
|
AllowOverride None
|
|
Order allow,deny
|
|
Allow from all
|
|
</Directory>
|
|
|
|
</VirtualHost>
|