Delete old webui project, configure nginx and docker for new ui

This commit is contained in:
lumijiez
2025-06-25 15:20:21 +03:00
parent ed69cb345d
commit b01f95a777
27 changed files with 6 additions and 6540 deletions

View File

@@ -13,8 +13,8 @@ http {
server webapi:8080;
}
upstream webui {
server webui:3000;
upstream ui {
server ui:3000;
}
upstream seq {
@@ -120,7 +120,7 @@ http {
}
location / {
proxy_pass http://webui/;
proxy_pass http://ui/;
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;