feat: custom /favicon.ico#1190
Open
wesleyboar wants to merge 2 commits into
Open
Conversation
Adds a Django view that serves /favicon.ico from either a remote CDN URL or a local static file, based on PORTAL_FAVICON["is_remote"]. - PDF renderers fetch /favicon.ico from origin and ignore <link> tags - Caches response for 24 hours via @cache_page
Qodo reviews are paused for this user.Troubleshooting steps vary by plan Learn more → On a Teams plan? Using GitHub Enterprise Server, GitLab Self-Managed, or Bitbucket Data Center? |
wesleyboar
added a commit
to TACC/Camino
that referenced
this pull request
Jul 1, 2026
Lets /favicon.ico fall through to Django so the new CMS proxy view can serve it. Required by TACC/Core-CMS#1190.
rstijerina
pushed a commit
to TACC/Camino
that referenced
this pull request
Jul 2, 2026
Lets /favicon.ico fall through to Django so the new CMS proxy view can serve it. Required by TACC/Core-CMS#1190.
wesleyboar
added a commit
to TACC/Camino
that referenced
this pull request
Jul 2, 2026
Lets /favicon.ico fall through to Django so the new CMS proxy view can serve it. Required by TACC/Core-CMS#1190.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Overview
Adds a Django view that serves
/favicon.icodirectly from Django.Why?
PDF renderers fetch
/favicon.icofrom origin and won't follow a<link>tag pointing to a CDN URL, so this view is needed to serve the correct favicon to those clients.PORTAL_FAVICON["is_remote"]TrueFalsestaticfiles.finders*Responses are cached for 24 hours.
Related
Caution
Changes
taccsite_cms/views.pywithfaviconproxy viewtaccsite_cms/urls.pyto register^favicon\.ico$routeTesting
make startsettings_local.py, setcurl -si http://localhost:8000/favicon.ico.200 image/x-iconwith the remote favicon.curl -si http://localhost:8000/favicon.ico200 image/x-iconwith the local static file.UI
GH.1190.mov