I feel this way about Lowes vs home depot. Home depot for the real projects, Lowes to buy the designer hammer that never gets used…
I feel this way about Lowes vs home depot. Home depot for the real projects, Lowes to buy the designer hammer that never gets used…
When the rich wage war its the poor who die.
-Mike Shinoda
They make a pill for that…
I mean if every single person on earth did this, it would equate to about 253 years. (8 billion seconds is about 253.68 years) combine that with other efforts could really make a difference. Granted this is a hypothetical number and there are far more factors at play, it’s obviously not as simple as each person doing this = 1 second saved, but just throwing out there that there are a lot of people on earth…
It is still worth it to recycle, reduce, don’t be wasteful, eat less meat, all those things.
Yes, 4 easily accessible in various locations in the house and 1 in the garage. I check them all when I change out the batteries on my smoke alarms, which I do all at once when one starts to chirp.
I’ve been really happy with fedora, specifically the KDE spin. Looks amazing and a lot of things just work.
I’m a sysadmin and we are in the very early stages of rolling out windows 11 to our users. Windows is windows, but I just can’t help but have observations that windows 11 looks like KDE did maybe 10 years ago? It’s like a badly themed linux distro from 2015…
There is plenty of propaganda on lemmy. You just have to realize you will always be fed propaganda and understand there is propaganda on each side of every issue…
Can’t speak for OP but I can say that I switched to proxmox from just running docker and services native. Proxmox offers a lot of flexibility, you can do snapshots, build many different LXC containers very easily, to keep things separate or have better control over resource usage. Also I run mine in a 3 node cluster so I can do live migration of VMs and pretty quick migrations of LXC containers. This all allows me to run my services with little to no downtime and have redundancy.
This looks really cool. Any recommendations on clients(speakers)? I have a couple of older raspberry pies I could use if as remote speakers, but I’d need a few more.
OK but she wouldn’t be as popular and wouldn’t have made that much on OF if it weren’t for her time in the UFC. I mean she’s hot yea, but she’s famous because of her mma career.
Actually there are a lot of people out there building plex servers on VPS services and charging friends/family/others to access (to offset the price of storage and network charges). That’s one of the reasons plex is now blocking certain VPS hosts.
I see so many people driving brand new vehicles, new jeep trucks and grand wagoneers. These vehicles start at like 60k and go up to like 100k. Yeah people can’t afford them, but they’re still buying them. They’re thinking it’s a tomorrow problem.
OK so lots of comments about healthy alternatives and such… but you asked what taste best, well to me that’s the Gatorade glacier cherry. I buy the individual powder packs and mix my own, and I get the zero sugar one, but imo that’s the best flavor.
One of my favorite things eas when I was a teenager living at my parents was roll start my ford ranger because I always parked in a spot that was on a fairly steep incline.
Not sure what you’re looking for, like a cloud mounted file system that’s encrypted? I’ve used fuse s3fs before which is like mounting a s3 bucket to a mount point on the local server, it supports encryption as well.
If you’re looking for a Dropbox like experience you may want something like nextcloud, not sure if it supports client side encryption though.
here is a good video on how to do it: https://piped.video/watch?v=qlcVx-k-02E
pretty much exactly what you’re trying to do.
So the opening of ports works, but it’s not the most secure or best way to do it imo… what happens is the certbot registers with letsencrypts api and attempts to request a cert via http challenge, it then hosts a small website with a code from letsencrypt to prove that you do in fact own the domain and are who you say you are. Let’s encrypt then goes to the url, verifies it sees the text, and issues a cert to the certbot. The problem here is you have to open these ports to the internet, and they need to be open when certificates are renewed (let’s encrypt only issues a 90 day cert)… if you want to leave those ports open that’s not exactly a safe practice, and manually doing it every 3 months is less than ideal…
With dns challenge, the certbot uses the api of your dns provider (cloudflare or porkbun), the process is similar, it talks with letsencrypt, let’s encrypt gives it a string and a dns record it expects to see, then certbot talks to your dns, makes a txt record with the string provided, then let’s encrypt checks for that dns record, if it finds it, it issues a cert to the certbot. In this scenario, certbot is connecting out to your dns provider and making the record for you, no opening of ports. And if you leave the api key active, it will auto renew on a schedule so you don’t have to really worry about it.
I highly recommend looking into dns challenge some more, watch some videos on it there are lots on YouTube.
As for the dns record, not sure if it’s not allowing the wildcard record or what but I wouldn’t use *.example.com, make an entry for the actual host/service you are hosting, like portainer.example.com.
I use nginx proxy manager with dns challenge to get a *.example.com cert that I then use to host services internally. I just checked, it supports dns challenge for porkbun, you may want to give it a try again. Also, you shouldn’t really need to forward dns to duckdns. You can have public dns records point to an internal ip.
This is what I do, I have example.com (dns registered with cloudflare but should work the same with porkbun) I then create an a record for portainer.example.com to 192.168.0.5.
Internally my nginxproxymanager is running at 192.168.0.5 and portainer is running at https://192.168.0.6:9443
Then in nginxproxymanager I create a dns challenge (you’ll have to look up some videos on how to do this, it’s not very difficult it usually just takes a api key and secret key) then I create a new proxy host for portainer.example.com pointing to https://192.168.0.6:9443 and you select the *.example.com as your ssl cert for the proxy host
Now internally go to https://portainer.example.com and it should work.
With containers, most will have a persistent volume that is mapped to the host filesystem. This is where your config data is. When you update a container, just the image is updated(pihole binaries) but it leaves the config files there. Things like your block lists and custom dns settings, theme settings, all of that will remain.