Add docker file & update readme

This commit is contained in:
2020-02-25 23:54:15 +01:00
parent 7547923b1f
commit 17b85fafd7
4 changed files with 11033 additions and 10972 deletions
+15
View File
@@ -0,0 +1,15 @@
server {
listen 80;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}