compose-personal-stack/rp/conf.d/stub.conf.template

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;
}
}