Hey friends. I finally fired nextcloud - and so should you.

  • SayCyberOnceMore@feddit.uk
    link
    fedilink
    English
    arrow-up
    8
    ·
    21 hours ago

    My journey:

    Random stuff --> OwnCloud --> Nextcloud --> syncthing + Radicale

    I gave up with the constant changes during upgrades and increasing dependencies for features that we weren’t using.

    Now my system’s lean, light, responsive and just works (on a Pi3)

    Prosody’s next…

  • Yerbouti@sh.itjust.works
    link
    fedilink
    English
    arrow-up
    5
    ·
    1 day ago

    Fair enough, these are interesting points. I pay for ssd storage and host Nextcloud on it. It use to be quite sluggish but nowadays it’s fast enough for my needs so I don’t really see any reason to change. I use the office suite, the rss feed reader, memories to sync my pictures, task, and quite a few things actually. I dont need talk much for now but I might. So yeah, it really suite my needs for now.

  • hietsu@sopuli.xyz
    link
    fedilink
    English
    arrow-up
    1
    ·
    19 hours ago

    I’d be more interested in finding a project that is not folder structure based like all these tend to be, but instead the files would be managed by metadata/attributes (and of course based on these you could still present the files in a classic folder structure when needed). So more of a database approach like in many Document Management systems, f.ex. M-Files.

    • nightrider@lemmy.world
      link
      fedilink
      English
      arrow-up
      3
      ·
      17 hours ago

      After extensive looking the only selfhosted one that I can find that fits the bill is Seafile (latest update) which has a metadata based file storage function. Bear in mind setting up docker compose is a PITA but once you get it working (subject to license restriction - only 3 on free ‘pro’ tier) it works great.

      Only other option that hits the same is the software I’m trying to replace: SharePoint (shudder). As much as Microsoft sucks the document libraries with columns are blooming powerful when combined with power automate. Good luck hunting!

  • Yerbouti@sh.itjust.works
    link
    fedilink
    English
    arrow-up
    23
    ·
    2 days ago

    What’s wrong with Nextcloud? It’s not as snappy as google drive but it’s fine for small organisation IMO. I personally really enjoy it.

    • bytepursuits@programming.devOP
      link
      fedilink
      English
      arrow-up
      16
      ·
      edit-2
      23 hours ago

      I’m sorry - I understand it’s free, but this is how I feel:

      Nextcloud stopped being a fast, reliable file sync tool a long time ago (I mean - was it ever? it’s free thats why most people use it).
      It’s become a bloated “groupware suite” full of useless Talk, Groupware, AI, and half-finished apps…
      while the core sync still chokes on large folders and locks files like it’s 2015.

      The Core Problem PHP-FPM and mod_php are ancient architectures - every request spins up, runs, and dies. No persistent memory, no connection reuse, and no async I/O, no coroutines, slow as molasses non scalable backend held together only with redis.
      Result: slow UI, slow sync, race conditions, and constant errors. Tons of open GitHub issues about sync bugs, upgrades, and no action from nextcloud. I’m sick of it. I’m done with it and I will be very direct about it.

      Comments and issues and proposed classical PHP solutions are shocking:

      https://docs.nextcloud.com/server/latest/admin_manual/configuration_files/big_file_upload_configuration.html#configuring-your-web-server Nextcloud suggests you up its ram to 16Gb. 16Gb Carl!

      php_value upload_max_filesize 16G
      php_value post_max_size 16G
      

      What about 17Gb files Nextcloud? nogo? don’t use nextcloud then? Have you ever heard of TUS?

      opencloud can run circles around nextcloud now - it is written in GO, much better architecturally, long running, uses connection pooling, does not need redis to survive.

      What they (nextcloud) should do: Hyperf + Swoole
      Swoole turns PHP into a high-performance async server - persistent memory, connection pooling, non-blocking I/O.
      Hyperf+swoole - can rival GOlang. Hyperf builds on it: native WebSockets, coroutine HTTP, and microservice-ready architecture. You get live sync, push notifications, and massive concurrency with a fraction of the resource cost. Add TUS (resumable uploads) and you finally have reliable file transfer on bad connections.

      I don’t want bloat. I want reliable sync that just works. I’d rather self-host a lean, fast sync app than manage ten half-integrated apps. They need to switch to Hyperf + Swoole - and bring Dropbox-level sync to self-hosting without the pain.

      Nextcloud could fix its image by: Refocusing on sync reliability and performance. Moving core services to a persistent, async engine (Swoole / hyperf, etc). Making “Nextcloud Core” modular - separate entirely from the groupware/ai/talk - I don’t fucking need it. Until then, those who care about speed, concurrency, and modern PHP should look beyond the old PHP-FPM world.

      Im not the only person - people are sick of this inaction:

  • Static_Rocket@lemmy.world
    link
    fedilink
    English
    arrow-up
    29
    ·
    2 days ago

    I’m curious about opencloud. It’s flashy, uses go, and has everything that I’m actively using in Nextcloud. The license does make me a little cautious about it though. Apache v2 on the server side is unusually permissive. AGPLv3 on the web ui is cool, but it’s also not really helpful if you’re not required to publish server changes.

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

      The weaker (permissive instead of copyleft) license alone is a reason to be suspicious of both the project and OP. At this point, it’s just telegraphing plans to eventually go proprietary and enshittify.

      • bytepursuits@programming.devOP
        link
        fedilink
        English
        arrow-up
        13
        arrow-down
        1
        ·
        2 days ago

        and I would have gotten away with it if it wasnt for you meddling kids.
        NO - but seriously completely gratuitous from my end. I’m fed up with nextcloud.

        as to licensing - yeah I didnt even look at it, opencloud was forked from owncloud I figured it is something consistent. I like they use matrix for their chat.

        as to enshittification - that is something nobody can predict but I have seen GPL3 went private many times: https://directus.io/blog/changing-our-license-one-year-later or mongo I think was agpl3.

        tbh yes - licensing is not something I looked into strongly.

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

        Well, I wouldn’t go that far. Let’s not forget Nextcloud started as a fork for the same reason. The permissive license doesn’t stop us from keeping it alive, but it is something to be cautious of.

    • TheMadCodger@piefed.social
      link
      fedilink
      English
      arrow-up
      4
      ·
      2 days ago

      Can’t comment on the license, but I switched to it from NextCloud a few months ago and I’ve been generally very happy with it for where it is in the development process. It’s not perfect yet, but it’s also still earlyish.

  • gopher@programming.dev
    link
    fedilink
    English
    arrow-up
    11
    ·
    edit-2
    1 day ago

    Interesting. Nextcloud does feel pretty sluggish and probably in need of a major overhaul of the backend. Still, it works quite well .

    • irmadlad@lemmy.world
      link
      fedilink
      English
      arrow-up
      6
      arrow-down
      3
      ·
      2 days ago

      Nextcloud, tho a very capable package with just about all the bells and whistles one could ever need, is a resource eating beast. LOL

        • imetators@lemmy.dbzer0.com
          link
          fedilink
          English
          arrow-up
          1
          ·
          19 hours ago

          Mine runs on some rockchip and 2gb ram h side drivestor gen2 Nas. Sluggish, but works with no troubles so far. Or is indeed not a hardware hungry I stance if you use it for you yourself and maybe a few family members

        • illusionist@lemmy.zip
          link
          fedilink
          English
          arrow-up
          3
          ·
          1 day ago

          It isn’t. It depends on the task and load though. The better the hardware, the faster it is.

  • LemmyPlay@lemmings.world
    link
    fedilink
    English
    arrow-up
    6
    ·
    2 days ago

    Thanks for putting this together. I have been dragging my feet on self-hosting NextCloud, and now it looks like that procrastination may just work out in my favor.

    One question, can I just run this on localhost and access through my local network instead of using a reverse proxy? If so, how? That’s all I need, I don’t use a reverse proxy now and would be fine just using a self-hosted VPN to access it when away from my private network. The docs make it seem like there is pretty stringent requirements on having to use a reverse proxy and certs, etc which was the same ‘issue’ I had with NextCloud. I guess I’m the minority here, but curious if anyone can help answer.

    • rtxn@lemmy.world
      link
      fedilink
      English
      arrow-up
      8
      ·
      edit-2
      1 day ago

      You can absolutely use it without a reverse proxy. A proxy is just another fancy HTTP client that contacts the server on the original client’s behalf and forwards the response back to it, usually wrapped in HTTPS. A man in the middle that you trust.

      All you have to do is expose the desired port(s) to all addresses:

      # ...
        - ports:
          - 8080:8080
      

      …and obviously to set the URL environment variables to localhost or whatever address the server uses.

  • illusionist@lemmy.zip
    link
    fedilink
    English
    arrow-up
    12
    ·
    2 days ago

    You use a mesh vpn with a reverse proxy? How does that work?

    I run opencloud containers straight on my NAS server running ubuntu LTS, I then expose container ports on tailscale only, and then I route it via nginx proxy manager through my public VPS via tailscale.

    I’m not sure. Is it public facing or not? What’s the mesh vpn for?

    and so should you.

    Why should I? I couldn’t read it in the post. I use nextcloud because its easy and it has caldav which I use nextcloud 50% for. The other 50 percent is thinking I have a cloud if I someday need one.

    • Engywook@lemmy.zip
      link
      fedilink
      English
      arrow-up
      7
      ·
      edit-2
      1 day ago

      I really hate those posts with the “you should…” part. Let people use whatever they want.

    • EpicFailGuy@lemmy.world
      link
      fedilink
      English
      arrow-up
      6
      ·
      2 days ago

      I do something similar I use Pangolin (Which is an EXCELLENT project) as a self hosted alternative to cloudflareD tunels. I host it on a public VPS and then thru it tunnel web traffic to my public resources, that way I don’t have to expose my IP or have a static. Then I also use netbird as an overlay network not only to access my servers remotely but also to “join” two sites via a VPN (Backup server at my mom’s)

      • illusionist@lemmy.zip
        link
        fedilink
        English
        arrow-up
        3
        ·
        2 days ago

        That sounds like you use the mesh vpn for managing the server, e.g. ssh, and you’ve got a server at home and route all traffic via the vps to hide your ip. Do i get it right?

        OP’s setting sounded like he’s exposing his stuff publicly after routing through mesh vpn

        • EpicFailGuy@lemmy.world
          link
          fedilink
          English
          arrow-up
          3
          ·
          2 days ago

          correct, it also has the benefit of allowing my IP to change without impacting public or private access.

  • dwt@feddit.org
    link
    fedilink
    arrow-up
    5
    ·
    2 days ago

    They are currently adding calendar support, which is the most feature for me. We are looking for work it’s integration.

  • gopher@programming.dev
    link
    fedilink
    English
    arrow-up
    3
    ·
    2 days ago

    Interesting. Nextcloud does feel pretty sluggish and probably in need of a major overhaul of the backend. Still, it works quite well .

  • warmaster@lemmy.world
    link
    fedilink
    English
    arrow-up
    4
    ·
    2 days ago

    This is awesome, I want it. But it’s way beyond my technical level. I wish there was a Proxmox helper script.

  • grue@lemmy.world
    link
    fedilink
    English
    arrow-up
    4
    arrow-down
    4
    ·
    2 days ago

    If all you want is file sharing, like the blog post author wants, I don’t understand what’s wrong with something like a plain old SFTP server.

    • Synestine@sh.itjust.works
      link
      fedilink
      English
      arrow-up
      12
      ·
      2 days ago

      I’m not aware of an SFTP client that works like the cloud drive connectors. Do you know of one that monitors local files/dirs for changes and automatically sends them? Or polls the server for changes and downloads then (if they’re on the allow list)? Keeps versions?

      If literally all you’re doing is occasional file transfers, sure, SFTP is easy. That’s not how most people use cloud drive clients.

      For me and my group, Nextcloud works fine and fast. We do more than file sync and share.