Add 2 environment variables to configure the application name (APP_NAME) and the logo url (LOGO_URL).
LOGO_URL requires the logo to be served by the web server, so in the case this variable is defined I made the $CONFIG/web/custom-images/ directory accessible from the web server thanks to a symbolic link. For instance, for a logo located in the $CONFIG/web/custom-images/ directory, the LOGO_URL variable must be defined to images/custom-images/logo.svg.
I wrote the associated documentation here, I'll submit a PR to the handbook when this one is merged.
Add 2 environment variables to configure the application name (
APP_NAME
) and the logo url (LOGO_URL
).LOGO_URL
requires the logo to be served by the web server, so in the case this variable is defined I made the$CONFIG/web/custom-images/
directory accessible from the web server thanks to a symbolic link. For instance, for a logo located in the$CONFIG/web/custom-images/
directory, theLOGO_URL
variable must be defined toimages/custom-images/logo.svg
.I wrote the associated documentation here, I'll submit a PR to the handbook when this one is merged.