work in progress
Selfhosted
A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.
Rules:
-
Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.
-
No spam posting.
-
Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.
-
Don't duplicate the full text of your blog or github here. Just post the link for folks to click.
-
Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).
-
No trolling.
Resources:
- selfh.st Newsletter and index of selfhosted software and apps
- awesome-selfhosted software
- awesome-sysadmin resources
- Self-Hosted Podcast from Jupiter Broadcasting
Any issues on the community? Report it using the report flag.
Questions? DM the mods!
Awesome! Thank you for this link!
Just a note that my PR there doesn't disable pictrs for your own instance's users. It just disables the caching of remote content.
That's fine with me, as I'm the only user in my instance.
Though I do still think this is a huge miss on pictrs to not allow the admin to browse the photos stored on their own server. I mean, someone could upload an illegal photo, not post it, then send the URL that only they could possibly know to whichever relevant government agency anonymously and potentially ruin the life of the admin.
Thank you so much for contributing and making this much needed fix.
I believe this issue is being tracked here: https://github.com/LemmyNet/lemmy/issues/3236
This is a good start, but I think there also needs to be a way to browse all the images stored and shred them.
Great! This is awesome thank you so much!!
For now, you can just route /pictrs/
path to 404 so nginx won't serve any image from pictrs:
location ^~ /pictrs/ {
return 404;
}
Yes! This worked! Thank you!
Yeah it's been obvious and foreseeable that normal admins won't have the bandwidth to handle takedown requests and cp spam attacks. Sadly the only stable state I see for the fediverse is relying on centralized content hosts that can handle those problems. Well, maybe until AI can do it
It sucks there's no way to make use of the current csam blocklists except possibly if you're a big enough instance since you can't get access without approval. Instances going through cloudflare that use the cloudflare caching can use it through them but it only works on images it's serving so wouldn't block them being uploaded, just served to other instances.
Wouldn't you only really need one(or a few) instance that could do the work and flag things for everyone?
Yeah I've envisioned sharable block lists that you can subscribe to similar to pihole. That'd be great
Acronyms, initialisms, abbreviations, contractions, and other phrases which expand to something larger, that I've seen in this thread:
Fewer Letters | More Letters |
---|---|
DNS | Domain Name Service/System |
HTTP | Hypertext Transfer Protocol, the Web |
PiHole | Network-wide ad-blocker (DNS sinkhole) |
SSD | Solid State Drive mass storage |
nginx | Popular HTTP server |
3 acronyms in this thread; the most compressed thread commented on today has 5 acronyms.
[Thread #91 for this sub, first seen 29th Aug 2023, 23:55] [FAQ] [Full list] [Contact] [Source code]
ily bot
You could just set the upload limit to 1kb?
The caching is probably the problem, not the uploads on a personal lemmy instance.
I wrote a patch for Lemmy a week or so ago if you want to skip the caching: https://github.com/LemmyNet/lemmy/pull/3897
I hope this gets merged soon. Saves us on storage space and makes monitoring media uploads easier.
I wonder if you instead of disabling Pictrs you could just block image uploads to your Lemmy site, or maybe use a PiHole or Adguard on your network to block them.
But then I wouldn't be able to see photos on my instance. I want to see them, I just don't want the federated cache being saved on my SSD.
Hmmm... I do not have Pictrs because I am using the Yunohost Lemmy package, so there are no images on my instance, but I can still see images while logged into my instance.
Have you tried checking the logs of the lemmy container?