• Decronym@lemmy.decronym.xyzB
    link
    fedilink
    English
    arrow-up
    1
    ·
    edit-2
    5 days ago

    Acronyms, initialisms, abbreviations, contractions, and other phrases which expand to something larger, that I’ve seen in this thread:

    Fewer Letters More Letters
    Git Popular version control system, primarily for code
    HTTP Hypertext Transfer Protocol, the Web
    IP Internet Protocol
    NFS Network File System, a Unix-based file-sharing protocol known for performance and efficiency
    Plex Brand of media server package
    RPi Raspberry Pi brand of SBC
    SBC Single-Board Computer
    SMB Server Message Block protocol for file and printer sharing; Windows-native
    SSH Secure Shell for remote terminal access
    SSL Secure Sockets Layer, for transparent encryption
    TLS Transport Layer Security, supersedes SSL
    VPN Virtual Private Network
    VPS Virtual Private Server (opposed to shared hosting)
    nginx Popular HTTP server

    12 acronyms in this thread; the most compressed thread commented on today has 17 acronyms.

    [Thread #203 for this comm, first seen 1st Apr 2026, 09:50] [FAQ] [Full list] [Contact] [Source code]

      • yannic@lemmy.ca
        link
        fedilink
        English
        arrow-up
        1
        ·
        7 days ago

        You’ve piqued my interest. Where can I read about it?

        I did a quick search on their github and came up empty. Maybe no one mentioned “htaccess” in the issue.

        • quick_snail@feddit.nl
          link
          fedilink
          English
          arrow-up
          1
          ·
          7 days ago

          Search for “basic auth”

          Its the only software project I know of that you can’t put behind http basic auth. They mark this bug as “wontfix” every time someone points it out to them

          • yannic@lemmy.ca
            link
            fedilink
            English
            arrow-up
            1
            ·
            6 days ago

            Basic auth? The insecure authentication method?

            Ok, I’ll look it up anyway. Under the jellyfin repository, there were eight results, none of which seemed to describe what you meant, and under the jellyfin-web repository, there were none. Using a web crawler search, I was able to find Issue #123 for jellyfin-android

            Is that it?

            • quick_snail@feddit.nl
              link
              fedilink
              English
              arrow-up
              1
              ·
              edit-2
              5 days ago

              Basic auth is very secure.

              Unlike custom implemented logins. So it’s common to use basic auth in front of custom auth implementations. So even when the app has a login vuln, you’re safe.

              Yes that ticket is one of many.

              Try searching the repo. Make sure to backspace out the prefix that ignores closed tickets.

              • yannic@lemmy.ca
                link
                fedilink
                English
                arrow-up
                1
                ·
                5 days ago

                That’s exactly how I searched. If you want security, it’s probably best to follow the Unix philosophy of do one thing and do it well. In other words, don’t trust someone building a media server to handle auth and instead use the OIDC or LDAP plugins.