Merge pull request #273 from mcarlton00/server-status-sources

Allow remote servers to access server status page
This commit is contained in:
Imran Iqbal 2019-12-20 16:43:11 +00:00 committed by GitHub
commit d78d0cc166
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 0 deletions

View File

@ -2,9 +2,19 @@
SetHandler server-status
{%- if apache.version == '2.4' %}
Require local
{%- for require_type,values in apache.get('server_status_require', {}).items() %}
{%- for value in values %}
Require {{ require_type }} {{ value }}
{%- endfor %}
{%- endfor %}
{%- elif apache.version == '2.2' %}
Order deny,allow
Deny from all
Allow from localhost
{%- for require_type,values in apache.get('server_status_require', {}).items() %}
{%- for value in values %}
Allow from {{ value }}
{%- endfor %}
{%- endfor %}
{%- endif %}
</Location>

View File

@ -385,3 +385,8 @@ apache:
SSLProtocol: all -SSLv2 -SSLv3 -TLSv1
SSLHonorCipherOrder: 'On'
SSLOptions: "+StrictRequire"
server_status_require:
ip:
- 10.8.8.0/24
host:
- foo.example.com