Kristyna Streitova
d7b41eca02
- access_compat now built as shared and disabled by default - amend config to use also old syntax when access_compat is loaded - added apache2-README-access_compat.txt - added apache-find-directive script - see [bnc#896083] and its duplicates OBS-URL: https://build.opensuse.org/request/show/308624 OBS-URL: https://build.opensuse.org/package/show/Apache/apache2?expand=0&rev=446
28 lines
793 B
Plaintext
28 lines
793 B
Plaintext
#
|
|
# This configuration file belongs to the apache2-doc package.
|
|
#
|
|
# The alias provides the manual, even if you choose to move your DocumentRoot.
|
|
# Comment this out if you do not care for the documentation.
|
|
#
|
|
AliasMatch ^/manual(?:/(?:de|en|es|fr|ja|ko|ru))?(/.*)?$ "/usr/share/apache2/manual$1"
|
|
|
|
<Directory "/usr/share/apache2/manual">
|
|
Options Indexes
|
|
AllowOverride None
|
|
<IfModule !mod_access_compat.c>
|
|
Require all granted
|
|
</IfModule>
|
|
<IfModule mod_access_compat.c>
|
|
Order allow,deny
|
|
Allow from all
|
|
</IfModule>
|
|
|
|
<Files *.html>
|
|
SetHandler type-map
|
|
</Files>
|
|
|
|
SetEnvIf Request_URI ^/manual/(de|en|es|fr|ja|ko|ru)/ prefer-language=$1
|
|
RedirectMatch 301 ^/manual(?:/(de|en|es|fr|ja|ko|ru)){2,}(/.*)?$ /manual/$1$2
|
|
</Directory>
|
|
|