10 lines
164 B
Plaintext
10 lines
164 B
Plaintext
server {
|
|
listen 127.0.0.1:80;
|
|
|
|
location /health {
|
|
access_log off;
|
|
return 200 'healthy';
|
|
add_header Content-Type text/plain;
|
|
}
|
|
}
|