Like how on Debian’s website, you can find their ISO’s and other related files in this very simple file browser layout which looks kind of old but I want that, know any projects or way to set something like that up? The modern self-hosted stuff just does not seem simple enough, and both aesthetically and from a functional perspective I would like something like what debain does with their own files. I also want it to be reliable, for some reason, with both immich and nextcloud, a relative of mine was unable to download alot of photos without the download not even starting on Nextcloud, or it stopping 30% of the way on immich, if reliable downloads necessitate a desktop app with their own unique file exchanging protocol I would be ok with that too (willing to compromise with the desired aesthetic and minimalist design)

The ideal thing is the thing here: https://cdimage.debian.org/debian-cd/

  • hperrin@lemmy.ca
    link
    fedilink
    English
    arrow-up
    1
    ·
    edit-2
    22 hours ago

    Nephele with SERVE_LISTINGS turned on and a read only mount.

    It shows listings in the browser, just like Apache, but can also be accessed with a file browser, because it’s a WebDAV server.

  • rtxn@lemmy.world
    link
    fedilink
    English
    arrow-up
    14
    ·
    2 days ago

    You can use basically any HTTP server to achieve that, like Apache or Nginx. If the directory (specified by the path in the URL) doesn’t contain a file that matches the default file in the config (index.html and such), the server will list the directory contents instead.

  • neidu3@sh.itjust.works
    link
    fedilink
    English
    arrow-up
    9
    ·
    edit-2
    2 days ago

    Those are directory listings. They are the default in apache2 (maybe others as well… I only know apache2), unless disabled or disallowed in the configs (enabled and allowed by default). If the directory you’re accessing such as http://192.168.123.123/somedir/ does not contain a default file, such as an index.html, the directory list will be served instead.

  • thenose@lemmy.world
    link
    fedilink
    English
    arrow-up
    1
    ·
    2 days ago

    I use yazi via ssh(it beats most file browsers even the gui once with photo preview and such) and before that i was browsing through the casa OS file manager. Casa was my second entry to self hosting

    • callcc@lemmy.world
      link
      fedilink
      English
      arrow-up
      1
      ·
      1 day ago

      Don’t recommend using FTP. It’s a shitty old protocol that needs to die. Just use nginx or apache with directory listing enabled.