this post was submitted on 08 Jul 2025
69 points (97.3% liked)

Selfhosted

49240 readers
639 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 2 years ago
MODERATORS
 

I'm kind of surprised I've struggled with this so long. Right now I've been using nextcloud camera upload, and mostly it works ok but shits the bed once in a while without me noticing and I need to spend time fixing it and it's never as simple as turning it off and on again.

I recently tried syncthing, and while it works, it frequently crashed and got stuck in a state where it says it's on and working by my destination folder is shown as disconnected, and the options to restart syncthing from the side menu are greyed out and the only way to make it work again is by force closing it and reopening it.

I'm running vanilla stock Google Android and truenas, does anyone have a better solution?

you are viewing a single comment's thread
view the rest of the comments
[–] Appoxo@lemmy.dbzer0.com 1 points 14 hours ago (1 children)

Any suggestions on how to optimize it? :)
Using it on my steamdeck and on-demand on my phone.

[–] Lemmchen@feddit.org 4 points 13 hours ago* (last edited 13 hours ago) (1 children)

Set up a "global" ignore file that gets synced between devices. Call it .stignoreglobal for example and and change the .stignore file (which doesnt get synced) on every device to only include #include .stignoreglobal. Now your ignore state gets synced between devices and you can make changes from anywhere.

Mine looks like this:

// Incomplete Downloads
*.part
*.crdownload

// OS-generated files
desktop.ini
Thumbs.db

// Cache
cache
spotifycache

// Unity analytics
Unity

// LineageOS updater
org.lineageos.updater

// No read access :(
/Android/{data,obb}

You can learn how to write one yourself here: https://docs.syncthing.net/users/ignoring.html

Other stuff:

[–] Appoxo@lemmy.dbzer0.com 2 points 12 hours ago

Neat!

I am already using a selective sync for my emulator save data between my NAS, PC and steamdeck in a triangle sync and on top another sync for the data I generate on my phone.