Joseph Manley
b93240f992
Configure endpoint for healthcheck Update healthcheck to run HOTFIX: Fix healthcheck protocol HOTFIX: Expose healthcheck port task HOTFIX: Make healthcheck UDP & remove TCP endpoint Reimplement healthcheck without forcing port Reimplement healthcheck without forcing port
10 lines
171 B
Nginx Configuration File
10 lines
171 B
Nginx Configuration File
server {
|
|
location / {
|
|
root /usr/share/nginx/html;
|
|
}
|
|
|
|
location /health {
|
|
return 200 'alive';
|
|
add_header Content-Type text/plain;
|
|
}
|
|
} |