Frontend (Unit 2 completion): dual dev-server tooling (pnpm dev:slave, pnpm dev:all), per-instance browser tab titles, and a backend capability check (SystemController + useSystemCapabilities + ModuleGuard) so a Master-only page is hidden on a slave instance instead of assuming every backend has every module. Master/slave protocol fixes surfaced by actually running master and slave side by side locally: - Deactivating a CMS instance (Inactive) now releases the slave's master gate instead of leaving it stuck on its last pushed status. - The periodic integrity check now also re-pushes status to every reachable slave (previously URL-verification only) and runs once immediately on startup. - Added the originally-specified (but never implemented) slave-pull path: a slave now periodically polls its own status from the master (GET /api/v1/SlaveStatus) and fails open to Available if the master is unreachable for too long, complementing the existing push. - The slave's own Settings page can no longer "successfully" change local availability while the master controls it; it's now locked with an explanatory banner and the backend rejects the write with 409 instead of silently no-op'ing it. - CMS instance status badges now match the dashboard's color/icon styling instead of a plain grey badge. Also corrected the master-cms-module design docs to match this as-built behavior, and flagged (without a full rewrite) a larger, pre-existing divergence between its inception-stage application design and what construction actually built. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
50 lines
1.1 KiB
JSON
50 lines
1.1 KiB
JSON
{
|
|
"Logging": {
|
|
"LogLevel": {
|
|
"Default": "Information",
|
|
"Microsoft.AspNetCore": "Warning"
|
|
}
|
|
},
|
|
"ConnectionStrings": {
|
|
"DefaultConnection": "Server=(localdb)\\mssqllocaldb;Database=SlpModularCms;Trusted_Connection=True;MultipleActiveResultSets=true"
|
|
},
|
|
"JwtSettings": {
|
|
"Secret": "SuperSecretKeyForDevelopmentOnly_MustBeLongerThan32Bytes!",
|
|
"Issuer": "SlpModularCms",
|
|
"Audience": "SlpModularCmsPortal",
|
|
"ExpiryMinutes": 60,
|
|
"RefreshTokenExpiryDays": 7,
|
|
"CookieSameSite": "None"
|
|
},
|
|
"Availability": {
|
|
"CircuitBreakerSeconds": 30,
|
|
"StatusCacheSeconds": 1
|
|
},
|
|
"MasterPolling": {
|
|
"PollIntervalSeconds": 15,
|
|
"FailOpenAfterMinutes": 2,
|
|
"HttpTimeoutSeconds": 5
|
|
},
|
|
"MasterModule": {
|
|
"IntegrityCheckIntervalMinutes": 60,
|
|
"HttpTimeoutSeconds": 10,
|
|
"MasterUrl": "https://localhost:7221"
|
|
},
|
|
"Cors": {
|
|
"AllowedOrigins": [
|
|
"http://localhost:5173",
|
|
"https://localhost:5173"
|
|
]
|
|
},
|
|
"RateLimiting": {
|
|
"Login": {
|
|
"PermitLimit": 100,
|
|
"WindowSeconds": 60
|
|
},
|
|
"Refresh": {
|
|
"PermitLimit": 500,
|
|
"WindowSeconds": 60
|
|
}
|
|
}
|
|
}
|