diff --git a/brand-proxy/conf.d/default.conf b/brand-proxy/conf.d/default.conf index 5d695cb..3db62bd 100644 --- a/brand-proxy/conf.d/default.conf +++ b/brand-proxy/conf.d/default.conf @@ -40,6 +40,13 @@ server { return 200 "ok\n"; } + # Klientens egne ikoner byttes ut på filnivå. Da slipper vi å kjempe mot + # manifest og Angular om hva som havner i fanen - de får rett og slett + # aldri Bitwardens filer. + location = /images/favicon-32x32.png { alias /brand/favicon.png; } + location = /images/favicon-16x16.png { alias /brand/favicon-16.png; } + location = /images/apple-touch-icon.png { alias /brand/apple-touch-icon.png; } + location /_vaultnord/ { alias /brand/; expires 1h; diff --git a/brand-proxy/static/apple-touch-icon.png b/brand-proxy/static/apple-touch-icon.png new file mode 100644 index 0000000..4ed7938 Binary files /dev/null and b/brand-proxy/static/apple-touch-icon.png differ diff --git a/brand-proxy/static/favicon-16.png b/brand-proxy/static/favicon-16.png new file mode 100644 index 0000000..5ffe8f1 Binary files /dev/null and b/brand-proxy/static/favicon-16.png differ