this post was submitted on 25 Jul 2024
94 points (98.0% liked)

Linux

47295 readers
742 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

This is my first post on my new site, I hope someone finds it helpful!

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 4 points 1 month ago* (last edited 1 month ago) (5 children)

I know I know. If you wanna install certbot another way feel free. Share it with me I'm sure it'll take up less space. I only did it that way because it's the certbot official©®™ instructions. That and I had issues with the other method I tried.

[–] [email protected] 11 points 1 month ago (1 children)

apt install python3-certbot :)

[–] [email protected] 1 points 1 month ago (1 children)

Hah did not know about that thanks!

[–] [email protected] 1 points 1 month ago (1 children)

Yeah it took a while for me to find as well, Debian moved to managing alot of packages you used to install with pip. In many cases you can just prefix pip packages with python3- and find them via apt.

[–] [email protected] 1 points 1 month ago

I knew that worked for a lot of stuff. That used to be what I'd try first but I honestly just use a venv for pretty much anything that uses pip nowadays. Still helpful to know there is a package though thanks! I intend to test it out.

[–] [email protected] 8 points 1 month ago (1 children)

Another thing you could check out is Caddy, comes with a lot of stuff onboard and has an optional crowdsec module (though I should point out that I never used that module myself so I can’t make guarantees how well it works) https://caddyserver.com/

[–] [email protected] 1 points 1 month ago

Excellent thank you! I'll check this out.

[–] [email protected] 7 points 1 month ago (2 children)

I can really recommend acme.sh if you wanted to try a certbot alternative.

[–] [email protected] 2 points 1 month ago

Or a docker image with Nginx Proxy Manager. You get a working reverse proxy, an automatically renewing certbot, easy to use UI, plus a working nginx install that you can use for serving static files, forward proxy etc.

[–] [email protected] 1 points 1 month ago

Awesome I'll look into it for sure!

[–] [email protected] 4 points 1 month ago (1 children)

I like docker and traefik, traefik has let's encrypt built-in.

[–] [email protected] 2 points 1 month ago

I've got plenty of experience with docker and I've heard of traefik but never used it. Thanks, I'm gonna look into it.

[–] [email protected] 3 points 1 month ago (1 children)

It is in the official repos

sudo apt-get install certbot

You also can use a container

[–] [email protected] 2 points 1 month ago

I could have swore I tried it. facepalm I'll check that out then I might edit that part.