feat(enterprise): add first-login rotation and receipt bridge

This commit is contained in:
冰朔 2026-08-16 20:49:13 +08:00
commit 08f514b9d1
9 changed files with 322 additions and 4 deletions

View file

@ -39,3 +39,11 @@ location = /api/hololake/enterprise/me/entry {
proxy_read_timeout 15s;
client_max_body_size 16k;
}
location = /api/hololake/enterprise/change-password {
limit_except POST { deny all; }
proxy_pass http://127.0.0.1:8032/v1/change-password;
proxy_set_header Host $host;
proxy_read_timeout 30s;
client_max_body_size 16k;
}