Apache 2.4 support
This commit is contained in:
parent
0b57f01f3a
commit
bdaa5960c2
|
@ -1,6 +1,11 @@
|
||||||
<Files *>
|
<Files *>
|
||||||
Options +FollowSymLinks
|
Options +FollowSymLinks
|
||||||
|
<IfVersion < 2.3>
|
||||||
Order allow,deny
|
Order allow,deny
|
||||||
Allow from all
|
Allow from all
|
||||||
|
</IfVersion>
|
||||||
|
<IfVersion >= 2.3>
|
||||||
|
Require all granted
|
||||||
|
</IfVersion>
|
||||||
DirectoryIndex index.html
|
DirectoryIndex index.html
|
||||||
</Files>
|
</Files>
|
||||||
|
|
|
@ -4,6 +4,7 @@ December 2013 4.4
|
||||||
- allow to set a custom label for each account type
|
- allow to set a custom label for each account type
|
||||||
- Unix: switch also additional membership if primary group is changed (RFE 108)
|
- Unix: switch also additional membership if primary group is changed (RFE 108)
|
||||||
- Windows: fixed user name handling, sAMAccountName now optional
|
- Windows: fixed user name handling, sAMAccountName now optional
|
||||||
|
- RPM: Apache 2.4 support (requires Apache version module)
|
||||||
- LAM Pro:
|
- LAM Pro:
|
||||||
-> Bind DLZ support
|
-> Bind DLZ support
|
||||||
-> Samba/Shadow: display password change date in self service
|
-> Samba/Shadow: display password change date in self service
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
<Files *>
|
<Files *>
|
||||||
|
<IfVersion < 2.3>
|
||||||
Order allow,deny
|
Order allow,deny
|
||||||
Deny from all
|
Deny from all
|
||||||
|
</IfVersion>
|
||||||
|
<IfVersion >= 2.3>
|
||||||
|
Require all denied
|
||||||
|
</IfVersion>
|
||||||
</Files>
|
</Files>
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
<Files *>
|
<Files *>
|
||||||
|
<IfVersion < 2.3>
|
||||||
Order allow,deny
|
Order allow,deny
|
||||||
Deny from all
|
Deny from all
|
||||||
|
</IfVersion>
|
||||||
|
<IfVersion >= 2.3>
|
||||||
|
Require all denied
|
||||||
|
</IfVersion>
|
||||||
</Files>
|
</Files>
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
<Files *>
|
<Files *>
|
||||||
|
<IfVersion < 2.3>
|
||||||
Order allow,deny
|
Order allow,deny
|
||||||
Deny from all
|
Deny from all
|
||||||
|
</IfVersion>
|
||||||
|
<IfVersion >= 2.3>
|
||||||
|
Require all denied
|
||||||
|
</IfVersion>
|
||||||
</Files>
|
</Files>
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
<Files *>
|
<Files *>
|
||||||
|
<IfVersion < 2.3>
|
||||||
Order allow,deny
|
Order allow,deny
|
||||||
Deny from all
|
Deny from all
|
||||||
|
</IfVersion>
|
||||||
|
<IfVersion >= 2.3>
|
||||||
|
Require all denied
|
||||||
|
</IfVersion>
|
||||||
</Files>
|
</Files>
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
<Files *>
|
<Files *>
|
||||||
|
<IfVersion < 2.3>
|
||||||
Order allow,deny
|
Order allow,deny
|
||||||
Deny from all
|
Deny from all
|
||||||
|
</IfVersion>
|
||||||
|
<IfVersion >= 2.3>
|
||||||
|
Require all denied
|
||||||
|
</IfVersion>
|
||||||
</Files>
|
</Files>
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
<Files *>
|
<Files *>
|
||||||
|
<IfVersion < 2.3>
|
||||||
Order allow,deny
|
Order allow,deny
|
||||||
Deny from all
|
Deny from all
|
||||||
|
</IfVersion>
|
||||||
|
<IfVersion >= 2.3>
|
||||||
|
Require all denied
|
||||||
|
</IfVersion>
|
||||||
</Files>
|
</Files>
|
||||||
|
|
Loading…
Reference in New Issue