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;
|
||
|
}
|
||
|
}
|