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.
-
No spam.
-
Posts are to be related to self-hosting.
-
Don't duplicate the full text of your blog or readme if you're providing a link.
-
Submission headline should match the article title.
-
No trolling.
-
Promotion posts require active participation, with an account that is at least 30 days old. F/LOSS without a paywall has exceptions, with requirements. See the rules link for details. Tags [CBH] or [AIP] are required, see the links in Rule 8 for details.
-
AI-related discussions and AI-involved promotional posts have additional requirements for tagging, as noted in Rule 7 and the AI & Promotional Post Expanded Rules post, and find example disclosures here.
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!
view the rest of the comments
What temp ranges are these good for? Can it run off solar+battery?
How are you protecting against supply chain attacks?
Hi Brkdncr, thanks for the question!
We honestly do not have a concrete answer for the temp ranges. We've done some testing and made sure they stay under 150F in the 3D case shown in the picture.
We do not currently directly support solar/battery usage. You can probably DIY something together though!
For Software: We've started to thoroughly go through our dependencies by using the Cargo Vet tool, in addition to looking for unmaintained dependencies, dependencies that we can replace with a few lines of code, etc.
For Hardware: We're using trusted hardware providers like Raspberry Pi to try to mitigate this.
Let me know if you have any other questions!
Cargo is a red flag. It doesn't verify any cryptographic signatures of what it downloads, unlike apt and maven.
To help mitigate that, we use Cargo.lock files to pin all of our dependencies checksums (integrity validation) until we want to upgrade. When we upgrade, we're working on having Cargo Vet to manually go through (in addition to trusted third party auditors) to ensure the changed code isn't malicious.
Where can I read more about cargo vet and these third party auditors?
https://mozilla.github.io/cargo-vet/index.html
2.4 "Importing Audits" goes into these third party auditors (the registry).
Distributed registries of integrity hashes is an interesting solution to the lack of cryptographic signatures. Thanks!