This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| computing:jellyfin [2025/12/09 16:31] – oemb1905 | computing:jellyfin [2026/06/21 16:08] (current) – oemb1905 | ||
|---|---|---|---|
| Line 10: | Line 10: | ||
| ------------------------------------------- | ------------------------------------------- | ||
| - | |||
| - | Latest Updates: https:// | ||
| This tutorial is for Debian users wanting to set up a production-ready Jellyfin server. This instance runs on a VM inside my virsh+qemu stack recently recapped in detail in this article. This VM is set up with a LAMP stack, a reverse proxy with Let's Encrypt, automated syncing, scanning, and some hardening measures. I'm using fpm with the mpm_event handler for concurrency. My standard fail2ban setup is in place for protection. This instance is designed for private media watching. The library is imaged off my master library via a remote source and includes aggressive cover art fetching. Don't proceed before TLS/LAMP stack is in place. If you need help, visit https:// | This tutorial is for Debian users wanting to set up a production-ready Jellyfin server. This instance runs on a VM inside my virsh+qemu stack recently recapped in detail in this article. This VM is set up with a LAMP stack, a reverse proxy with Let's Encrypt, automated syncing, scanning, and some hardening measures. I'm using fpm with the mpm_event handler for concurrency. My standard fail2ban setup is in place for protection. This instance is designed for private media watching. The library is imaged off my master library via a remote source and includes aggressive cover art fetching. Don't proceed before TLS/LAMP stack is in place. If you need help, visit https:// | ||
| Line 185: | Line 183: | ||
| </ | </ | ||
| - | Again, this script runs daily and/or manually as needed. Sometimes I setup custom jails for fail2ban, but I am leaving this one stock for now. I think regular fail2ban with apache' | + | Again, this script runs daily and/or manually as needed. Sometimes I setup custom jails for fail2ban, but I am leaving this one stock for now. I think regular fail2ban with apache' |
| + | |||
| + | < | ||
| + | sudo apt install acl -y | ||
| + | sudo setfacl -R -m u: | ||
| + | sudo setfacl -R -m d: | ||
| + | sudo setfacl -R -m g: | ||
| + | sudo setfacl -R -m d: | ||
| + | </ | ||
| - | --- // | + | --- // |