prototype

This commit is contained in:
2026-05-05 18:41:51 +03:00
parent d4c42061ba
commit 5ddc23210b
23 changed files with 4920 additions and 1 deletions

8
nginx.conf Normal file
View File

@@ -0,0 +1,8 @@
server {
listen 80;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri /index.html;
}
}