Restore stable GeoIntel icon endpoint
GeoIntel release gates / Compile, test, contracts and builds (push) Failing after 24s
GeoIntel release gates / Python and npm vulnerability policy (push) Failing after 31s
GeoIntel release gates / GIS image, SBOM and container scan (push) Failing after 1m50s

This commit is contained in:
Jens
2026-08-23 22:42:21 +02:00
parent 9e8a7a5883
commit 730d8c8312
3 changed files with 6 additions and 3 deletions
+2 -1
View File
@@ -35,7 +35,8 @@ http://<unraid-ip>:${GEOINTEL_FRONTEND_PORT}/geointel-icon.png
- `deploy/unraid/geointel-icon.svg`: frontend favicon source.
- `deploy/unraid/geointel-icon.png`: DockerMan/Unraid icon source.
- `frontend/public/geointel-icon.svg`: frontend-served SVG icon.
- `frontend/public/geointel-icon.png`: frontend-served PNG icon.
- `frontend/public/geointel-icon-180.png`: frontend PNG icon, also served at
the stable `/geointel-icon.png` compatibility URL by nginx.
The Tower deploy scripts also copy the editable DockerMan template to:
+3 -1
View File
@@ -20,7 +20,9 @@ server {
location = /geointel-icon.png {
add_header Cache-Control "public, max-age=3600";
try_files /geointel-icon.png =404;
# Preserve the stable DockerMan/public URL while the frontend keeps
# its explicit 32px and 180px icon variants.
try_files /geointel-icon-180.png =404;
}
location /assets/ {