mirror of https://github.com/Aidaho12/haproxy-wi
11 lines
241 B
Plaintext
11 lines
241 B
Plaintext
![]() |
server {
|
||
|
listen {{STAT_PORT}} ;
|
||
|
server_name localhost;
|
||
|
|
||
|
location /{{STAT_PAGE}} {
|
||
|
stub_status;
|
||
|
auth_basic "Resticted Area";
|
||
|
auth_basic_user_file /etc/nginx/status_page_passwdfile;
|
||
|
}
|
||
|
}
|