fix: bootstrap file permission denied, use PNG favicon
All checks were successful
CI / build (push) Successful in 47s
CI / docker (push) Successful in 2m45s

- Change chmod 600 to 644 on bootstrap JSON (cameleer user needs read)
- Use PNG favicon instead of SVG (currentColor invisible in browser tab)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
hsiegeln
2026-04-06 22:25:15 +02:00
parent d8b9ca6cfe
commit ea3723958e
3 changed files with 2 additions and 3 deletions

View File

@@ -541,7 +541,7 @@ cat > "$BOOTSTRAP_FILE" <<EOF
"oidcAudience": "$API_RESOURCE_INDICATOR"
}
EOF
chmod 600 "$BOOTSTRAP_FILE"
chmod 644 "$BOOTSTRAP_FILE"
log ""
log "=== Bootstrap complete! ==="

View File

@@ -3,7 +3,6 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32.png" />
<link rel="apple-touch-icon" sizes="192x192" href="/favicon-192.png" />
<title>Cameleer SaaS</title>

View File

@@ -4,7 +4,7 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Sign in — cameleer3</title>
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="icon" type="image/png" sizes="32x32" href="/cameleer-logo-48.png" />
</head>
<body>
<div id="root"></div>