Schlagwort: server
-
Contuining this Thread with regular content: Just unassigned an SSL, and removed its domain from…
Contuining this Thread with regular content:Just unassigned an SSL, and removed its domain from our VPS. I don’t think that over two years of not using the domain, that I will use it now.This makes space for coming projects. #server #vps #ssl #certificates #asca Quelle: Mastodon
-
Filed a bug: https://github.com/mastodon/mastodon/issues/35813 Which is also a test for the…
Filed a bug: https://github.com/mastodon/mastodon/issues/35813 Which is also a test for the patch 😉 #server #asca #mastodon #gdpr #PreviewCards Quelle: Mastodon
-
I have added the environmental variable to the web, streaming and sidekiq services, confirmed…
#aside I have added the environmental variable to the web, streaming and sidekiq services, confirmed that they all see the setting, and it is still being ignored. I will test this workaround by posting a link below, in the main thread #server #mastodon #bugfix #asca Quelle: Mastodon
-
Correction, see #aside here https://mastodon.mariobreskic.de/@mario/115050605879471525 #aside…
Correction, see #aside here https://mastodon.mariobreskic.de/@mario/115050605879471525 #aside and #tldr Running a solo Mastodon instance? Here’s how to keep it clean and #gdpr compliant: – Disable link previews: DISABLE_FETCH_PREVIEWS=true – Purge old PreviewCards via Rails console – Avoid federated content – Self-author everything – Host locally, anonymize IPs Respectful publishing, no third-party hosting #asca #server #mastodon #selfhosted…
-
: the only line that is currently accurate and therefore needed is DISABLE_FETCH_PREVIEWS=true…
#aside: the only line that is currently accurate and therefore needed is DISABLE_FETCH_PREVIEWS=truethis change supersedes the previous setting, and I will take note of that in the tldr below. #server #asca #mastodon Quelle: Mastodon
-
and #tldr Running a solo Mastodon instance?
#aside and #tldr Running a solo Mastodon instance? Here’s how to keep it clean and #gdpr compliant: – Disable link previews: DISABLE_FETCH_PREVIEWS=true – Disable embeds: DISABLE_EMBED_PREVIEW=true – Purge old PreviewCards via Rails console – Avoid federated content – Self-author everything – Host locally, anonymize IPs Respectful publishing, no third-party hosting #asca #server #mastodon #selfhosted #germany…
-
And from there, I delete all #PreviewCards in #mastodon by using these commands: 1.
And from there, I delete all #PreviewCards in #mastodon by using these commands: 1. docker compose exec web bash2. RAILS_ENV=production bundle exec rails consoleAnd then I run this in the console: PreviewCard.destroy_all This will run for a while but it should remove all stored preview cards from my mastodon server, for all posts.And it worked.…
-
Adding these lines to my application.env covered this issue # do not fetch external resources…
Adding these lines to my application.env covered this issue # do not fetch external resourcesDISABLE_FETCH_PREVIEWS=trueDISABLE_EMBED_PREVIEW=true I will need to go through my own feed next to ensure that there are no embeds left over. This is in addition to my recent purging of boosts: https://mastodon.mariobreskic.de/@mario/114982417840616548 #server #asca #mastodon #gdpr Quelle: Mastodon
-
Next thing I need to do is to turn off the mastodon-native “cards” for links, because I am…
Next thing I need to do is to turn off the mastodon-native “cards” for links, because I am future-proofing my self-hosted services against issues with the law here in Germany, especially regarding what is called “framing” here.In short, I better not EVER have a picture anywhere on anything I self-host I have not explicitly acquired…
-
Aside: you can read how to do this here https://doc.wallabag.org/user/configuration/rss/ Copy…
Aside: you can read how to do this here https://doc.wallabag.org/user/configuration/rss/Copy the #RSS link #wallabag puts out and add it as a source in #FreshRSS. And to my surprise, it actually links to the proper article instead of linking to the internal wallabag URL. I would’ve fixed it by parsing it in #huginn though, should it’ve…