add README

This commit is contained in:
2019-05-03 16:21:50 +01:00
commit 6ce9ccdd57
46 changed files with 8291 additions and 0 deletions

12
docker/web.conf Executable file
View File

@@ -0,0 +1,12 @@
server {
listen 80;
location / {
root /usr/share/nginx/html;
index index.html;
}
location /health {
return 200 'alive';
add_header Content-Type text/plain;
}
}