I followed this question's answers to change my django admin panel title header.
I tried this:
There is an easy way to set admin site header - assign it to current admin instance in urls.py like this
admin.site.site_header = 'My admin'
But it just works when I'm running the page via Python manage.py runserver
My question is how can I change the admin title header when I'm running the site via gunicorn
and nginx