Add Gitea deployment workflow
All checks were successful
Build and deploy Flutter Web / build (push) Successful in 10m22s

This commit is contained in:
Ruslan Bakiev
2026-05-08 12:19:51 +07:00
parent 597a660756
commit 161c4f02d2
4 changed files with 96 additions and 0 deletions

10
nginx.conf Normal file
View File

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