forked from pool/apache2
- 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
448 B
Plaintext
21 lines
448 B
Plaintext
#
|
|
# Allow server status reports generated by mod_status,
|
|
# with the URL of http://servername/server-status
|
|
#
|
|
# see https://httpd.apache.org/docs/2.4/mod/mod_status.html
|
|
#
|
|
<IfModule mod_status.c>
|
|
<Location /server-status>
|
|
SetHandler server-status
|
|
<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>
|
|
|