defguard icon indicating copy to clipboard operation
defguard copied to clipboard

Support for local logos without external hosting

Open F1L337 opened this issue 2 months ago • 1 comments

Is your feature request related to a problem? Please describe. We want to use a custom logo for our application, but we prefer not to host it externally.

Describe the solution you'd like Allow specifying a local file path on the VM to use the logo directly.

Describe alternatives you've considered Uploading and hosting the logo on an external server.

Additional context No additional context.

F1L337 avatar Oct 30 '25 14:10 F1L337

Hey,

You could upload your image on the defguard core server, and add this configuration to nginx:

        location = /logo.svg {
                root /var/www/html;
        }

Then the login logo url in defguard settings would be /logo.svg

gstorme avatar Oct 30 '25 21:10 gstorme