packages: apache/apache-common.conf, apache/apache-example.net.conf, apache...
adamg
adamg at pld-linux.org
Sun Feb 26 10:05:36 CET 2012
Author: adamg Date: Sun Feb 26 09:05:36 2012 GMT
Module: packages Tag: HEAD
---- Log message:
- 2.4 way of access control
---- Files affected:
packages/apache:
apache-common.conf (1.9 -> 1.10) , apache-example.net.conf (1.4 -> 1.5) , apache-httpd.conf (1.60 -> 1.61) , apache-manual.conf (1.2 -> 1.3) , apache-mod_authz_host.conf (1.2 -> 1.3) , apache-mod_autoindex.conf (1.10 -> 1.11) , apache-mod_info.conf (1.9 -> 1.10) , apache-mod_proxy.conf (1.9 -> 1.10) , apache-mod_status.conf (1.8 -> 1.9) , apache-mod_userdir.conf (1.6 -> 1.7) , apache-multilang-errordoc.conf (1.2 -> 1.3)
---- Diffs:
================================================================
Index: packages/apache/apache-common.conf
diff -u packages/apache/apache-common.conf:1.9 packages/apache/apache-common.conf:1.10
--- packages/apache/apache-common.conf:1.9 Mon Jan 9 12:24:05 2006
+++ packages/apache/apache-common.conf Sun Feb 26 10:05:30 2012
@@ -16,8 +16,7 @@
Options FollowSymLinks
AllowOverride None
<IfModule mod_authz_host.c>
- Order deny,allow
- Deny from all
+ Require all denied
</IfModule>
</Directory>
@@ -50,8 +49,7 @@
# Controls who can get stuff from this server.
#
<IfModule mod_authz_host.c>
- Order allow,deny
- Allow from all
+ Require all granted
</IfModule>
</Directory>
================================================================
Index: packages/apache/apache-example.net.conf
diff -u packages/apache/apache-example.net.conf:1.4 packages/apache/apache-example.net.conf:1.5
--- packages/apache/apache-example.net.conf:1.4 Sun Aug 29 00:13:07 2010
+++ packages/apache/apache-example.net.conf Sun Feb 26 10:05:31 2012
@@ -18,7 +18,6 @@
# AllowOverride None
# Options None
# <IfModule mod_authz_host.c>
-# Order allow,deny
-# Allow from all
+# Require all granted
# </IfModule>
#</Directory>
================================================================
Index: packages/apache/apache-httpd.conf
diff -u packages/apache/apache-httpd.conf:1.60 packages/apache/apache-httpd.conf:1.61
--- packages/apache/apache-httpd.conf:1.60 Sun Feb 26 09:46:09 2012
+++ packages/apache/apache-httpd.conf Sun Feb 26 10:05:31 2012
@@ -85,8 +85,7 @@
AllowOverride None
Options None
<IfModule mod_authz_host.c>
- Order allow,deny
- Allow from all
+ Require all granted
</IfModule>
</Directory>
</IfModule>
================================================================
Index: packages/apache/apache-manual.conf
diff -u packages/apache/apache-manual.conf:1.2 packages/apache/apache-manual.conf:1.3
--- packages/apache/apache-manual.conf:1.2 Wed Dec 21 14:27:28 2005
+++ packages/apache/apache-manual.conf Sun Feb 26 10:05:31 2012
@@ -12,8 +12,7 @@
<Directory "/home/services/httpd/manual">
Options Indexes
AllowOverride None
- Order allow,deny
- Allow from all
+ Require all granted
<Files *.html>
SetHandler type-map
================================================================
Index: packages/apache/apache-mod_authz_host.conf
diff -u packages/apache/apache-mod_authz_host.conf:1.2 packages/apache/apache-mod_authz_host.conf:1.3
--- packages/apache/apache-mod_authz_host.conf:1.2 Wed Dec 21 14:20:11 2005
+++ packages/apache/apache-mod_authz_host.conf Sun Feb 26 10:05:31 2012
@@ -6,7 +6,6 @@
#
<IfModule authz_host_module>
<FilesMatch "^\.ht">
- Order allow,deny
- Deny from all
+ Require all denied
</FilesMatch>
</IfModule>
================================================================
Index: packages/apache/apache-mod_autoindex.conf
diff -u packages/apache/apache-mod_autoindex.conf:1.10 packages/apache/apache-mod_autoindex.conf:1.11
--- packages/apache/apache-mod_autoindex.conf:1.10 Sun Apr 3 15:22:25 2011
+++ packages/apache/apache-mod_autoindex.conf Sun Feb 26 10:05:31 2012
@@ -26,8 +26,7 @@
Options Indexes MultiViews
AllowOverride None
<IfModule mod_authz_host.c>
- Order allow,deny
- Allow from all
+ Require all granted
</IfModule>
</Directory>
================================================================
Index: packages/apache/apache-mod_info.conf
diff -u packages/apache/apache-mod_info.conf:1.9 packages/apache/apache-mod_info.conf:1.10
--- packages/apache/apache-mod_info.conf:1.9 Wed Dec 21 14:27:28 2005
+++ packages/apache/apache-mod_info.conf Sun Feb 26 10:05:31 2012
@@ -14,9 +14,7 @@
#
<Location /server-info>
SetHandler server-info
- Order deny,allow
- Deny from all
- Allow from 127.0.0.1
+ Require local
</Location>
</IfModule>
================================================================
Index: packages/apache/apache-mod_proxy.conf
diff -u packages/apache/apache-mod_proxy.conf:1.9 packages/apache/apache-mod_proxy.conf:1.10
--- packages/apache/apache-mod_proxy.conf:1.9 Wed Dec 21 14:27:28 2005
+++ packages/apache/apache-mod_proxy.conf Sun Feb 26 10:05:31 2012
@@ -20,9 +20,8 @@
# http://victim:25/ and sending raw data.
#
<Proxy *>
- Order deny,allow
- Deny from all
-# Allow from .your-domain.com
+ Require all denied
+# Require host .your-domain.com
</Proxy>
#
================================================================
Index: packages/apache/apache-mod_status.conf
diff -u packages/apache/apache-mod_status.conf:1.8 packages/apache/apache-mod_status.conf:1.9
--- packages/apache/apache-mod_status.conf:1.8 Wed Dec 21 14:27:28 2005
+++ packages/apache/apache-mod_status.conf Sun Feb 26 10:05:31 2012
@@ -15,9 +15,7 @@
<Location /server-status>
SetHandler server-status
- Order deny,allow
- Deny from all
- Allow from 127.0.0.1
+ Require local
</Location>
#
================================================================
Index: packages/apache/apache-mod_userdir.conf
diff -u packages/apache/apache-mod_userdir.conf:1.6 packages/apache/apache-mod_userdir.conf:1.7
--- packages/apache/apache-mod_userdir.conf:1.6 Sun Nov 16 15:12:47 2008
+++ packages/apache/apache-mod_userdir.conf Sun Feb 26 10:05:31 2012
@@ -21,12 +21,10 @@
AllowOverride FileInfo AuthConfig Limit Indexes
Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
<Limit GET POST OPTIONS>
- Order allow,deny
- Allow from all
+ Require all granted
</Limit>
<LimitExcept GET POST OPTIONS>
- Order deny,allow
- Deny from all
+ Require all denied
</LimitExcept>
#<IfModule mod_php.c>
# php_admin_value open_basedir "/home/users:/usr/share/pear:/usr/share/php:/tmp"
================================================================
Index: packages/apache/apache-multilang-errordoc.conf
diff -u packages/apache/apache-multilang-errordoc.conf:1.2 packages/apache/apache-multilang-errordoc.conf:1.3
--- packages/apache/apache-multilang-errordoc.conf:1.2 Wed Dec 21 14:27:28 2005
+++ packages/apache/apache-multilang-errordoc.conf Sun Feb 26 10:05:31 2012
@@ -26,8 +26,7 @@
Options IncludesNoExec
AddOutputFilter Includes html
AddHandler type-map var
- Order allow,deny
- Allow from all
+ Require all granted
LanguagePriority en cs de es fr it ja ko nl pl pt-br ro sv tr
ForceLanguagePriority Prefer Fallback
</Directory>
================================================================
---- CVS-web:
http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/packages/apache/apache-common.conf?r1=1.9&r2=1.10&f=u
http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/packages/apache/apache-example.net.conf?r1=1.4&r2=1.5&f=u
http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/packages/apache/apache-httpd.conf?r1=1.60&r2=1.61&f=u
http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/packages/apache/apache-manual.conf?r1=1.2&r2=1.3&f=u
http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/packages/apache/apache-mod_authz_host.conf?r1=1.2&r2=1.3&f=u
http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/packages/apache/apache-mod_autoindex.conf?r1=1.10&r2=1.11&f=u
http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/packages/apache/apache-mod_info.conf?r1=1.9&r2=1.10&f=u
http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/packages/apache/apache-mod_proxy.conf?r1=1.9&r2=1.10&f=u
http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/packages/apache/apache-mod_status.conf?r1=1.8&r2=1.9&f=u
http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/packages/apache/apache-mod_userdir.conf?r1=1.6&r2=1.7&f=u
http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/packages/apache/apache-multilang-errordoc.conf?r1=1.2&r2=1.3&f=u
More information about the pld-cvs-commit
mailing list