16 lines
274 B
Nginx Configuration File
16 lines
274 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
server_name _;
|
|
|
|
location / {
|
|
root /usr/share/nginx/html;
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
|
|
location /health {
|
|
access_log off;
|
|
default_type text/plain;
|
|
return 200 "Healthy\n";
|
|
}
|
|
}
|