initial commit

This commit is contained in:
2026-06-08 15:27:20 +07:00
commit fec29b3513
29 changed files with 305 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
server {
listen 80;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
}