mirror of
https://github.com/healthchecks/healthchecks.git
synced 2026-04-26 15:35:53 +03:00
[GH-ISSUE #697] Local Image: SITE_LOGO_URL #504
Labels
No labels
bug
bug
bug
feature
good-first-issue
new integration
pull-request
question
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/healthchecks#504
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @rwjack on GitHub (Aug 20, 2022).
Original GitHub issue: https://github.com/healthchecks/healthchecks/issues/697
Is it possible to have the SITE_LOGO image served locally on the docker host?
Perhaps serve the image statically and have:
SITE_LOGO_URL=http://healthchecks.local:port/static/logo.pngHealthchecks being behind a reverse proxy shouldn't be a problem, because it should be able to fetch resources from itself, correct?
Also, I've noticed
docker/.env.exampledoesn't containSITE_LOGO_URL@cuu508 commented on GitHub (Aug 23, 2022):
Healthchecks uses the
SITE_LOGO_URLvalue in the HTML template as-is. For example, if you setYou will end up with
in the HTML. You should use an URL that the end user's browser will be able to access.
You can, for example, drop a custom logo in
/static/img/custom-logo.pngand use:Or you can use an absolute URL:
@rwjack commented on GitHub (Aug 23, 2022):
Awesome, thanks!