Files
Homepage/docker/web.conf
2019-05-03 16:21:50 +01:00

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