Add Dockerfile

This commit is contained in:
jwu-fisker
2021-01-07 20:37:08 -08:00
parent 640043e0b6
commit f52dc47549
3 changed files with 72 additions and 0 deletions

13
nginx.conf Normal file
View File

@@ -0,0 +1,13 @@
events { worker_connections 1024; }
http {
server {
listen 80;
root /usr/share/nginx/html;
include /etc/nginx/mime.types;
location / {
try_files $uri /index.html;
}
}
}