server:jellyfin
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| server:jellyfin [2025/09/18 08:26] – marlonivo | server:jellyfin [2025/10/01 06:14] (current) – marlonivo | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| - | Installation | + | === JELLYFIN === |
| - | curl -fsSL https:// | + | Jellyin is for streaming, its plug and play, its good trust me. But you have a lot of files acummulating when streaming them on your own platform so we begin with a Hetzner Storage Box tutorial, so you can skip it if you already own some kind of big storage to save all of your files on. |
| + | |||
| + | < | ||
| + | apt install hcloud-cli | ||
| + | </ | ||
| + | |||
| + | ==Installation== | ||
| + | < | ||
| + | curl -fsSL https:// | ||
| + | gpg --dearmor -o / | ||
| + | tee / | ||
| + | apt update | ||
| + | apt install -y jellyfin | ||
| + | </ | ||
| + | |||
| + | Start the Service: | ||
| + | < | ||
| + | systemctl enable --now jellyfin | ||
| + | </ | ||
| ==NGINX== | ==NGINX== | ||
| + | < | ||
| / | / | ||
| ---------------------------------------------- | ---------------------------------------------- | ||
| Line 8: | Line 27: | ||
| listen 80; | listen 80; | ||
| listen [::]:80; | listen [::]:80; | ||
| - | server_name | + | server_name |
| location / { | location / { | ||
| Line 18: | Line 37: | ||
| listen 443 ssl; | listen 443 ssl; | ||
| listen [::]:443 ssl; | listen [::]:443 ssl; | ||
| - | server_name | + | server_name |
| - | ssl_certificate / | + | ssl_certificate / |
| - | ssl_certificate_key / | + | ssl_certificate_key / |
| include / | include / | ||
| ssl_dhparam / | ssl_dhparam / | ||
| Line 38: | Line 57: | ||
| } | } | ||
| } | } | ||
| + | ---------------------------------------------- | ||
| + | nginx -t && systemctl reload nginx | ||
| + | </ | ||
| + | |||
| + | ==JELLYFIN== | ||
| + | Visit your server IP at 8096 '' | ||
| + | |||
| + | 🎉 FINISH enjoy streaming with your own Jellyfin Instance. | ||