[init] -init version

This commit is contained in:
2023-08-04 14:16:52 +07:00
commit 399835a06f
1635 changed files with 104192 additions and 0 deletions

9
nginx.conf Normal file
View File

@@ -0,0 +1,9 @@
server {
listen 8080;
root /usr/share/nginx/html;
include /etc/nginx/mime.types;
location / {
try_files $uri /index.html;
}
}