Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to server favicon.ico with Django and Whitenoise

I use whitenoise for static files and it works fine.

But how can I serve the /favicon.ico file?

There is a setting called WHITENOISE_ROOT, but I don't understand how to use it.

I would like to keep my nginx config simple and serve all files via gunicorn

like image 754
guettli Avatar asked Oct 29 '25 15:10

guettli


2 Answers

If you want those files to be managed by collectstatic

Let's assume after running collectstatic, your favicon.ico file ends up being copied in a root subdirectory, located in your STATIC_ROOT directory.

Then, with:

WHITENOISE_ROOT = os.path.join(STATIC_ROOT, 'root')

Whitenoise will serve all files in STATIC_ROOT/root/ at the root of your application.

In your case, STATIC_ROOT/root/favicon.ico will be served at /favicon.ico.

If you don't want those files to be managed by collectstatic

You can have a root_staticfiles folder in your BASE_DIR which simply contains the static files you want to serve at /.

WHITENOISE_ROOT = os.path.join(BASE_DIR, 'root_staticfiles')

In this case, Whitenoise will serve all files in BASE_DIR/root_staticfiles/ at the root of your application.

Update about pathlib (2022-10-04)

Since a while now, the default settings.py Django creates uses pathlib. To be consistent with it, one may replace os.join calls with / operators, eg.:

WHITENOISE_ROOT = STATIC_ROOT / 'root'
like image 132
Le Minaw Avatar answered Nov 01 '25 04:11

Le Minaw


You could as per this answer by hanleyhansen add the following line in a base template (used by all further templates):

<link rel="shortcut icon" type="image/png" href="{% static 'favicon.ico' %}"/>

Or you could write a redirect view like this answer by wim with some little modification:

from django.views.generic.base import RedirectView
from django.templatetags.static import static

re_path(r'^favicon\.ico$', RedirectView.as_view(url=static('favicon.ico'), permanent=True))
like image 21
Abdul Aziz Barkat Avatar answered Nov 01 '25 05:11

Abdul Aziz Barkat