13 lines
350 B
Plaintext
13 lines
350 B
Plaintext
# File to place in the conf/ directory of Nginx, to give other containers the
|
|
# capability of accessing Nginx status
|
|
|
|
server {
|
|
listen ${proxy-container-name}:80;
|
|
server_name ${proxy-container-name};
|
|
location /nginx_status {
|
|
stub_status on;
|
|
allow all;
|
|
access_log on;
|
|
}
|
|
}
|