Project ideas from Hacker News discussions.

Serving a website on a Raspberry Pi Zero running in RAM

📝 Discussion Summary (Click to expand)

1. The Pi Zero can do more than “legacy” hardware

“A raspberry zero is more powerful than an enterprise server from the 1990s.” – MitPitt
This machine is 10× what we were running web servers on in the ‘90s.”joe_mamba

2. SD‑card endurance and disk‑less tricks

“The point of failure for all of these machines has been the SD card. They seem to last 4 years almost to the day.” – colechristensen
“There are “Industrial” SD cards which should last considerably longer.” – raddan 3. Running services (mail, TLS, etc.) on a Pi and the practical trade‑offs
“Self hosting a mailbox is easy – getting email back out is the hard part.” – lostapathy
“On RPi, I’ve mostly opted to use SSD + USB adapters as they’ve been significantly more reliable than SD.” – tracker1
“I just use Postfix. I originally ran on NetBSD.” – raddan (shows a minimal‑stack approach)

These three themes capture the dominant talking points: the surprising prowess of the Pi Zero, the SD‑card reliability concerns and disk‑less work‑arounds, and the real‑world uses & security considerations when hosting services on it.


🚀 Project Ideas

PiMailKit: Zero‑Cost Email Server Appliance

Summary

  • All‑in‑one email server image for Raspberry Pi Zero that runs on 512 MB RAM, uses SQLite for mail storage, and provides a web admin UI.
  • Simplifies self‑hosting email on cheap hardware, eliminating SD‑card wear and complex setup.

Details| Key | Value |

|-----|-------| | Target Audience | Home users, hobbyists, and small‑business owners who want reliable personal email without cloud services | | Core Feature | Zero‑configuration mail server with web UI, automatic TLS via bundled Caddy, and USB‑SSD boot support | | Tech Stack | Debian‑based OS, SQLite, Postfix, Dovecot, Caddy, Ansible for deployment | | Difficulty | Medium | | Monetization | Revenue-ready: Subscription $5/mo |

Notes

  • HN comment: “I’ve been scared of self‑hosting a mailbox — this would let me run it on a $5 board.”
  • Potential: Lowers entry barrier for self‑hosted email, offers stable long‑term storage via USB boot, sparks discussion on DIY email infrastructure.

RPi TLS Edge: Minimalist Reverse‑Proxy for Diskless Sites

Summary

  • A tiny Docker/OCI image that turns a Raspberry Pi Zero into a self‑contained TLS‑terminating reverse proxy with RAM‑cached static content.
  • Eliminates need for external VPS or cloudflare for small static sites, reducing latency and cost.

Details

Key Value
Target Audience Developers and hobbyists hosting personal blogs or documentation on Pi hardware who want HTTPS without cloud services
Core Feature Automatic RAM‑disk caching, on‑the‑fly Let's Encrypt cert retrieval via acme.sh, and health‑check routing
Tech Stack Alpine Linux, Caddy (or tinyproxy), acme.sh, tmpfs, Docker
Difficulty Low
Monetization Hobby

Notes

  • HN comment: “Why even serve TLS here?” – users want simple TLS without cloud.
  • Potential: Sparks conversation on low‑power TLS, could be packaged as a plug‑and‑play kit for hobbyist sites.

ZeroHost: Peer‑to‑Peer Static Site Hosting on Raspberry Pi Fleet

Summary

  • A SaaS platform that automatically deploys static HTML sites to a rotating fleet of Raspberry Pi Zero devices, handling TLS via built‑in edge router.
  • Provides free‑tier hosting with custom domain, automatic caching, and DDoS‑resistant distribution.

Details

Key Value
Target Audience Bloggers, open‑source project maintainers, and small teams needing cheap, reliable static site hosting
Core Feature One‑click site upload, automatic DNS and HTTPS via Let's Encrypt, CDN‑style edge serving across multiple Pis
Tech Stack Node.js backend, Cloudflare Tunnel, Raspberry Pi OS with darkhttpd, SQLite for site metadata, Docker Swarm
Difficulty Medium
Monetization Revenue-ready: Subscription $3/mo

Notes

  • HN reaction: “Would love to see a Pi that boots diskless and serves site directly.” – indicates strong interest in diskless, low‑overhead hosting.
  • Potential: Generates discussion on decentralized hosting, offers practical utility for low‑traffic sites, could spark community contributions.

Read Later