Imported Upstream version 0.9.6
This commit is contained in:
28
etc/apache-conf.d/Makefile.in
Normal file
28
etc/apache-conf.d/Makefile.in
Normal file
@@ -0,0 +1,28 @@
|
||||
prefix=@prefix@
|
||||
exec_prefix=@exec_prefix@
|
||||
LOGDIR=@localstatedir@
|
||||
CFGDIR=@sysconfdir@
|
||||
BINDIR=@bindir@
|
||||
CGIDIR=@sbindir@
|
||||
LIBDIR=@libdir@
|
||||
DATAROOTDIR=@datarootdir@
|
||||
HTTPD_CONF=@HTTPD_CONF@
|
||||
|
||||
INSTALL=@INSTALL@
|
||||
INSTALL_OPTS=@INSTALL_OPTS@
|
||||
|
||||
CP=@CP@
|
||||
|
||||
all html:
|
||||
|
||||
clean:
|
||||
|
||||
distclean: clean
|
||||
-rm Makefile
|
||||
|
||||
devclean: distclean
|
||||
|
||||
install:
|
||||
$(INSTALL) -m 775 $(INSTALL_OPTS) -d $(DESTDIR)$(HTTPD_CONF)
|
||||
$(INSTALL) -m 664 $(INSTALL_OPTS) nagiosbp.conf $(DESTDIR)$(HTTPD_CONF)
|
||||
|
||||
28
etc/apache-conf.d/nagiosbp.conf.in
Normal file
28
etc/apache-conf.d/nagiosbp.conf.in
Normal file
@@ -0,0 +1,28 @@
|
||||
ScriptAlias @cgiurl@ "@sbindir@"
|
||||
|
||||
<Directory "@sbindir@">
|
||||
Options ExecCGI
|
||||
AllowOverride None
|
||||
Order allow,deny
|
||||
Allow from all
|
||||
AuthName "@apache_authname@"
|
||||
AuthType Basic
|
||||
AuthUserFile @nagetc@/htpasswd.users
|
||||
Require valid-user
|
||||
</Directory>
|
||||
|
||||
Alias @htmurl@ "@datarootdir@"
|
||||
|
||||
<Directory "@datarootdir@">
|
||||
Options None
|
||||
AllowOverride None
|
||||
Order allow,deny
|
||||
Allow from all
|
||||
AuthName "@apache_authname@"
|
||||
AuthType Basic
|
||||
AuthUserFile @nagetc@/htpasswd.users
|
||||
Require valid-user
|
||||
</Directory>
|
||||
|
||||
RedirectMatch ^@htmurl@/?$ @cgiurl@/nagios-bp.cgi
|
||||
|
||||
Reference in New Issue
Block a user