I would like to share my jellyfin movies and tv shows with my friend. I was thinking about allowing only his IP address to connect to my jellyfin server.

Is it a crime? Can I be arrested for this? I do not plan on running a mega operation for hundreds of people.

Is that ok to do?

  • @ssm
    link
    English
    2
    edit-2
    1 month ago

    to send:

    GZIP=-9 pax -wz /some/files | openssl some-cipher -k 'really secure password' | ssh user@host 'cat >file.ustar.gz.enc'
    

    to unpack:

    openssl some-cipher -d <file.ustar.gz.enc | pax -rz
    

    if your distribution sucks and you don’t have pax, tar should work too.