Earlier quoted context omitted.
Yeah. I used it for a lack of better term. But you get the idea.
It is the correct term
How I built this website on a Raspberry Pi
61–70 of 94 posts
Re: How I built this website on a Raspberry Pi
#62Earlier quoted context omitted.
> installing the web server on bare metal, On top of a Linux distro is not what people usually call bare metal
I've heard it called bare metal as opposed to a docker container or VM.
Re: How I built this website on a Raspberry Pi
#63Regarding private keys and computers going in for repairs... I know it's not strictly best practice but store your private key in your password manager. That way if the worst happens you aren't up a creek...
At least encrypt your private key and store it somewhere private, and then store the decryption key in your password manager. Then if either one is compromised you are still safe.
Re: How I built this website on a Raspberry Pi
#64Things I learned:
- set the pi to reboot on poweroff
- Given this was TV used the AV output on the PI displaying in NTSC 4:3 (to support customers with older TVs), so had to be aware of overscan margins
- Added a startup script to start chromium in kiosk mode and open the slider page for the show side. worked 95% of the time, if not just power off then on.
- part of the troubleshooting was just unplug and replug - but SD cards will choke on too many power cycles, so instead of SD use a USB->SATA cable and a regular spinning rust HDD - slower but VERY reliable, the journaling file system can recover after power-outage.
- Get the right USB->SATA cable, USB-3 models seem to be more responsive and the PI can boot from them, there are some are too slow and the Pi will fail to boot.
- Slider had it's own login page (outside of CMSimple) to remotely manage the slideshow.
- Also changed the SSH Port to something uncommon to thwart bad guys.
Re: How I built this website on a Raspberry Pi
#65Earlier quoted context omitted.
It is the correct term
It is not https://en.m.wikipedia.org/wiki/Bare_machine
Re: How I built this website on a Raspberry Pi
#66Earlier quoted context omitted.
It is not https://en.m.wikipedia.org/wiki/Bare_machine
Now that's just goofy, I get why they have similar names but it's begging for misunderstandings. https://en.m.wikipedia.org/wiki/Bare-metal_server
Re: How I built this website on a Raspberry Pi
#67Earlier quoted context omitted.
It is the correct term
It is not https://en.m.wikipedia.org/wiki/Bare_machine
Re: How I built this website on a Raspberry Pi
#68Regarding private keys and computers going in for repairs... I know it's not strictly best practice but store your private key in your password manager. That way if the worst happens you aren't up a creek...
Re: How I built this website on a Raspberry Pi
#69Earlier quoted context omitted.
I really appreciated the blog post because it taught me something I’ve always wanted to learn but avoided because PaaS made me complacent. Three years ago, I tried to publish a website on a VPS in the morning to present it to a client at lunch. This was before ChatGPT. I spent hours trying but got nowhere. At the meeting, having failed to publish it, I had to run it locally and share my screen. I was frustrated. Late…
It took me much longer than I'd like to admit to publish my first bare-metal website on a VM. The main issue was SSL—I could never configure Nginx for multiple sites on the same server with TLS. Setting up DNS and pointing your domain to your server also requires some fiddling. It’s not intuitive, and there aren’t many people doing this, so resources with full end-to-end examples are limited. However, with tools like…
Re: How I built this website on a Raspberry Pi
#70I’ve tried a few other approaches in the past and this seems like the simplest, given a familiarity with git.