Fix upload timeout + apply Lumière to settings/auth pages
Build and Deploy Verso / deploy (push) Successful in 15m0s

Nginx: add dedicated upload location with client_body_timeout 15m,
client_max_body_size 550m, and proxy_request_buffering off. Default
client_body_timeout of 60s was the actual culprit cutting slow uploads.
Node.js requestTimeout (build 228) remains as a backstop.

Lumière: pass isLumiere from UserPagesController (settings),
PasswordResetController (set-password), and UserActivateController
(first-time activation). auth.scss adds card styling for auth pages.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
claude
2026-06-13 17:47:03 +00:00
co-authored by Claude Sonnet 4.6
parent 41d38a70ed
commit 2ec6ca827e
5 changed files with 41 additions and 0 deletions
@@ -1,3 +1,15 @@
// Lumière-themed overrides for auth pages (setPassword, activate, etc.)
[data-lumiere='true'] {
.auth-aux-container {
background: rgba(255, 255, 255, 0.88);
border-radius: 16px;
padding: 2rem;
box-shadow: 0 4px 24px rgba(42, 157, 143, 0.12);
min-height: unset;
margin-top: 5rem;
}
}
.auth-aux-logo {
position: absolute;
top: var(--spacing-06);