haproxy-wi/app/scripts/ansible/roles/service_common/templates/apache_status.conf.j2

11 lines
259 B
Plaintext
Raw Normal View History

Listen {{ STAT_PORT }}
<VirtualHost *:{{ STAT_PORT }}>
<Location /{{ STAT_PAGE }}>
SetHandler server-status
AuthType basic
AuthName "Apache status"
AuthUserFile {{ service_dir }}/status_page_passwdfile
Require valid-user
</Location>
</VirtualHost>