Initial project commit

This commit is contained in:
2022-01-24 21:39:14 +01:00
commit 1e673781cd
20 changed files with 848 additions and 0 deletions

13
nginx.conf Normal file
View File

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