管理者になって管理画面からアイコンを設定してみたけど、ページヘッダ部分だけ変わってfaviconは変わらんな…?
nginxで変更してみる。
https://lemmy.juggler.jp/static/assets/icons/favicon.svg
https://lemmy.juggler.jp/static/assets/icons/apple-touch-icon.png
root /usr/share/nginx/html/lemmy;
location /static/assets/icons/apple-touch-icon.png {
rewrite ^ /apple-touch-icon.png break;
}
location /static/assets/icons/favicon.svg {
rewrite ^ /favicon.svg break;
}
You must log in or register to comment.