2023-08-08 13:39:20 +02:00
|
|
|
# mastodon-customizations
|
|
|
|
|
2023-08-08 13:47:24 +02:00
|
|
|
Customizations for https://social.lila.network
|
|
|
|
|
|
|
|
## Favicon
|
|
|
|
```bash
|
|
|
|
su - mastodon
|
|
|
|
./custom-favicon.sh
|
|
|
|
|
|
|
|
cd ~/live
|
|
|
|
RAILS_ENV=production bundle exec rake tmp:cache:clear
|
|
|
|
RAILS_ENV=production bundle exec rails assets:precompile
|
|
|
|
|
|
|
|
# then become root
|
|
|
|
sudo systemctl reload mastodon-web
|
2023-08-08 13:49:50 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
custom-favicon.sh Source: https://github.com/mastodon/mastodon/discussions/20945#discussioncomment-4327413
|