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
|
@ -7,4 +7,10 @@ location ^~ /.well-known/acme-challenge/ {
|
|||
try_files $uri =404;
|
||||
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