forked from pool/apache2
Petr Gajdos
bf4d7cec8d
- use secure http sites by default in configs - Switch to DEFAULT_SUSE Cipher suite READ https://httpd.apache.org/docs/2.4/upgrading.html at https://httpd.apache.org/docs/2.4/new_features_2_4.html OBS-URL: https://build.opensuse.org/request/show/663183 OBS-URL: https://build.opensuse.org/package/show/Apache/apache2?expand=0&rev=573
21 lines
467 B
Plaintext
21 lines
467 B
Plaintext
#
|
|
# Allow remote server configuration reports, with the URL of
|
|
# http://servername/server-info (requires that mod_info.c be loaded).
|
|
#
|
|
# see https://httpd.apache.org/docs/2.4/mod/mod_info.html
|
|
#
|
|
<IfModule mod_info.c>
|
|
<Location /server-info>
|
|
SetHandler server-info
|
|
<IfModule !mod_access_compat.c>
|
|
Require local
|
|
</IfModule>
|
|
<IfModule mod_access_compat.c>
|
|
Order deny,allow
|
|
Deny from all
|
|
Allow from localhost
|
|
</IfModule>
|
|
</Location>
|
|
</IfModule>
|
|
|