update

working

reset

vue.js used

without footer

docker

default mode
This commit is contained in:
cpu
2025-05-06 20:19:38 +02:00
parent d741efa62d
commit 0bf368ea7a
40 changed files with 5117 additions and 2 deletions

12
nginx.conf Normal file
View File

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