Initial commit for the project

This commit is contained in:
2023-02-20 21:36:12 +01:00
commit 96e4e659ce
10 changed files with 153 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
# 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;
}
}