Added docker stuff

This commit is contained in:
2020-11-27 01:19:52 +01:00
parent 04041dbc99
commit a307d82f63
3 changed files with 26 additions and 0 deletions

13
nginx-site.conf Normal file
View File

@@ -0,0 +1,13 @@
server {
listen 80;
listen [::]:80;
server_name localhost;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
}