diff --git a/internal/outpost/proxyv2/application/application.go b/internal/outpost/proxyv2/application/application.go index c88bc9b543..b500a5773b 100644 --- a/internal/outpost/proxyv2/application/application.go +++ b/internal/outpost/proxyv2/application/application.go @@ -168,6 +168,7 @@ func NewApplication(p api.ProxyOutpostConfig, c *http.Client, cs *ak.CryptoStore func (a *Application) IsAllowlisted(r *http.Request) bool { for _, u := range a.UnauthenticatedRegex { + a.log.WithField("regex", u.String()).WithField("url", r.URL.Path).Trace("Matching URL against allow list") if u.MatchString(r.URL.Path) { return true } diff --git a/web/src/elements/PageHeader.ts b/web/src/elements/PageHeader.ts index 5b53d6ace9..6421fb8357 100644 --- a/web/src/elements/PageHeader.ts +++ b/web/src/elements/PageHeader.ts @@ -108,10 +108,11 @@ export class PageHeader extends LitElement { renderIcon(): TemplateResult { if (this.icon) { - if (this.iconImage) { + if (this.iconImage && !this.icon.startsWith("fa://")) { return html` `; } - return html` `; + const icon = this.icon.replaceAll("fa://", "fa "); + return html` `; } return html``; }