Yeah but why would I make myself dependent on Cloudflare.
- 0 Posts
- 13 Comments
To be fair, you can simply selfhost MinIO.
smiletolerantly@awful.systemsto Privacy@lemmy.ml•Encrypt your Linux with LUKS, like seriously.0·6 days agoAnd what is the advantage of that?
smiletolerantly@awful.systemsto Privacy@lemmy.ml•Encrypt your Linux with LUKS, like seriously.0·6 days agoAlso I am pretty sure I have at least some secrets in my shell history
smiletolerantly@awful.systemsto Selfhosted@lemmy.world•What's the best chat to self host?English5·6 days agoLol, exact same situation here.
Quick question, did the migration to continuwuity break calls for you as well?
smiletolerantly@awful.systemsto Privacy@lemmy.ml•In what ways would bridging messages from a proprietary app to a free one be more private?0·11 days agoThis comment section is… something.
If you host the bridges yourself, it makes no difference to privacy.
It’s simply convenient to have all chats in one place 🤷🏼♀️
Grew up on it. My dad set up a Ubuntu 4.10 PC for my brother and I when we were 3/5 (no internet, obv), and it stuck.
Used Windows for a brief time in highschool to be able to play online with friends.
Went right back to Linux when going to university. Will never change back, both for ideological reasons and because Linux is just better.
Next step: NixOS on a phone
smiletolerantly@awful.systemsto Android@lemdro.id•Google confirms Android dev verification will have free and paid tiers, no public list of devs - Ars TechnicaEnglish0·14 days agoA substantial amount of open source devs will probably just give up working on their projects if they can no longer be installed by most users.
That will also affect Graphene users.
Graphene will also only work until Google one day says “You know what… No!” and stops allowing it on their (new) hardware. I don’t think that’s far in the future.
smiletolerantly@awful.systemsto Explain Like I'm Five@lemmy.world•Please someone explain how there could be a gov shutdown when republicans control the senate and the house? But are blaming the Dems who are way in the minority???English0·17 days agoLmao I kept thinking you forgot to put quotes and was waiting for the inevitable “…this is what too many idiots think, even though it is obvious bullshit”, and yet it just…never came. Amazing. This might be the single most stupid comment I’ve ever read, and I’ve been on the internet for a while.
smiletolerantly@awful.systemsto F-Droid@lemmy.ml•Google's dev registration plan will end the F-Droid project0·19 days agoYou will simply not be able to install anything, unless the FOSS dev is cool with providing their ID to Google, and agrees to its ToS, and Google likes the app and signs it.
Which many devs (myself included) will definitely NOT be.
smiletolerantly@awful.systemsto Selfhosted@lemmy.world•Do bots/scrapers check uncommon ports?English1·20 days agoMy ISP blocks incoming data to common ports unless you get a business account.
Oof, sorry, that sucks. I think you could still go the route I described though: For your domain
example.com
and example servicemyservice
, listen on port:12345
and drop everything that isn’t requestingmyservice.example.com:12345
. Then forward the matching requests to your service’s actual port, e.g.23456
, which is closed to the internet.Edit: and just to clarify, for service
otherservice
, you do not need to open a second port; stick with the one, but in addition tomyservice.example.com:12345
, also accept requests forotherservice.example.com:12345
, but proxy that to the (again, closed-to-the-internet) port:34567
.The advantage here is that bots cannot guess from your ports what software you are running, and since caddy (or any of the mature reverse proxies) can be expected to be reasonably secure, I would not worry about bots being able to exploit the reverse proxy’s port. Bots also no longer have a direct line of communication to your services. In short, the routine of “let’s scan ports; ah, port x is open indicating use of service y; try automated exploit z” gets prevented.
smiletolerantly@awful.systemsto Selfhosted@lemmy.world•Do bots/scrapers check uncommon ports?English1·20 days agoI am scratching my head here: why open up ports at all? It it just to avoid having to pay for a domain? The usual way to go about this is to only proxy 443 traffic to the intended host/vm/port based on the (sub) domain, and just drop everything else, including requests on 443 that do not match your subdomains.
Granted, there are some services actually requiring open ports, but the majority don’t (and you mention a webserver, where we’re definitely back to: why open anything beyond 443?).
That is actually a really interesting approach to moderation, huh.