feat: begin dashboard overhaul by splitting into cards and adding customization

This commit is contained in:
LukeGus
2026-01-16 03:08:10 -06:00
parent 004ddcb2bb
commit c7872770a1
21 changed files with 2328 additions and 1525 deletions

View File

@@ -347,6 +347,15 @@ http {
proxy_set_header X-Forwarded-Proto $scheme;
}
location ~ ^/dashboard/preferences(/.*)?$ {
proxy_pass http://127.0.0.1:30006;
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
location ^~ /docker/console/ {
proxy_pass http://127.0.0.1:30008/;
proxy_http_version 1.1;