13 lines
238 B
Plaintext
Executable File
13 lines
238 B
Plaintext
Executable File
server {
|
|
listen 80;
|
|
|
|
location / {
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
}
|
|
location /health {
|
|
return 200 'alive';
|
|
add_header Content-Type text/plain;
|
|
}
|
|
}
|