PWA fixed

This commit is contained in:
cpu
2025-05-08 15:36:17 +02:00
parent d741efa62d
commit 13b227cfc2
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;
}
}