[docker] Is it possible to configure a custom favicon? #57
-
Is there a way to configure a custom favicon on the hosting side |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 8 replies
-
Yes there is: for simple theme the favicon is located in https://github.com/searxng/searxng/tree/master/searx/static/themes/simple/img -> With docker: mount the changed files as two volumes likes this (example for docker-compose) inside the SearXNG container; the custom volumes:
- ./favicon.png:/usr/local/searxng/searx/static/themes/simple/img/favicon.png
- ./favicon.svg:/usr/local/searxng/searx/static/themes/simple/img/favicon.svg Does this answer your question? |
Beta Was this translation helpful? Give feedback.
-
Dang, you guys rock. Thanks for the info ! |
Beta Was this translation helpful? Give feedback.
-
I'm not able to find searxng folder in local, I can see searxng-docker |
Beta Was this translation helpful? Give feedback.
Yes there is: for simple theme the favicon is located in https://github.com/searxng/searxng/tree/master/searx/static/themes/simple/img ->
favicon.png
as well asfavicon.png
you can change those files to a custom favicon in your script installtion without docker.With docker: mount the changed files as two volumes likes this (example for docker-compose) inside the SearXNG container; the custom
favicon.png
as well asfavicon.svg
file both need to be in the same dir as the docker-compose file for this example:Does this…