all services get an nginx status check
This commit is contained in:
parent
a63065b4eb
commit
ff9dc35bb9
2 changed files with 7 additions and 5 deletions
|
@ -8,3 +8,9 @@ location ^~ /.well-known/acme-challenge/ {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
## End of configuration add by letsencrypt container
|
## End of configuration add by letsencrypt container
|
||||||
|
|
||||||
|
|
||||||
|
location /_/nginx {
|
||||||
|
add_header Content-Type text/html;
|
||||||
|
return 200 "Nginx is working..."
|
||||||
|
}
|
|
@ -1,4 +0,0 @@
|
||||||
location /nginx {
|
|
||||||
add_header Content-Type text/html;
|
|
||||||
return 200 "Nginx is running!";
|
|
||||||
}
|
|
Reference in a new issue