mirror of https://github.com/Aidaho12/haproxy-wi
11 lines
259 B
Plaintext
11 lines
259 B
Plaintext
![]() |
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>
|