this post was submitted on 07 Mar 2024
83 points (95.6% liked)

Selfhosted

39151 readers
321 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

Rules:

  1. Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.

  2. No spam posting.

  3. Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.

  4. Don't duplicate the full text of your blog or github here. Just post the link for folks to click.

  5. Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).

  6. No trolling.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

founded 1 year ago
MODERATORS
 

I hear people say that about Nextcloud often, which is part of why I haven't bothered setting it up yet.

Is there a technical reason why it's slow and clunky? Any problematic choices with how it was built?

you are viewing a single comment's thread
view the rest of the comments
[–] nbailey@lemmy.ca 56 points 6 months ago (4 children)

It needs some tweaks to be snappy. The defaults are really bad.

  • change database from SQLite to a proper database like MySQL or Postgres, and configure the database server to use your memory fully
  • increase the PHP memory limit from the default (128M on many distros) to >1G, the more the better
  • install APCu in-memory cache for PHP
  • add Redis as additional cache
  • turn off the antivirus extension, if installed (ClamAV is useless)
  • use http/2 on Apache/nginx to increase performance with multiple connections

https://docbot.onetwoseven.one/services/nextcloud/

[–] nutbutter@discuss.tchncs.de 7 points 6 months ago (5 children)

Thank you for these suggestions. But I have a few questions.

How can I do the 2nd and 3rd point if I am using docker/podman containers?

Why is ClamAV useless?

[–] nbailey@lemmy.ca 17 points 6 months ago

Not sure how to do that in docker, I’ve run mine as a plain old PHP-FPM site for years and years. It might be something that can be tweaked using config files or environment variables, or might require building a custom image.

ClamAV is slow and doesn’t catch the nastiest of malware. Its entire approach is stuck in 2008. It’s better than nothing for screening emails, but for a private file store it won’t help much considering that you’ll already have the files on your system somewhere. And most importantly, it slows down file uploads 10x and increases CPU load substantially. The only good reason to use ClamAV for nextcloud is if you will be sued if you don’t!

[–] possiblylinux127@lemmy.zip 3 points 6 months ago

ClamAV is good for detecting simple threats. However, I hear it eats ram.

[–] Nyanix@lemmy.ca 2 points 6 months ago (1 children)

This has me curious, not to derail the topic, but I always hear that ClamAV is the best way to go for Linux. Is there a free solution that you would recommend in place of it?

[–] possiblylinux127@lemmy.zip 3 points 6 months ago

I think the best solution is to use good internet hygiene

[–] sabreW4K3@lemmy.tf 3 points 6 months ago

Out of curiosity, why isn't this stuff done by default?

[–] possiblylinux127@lemmy.zip 1 points 6 months ago (1 children)
[–] KneeTitts@lemmy.world 1 points 6 months ago

it should work with mariaDB which is faster in my experience