docker-compose.yml - added experimental health endpoint

This commit is contained in:
Oscar Krause 2023-01-03 20:45:16 +01:00
parent 5bb8437b1d
commit 27f47b93b8
1 changed files with 6 additions and 0 deletions

View File

@ -67,6 +67,12 @@ services:
proxy_set_header X-Forwarded-Proto $$scheme;
proxy_pass https://dls-backend$$request_uri;
}
location = /-/health {
access_log off;
add_header 'Content-Type' 'application/json';
return 200; # '{\"status\":\"up\",\"service\":\"nginx\"}';
}
}
server {