all services get an nginx status check

This commit is contained in:
Didier Slof 2023-01-31 12:43:32 +01:00
parent a63065b4eb
commit ff9dc35bb9
Signed by: didier
GPG key ID: 01E71F18AA4398E5
2 changed files with 7 additions and 5 deletions

View file

@ -8,3 +8,9 @@ location ^~ /.well-known/acme-challenge/ {
break;
}
## End of configuration add by letsencrypt container
location /_/nginx {
add_header Content-Type text/html;
return 200 "Nginx is working..."
}

View file

@ -1,4 +0,0 @@
location /nginx {
add_header Content-Type text/html;
return 200 "Nginx is running!";
}