fix(demo): nginx cache regex was 404ing all /app/ shell assets #82
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "demo-nginx-app-assets"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Root cause of the still-broken Bitcoin UI after #81: nginx regex locations beat prefix locations, so
/app/**/*.css|js|png|jpg|svgmatched the static-cache block and was served (404) from the web root instead of being proxied to the mock backend.^~on the/app/prefixes fixes it. Validated withnginx -t.🤖 Generated with Claude Code