Adjust ACLs to support httpd 2.4.
This commit is contained in:
parent
ce61e26e6b
commit
596e3b76f5
@ -2,15 +2,22 @@
|
|||||||
# Cacti: An rrd based graphing tool
|
# Cacti: An rrd based graphing tool
|
||||||
#
|
#
|
||||||
|
|
||||||
# Change "Allow from 127.0.0.1" to open up cacti to other network devices.
|
# Change the following ACLs to open up Cacti to other network devices.
|
||||||
# For example, change "Allow from 127.0.0.1" to "Allow from all".
|
# For example:
|
||||||
|
# On httpd 2.4, change "Require host localhost" to "Require all granted".
|
||||||
|
# On httpd 2.2, change "Allow from localhost" to "Allow from all".
|
||||||
|
|
||||||
Alias /cacti /usr/share/cacti
|
Alias /cacti /usr/share/cacti
|
||||||
|
|
||||||
<Directory /usr/share/cacti/>
|
<Directory /usr/share/cacti/>
|
||||||
Order Deny,Allow
|
<IfVersion > 2.2>
|
||||||
Deny from all
|
Require host localhost
|
||||||
Allow from 127.0.0.1
|
</IfVersion>
|
||||||
|
<IfVersion <= 2.2>
|
||||||
|
Order deny,allow
|
||||||
|
Deny from all
|
||||||
|
Allow from localhost
|
||||||
|
</IfVersion>
|
||||||
</Directory>
|
</Directory>
|
||||||
|
|
||||||
<Directory /usr/share/cacti/install>
|
<Directory /usr/share/cacti/install>
|
||||||
@ -23,14 +30,24 @@ Alias /cacti /usr/share/cacti
|
|||||||
</Directory>
|
</Directory>
|
||||||
|
|
||||||
|
|
||||||
# The sections marked "deny from all" should not be modified.
|
# These sections marked "Require all denied" (or "deny from all")
|
||||||
# These are in place in order to harden cacti.
|
# should not be modified.
|
||||||
|
# These are in place in order to harden Cacti.
|
||||||
<Directory /usr/share/cacti/log>
|
<Directory /usr/share/cacti/log>
|
||||||
order deny,allow
|
<IfVersion > 2.2>
|
||||||
Deny from all
|
Require all denied
|
||||||
|
</IfVersion>
|
||||||
|
<IfVersion <= 2.2>
|
||||||
|
Order deny,allow
|
||||||
|
Deny from all
|
||||||
|
</IfVersion>
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory /usr/share/cacti/rra>
|
<Directory /usr/share/cacti/rra>
|
||||||
order deny,allow
|
<IfVersion > 2.2>
|
||||||
Deny from all
|
Require all denied
|
||||||
|
</IfVersion>
|
||||||
|
<IfVersion <= 2.2>
|
||||||
|
Order deny,allow
|
||||||
|
Deny from all
|
||||||
|
</IfVersion>
|
||||||
</Directory>
|
</Directory>
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
Name: cacti
|
Name: cacti
|
||||||
Version: 0.8.7i
|
Version: 0.8.7i
|
||||||
Release: 3%{?dist}
|
Release: 4%{?dist}
|
||||||
Summary: An rrd based graphing tool
|
Summary: An rrd based graphing tool
|
||||||
|
|
||||||
Group: Applications/System
|
Group: Applications/System
|
||||||
@ -114,6 +114,9 @@ fi
|
|||||||
%attr(0644,root,root) %{_localstatedir}/lib/%{name}/lib
|
%attr(0644,root,root) %{_localstatedir}/lib/%{name}/lib
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Mar 26 2012 Ken Dreyer <ktdreyer@ktdreyer.com> - 0.8.7i-4
|
||||||
|
- Adjust ACLs to support httpd 2.4.
|
||||||
|
|
||||||
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.7i-3
|
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.7i-3
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user