15 lines
253 B
Plaintext
15 lines
253 B
Plaintext
|
server {
|
||
|
listen 80;
|
||
|
|
||
|
location / {
|
||
|
root /usr/share/nginx/html;
|
||
|
index index.html index.htm;
|
||
|
}
|
||
|
|
||
|
location /health {
|
||
|
access_log off;
|
||
|
return 200 'healthy';
|
||
|
add_header Content-Type text/plain;
|
||
|
}
|
||
|
}
|