nginx.conf: add /health

This commit is contained in:
vchikalkin 2023-06-21 12:50:48 +03:00
parent 2aa0585e09
commit 937ae35c08

View File

@ -58,4 +58,10 @@ server {
auth_request /auth;
proxy_pass $URL_DOWNLOAD;
}
location = /health {
access_log off;
add_header 'Content-Type' 'application/json';
return 200 'UP';
}
}