Merge stable icon compatibility fix
This commit is contained in:
@@ -6,7 +6,7 @@ resultaten live in een tweede venster staan. Zie
|
|||||||
[`docs/DUAL_DISPLAY_WORKFLOW.md`](docs/DUAL_DISPLAY_WORKFLOW.md).
|
[`docs/DUAL_DISPLAY_WORKFLOW.md`](docs/DUAL_DISPLAY_WORKFLOW.md).
|
||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<img src="frontend/public/geointel-icon.png" width="92" alt="GeoIntel logo">
|
<img src="frontend/public/geointel-icon-180.png" width="92" alt="GeoIntel logo">
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p align="center"><strong>Evidence-first GeoAI voor België en de Belgische Noordzee.</strong></p>
|
<p align="center"><strong>Evidence-first GeoAI voor België en de Belgische Noordzee.</strong></p>
|
||||||
|
|||||||
@@ -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.svg`: frontend favicon source.
|
||||||
- `deploy/unraid/geointel-icon.png`: DockerMan/Unraid icon source.
|
- `deploy/unraid/geointel-icon.png`: DockerMan/Unraid icon source.
|
||||||
- `frontend/public/geointel-icon.svg`: frontend-served SVG icon.
|
- `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:
|
The Tower deploy scripts also copy the editable DockerMan template to:
|
||||||
|
|
||||||
|
|||||||
@@ -20,7 +20,9 @@ server {
|
|||||||
|
|
||||||
location = /geointel-icon.png {
|
location = /geointel-icon.png {
|
||||||
add_header Cache-Control "public, max-age=3600";
|
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/ {
|
location /assets/ {
|
||||||
|
|||||||
Reference in New Issue
Block a user