Since selfhosted clouds seem to be the most common thing ppl host, i’m wondering what else ppl here are selfhosting. Is anyone making use of something like excalidraw in the workplace? Curious about what apps that would be useful to always access over the web that aren’t mediaservers.
webapps
web apps
selfhost
self-host
If you host the web-apps at home/yourself arent they self hosted?
I keep everything documented, along with my infrastructure as code stuff. Briefly:
- Nextcloud
- Vaultwarden
- Miniflux
- My blog
- Takahe (a multi-domain) ActivityPub server
- My health tracker CRUD data entry
- https://alexpdp7.github.io/selfhostwatch/
- Grafana (for health stats and monitoring data from Nagios)
- Nagios
- FreeIPA/Ipsilon (SSO)
edit: plus a few things that do not have a web UI.
Whoogle, a meta-search that strips away all the nasty things from Google. Can’t live without it tbh.
I randomly think about something I want, and then usually find it here. Used to be a GitHub repo, but it got so popular and useful they got a nice site with search and all, now.
https://awesome-selfhosted.net/
I don’t have as much running anymore outside media/games, but I do still run Stirling PDF as an Acrobat Pro alternative.
vaultwarden, ntfy
Storyteller, ever wish you could listen to an Audio book and read an ebook at the same time.
Storyteller can combine an Audio book and and ebook to create a single ebook that can be read like a normal ebook or you can listen to it and watch the actively spoken sentences highlighted in real time like a karaoke song lyrics.
This is pretty neat!
https://storyteller-platform.gitlab.io/storyteller/docs/intro/what-is-this
Sounds like you need both the audio and the ebook to make it work?
I typically only have one or the other.
ever wish you could listen to an Audio book and read an ebook at the same time.
Lol no? Absolutely not.
All these. I just added calibre web and may phase out Kavita.
I love that the load on all of these is 0% :D
Yeah, just me and my family for now. I have gotten a lot of knowledge setting stuff up and hope to eventually get some VPSs set up for some public Lemmy, pixelfed, and maybe mastodon instances for digital nomads and expats.
Are books not media?
I was thinking through my list, and almost mentioned Calibre Web, but decided it’s media related.
Eh, it’s a document viewer. I figured they’re referring to Plex and jellyfin when they say media.
What interface is that, it looks great!
That’s TrueNas. It can run docker compose files so I’m abusing the crap out of what it’s supposed to do haha.
Depends on what you consider self-hosted. Web applications I use over LAN include Home Assistant, NextRSS, Syncthing, cockpit-machines (VM host), and media stuff (Jellyfin, Kavita, etc). Without web UI, I also run servers for NFS, SMB, and Joplin sync. Nothing but a Wireguard VPN is public-facing; I generally only use it for SSH and file transfer but can access anything else through it.
I’ve had NextCloud running for a year or two but honestly don’t see much point and will probably uninstall it.
I’ve been planning to someday also try out Immich (photo sync), Radicale (calendar), ntfy.sh, paperless-ngx, ArchiveBox (web archive), Tube Archivist (YouTube archive), and Frigate NVR.
- Forgejo - git hosting
- actual budget - spending tracking mostly
- Vaultwarden
- home assistant - still configuring
still configuring.
In my experience, this is always the case with ha
Actual budget, nextcloud
- Immich backs up photos from my phone and camera with tagging and search
- Archivebox is like a personal internet archive, I use it to save youtube videos and important memes
- Homeassistant does home automation stuff, currently I only use it to turn the speakers on/off with the tv
- Forgejo is a git host like Github, and can regularly pull external repositories to keep a personal mirror
- Actual budget is a budgeting app, nice for tracking expenses across multiple accounts
>no media servers
>mentions immich as the first one
As a backup :p
You made me actually check out Immich and I love the tagging feature. That makes it feel much more like a photo library and less like just a giant file storage solution that happens to store photos.
Immich is really good actually. Completely replaced Google Photos for me.
Homeassistant is like shortcuts? You can have it do stuff if something else does something?
Home assistant is lights, switches, sensors, blinds, fans, heat/cooling, and more. I have an automation that tells me 5 minutes after the wash is done so I can move laundry into the dryer, and another one that tells me if anyone left the back door open, telling me to close it. (My dog can open it from outside).
How’d you do the laundry one?
I’ve got a tp-link smart plug that monitors power. The automation triggers when it draws less than a watt (a few minutes after it completes the cycle, it turns off). I have the duration set to 5m, so a slower soak cycle shouldn’t trigger it (not tested yet).
Hmm. Wonder if I can do this with my Eve plug.
What are you using for the automation?
Thanks :-)
Among other things, yes.
Really interested in immich and archive box!
Calendar and contacts (i.e. CalDAV/CardDAV). A blog. Media is just remote-mounted since all my systems are Linux.
I’m always leery of “one app for all” solutions, or in German, “eierlegende Wollmilchsau”.
Hence, no Nextcloud for me.
Which Calendar software do you use?
Glad you asked. I left that open on purpose because my server probably got hacked and I have only just reinstalled. So far I’ve been using DaviCAL - for many years - but I’ll revise this choice. It’s a little dated and quirky, and so ist PostgreSQL which it depends on.
Currently working to move away from Nextcloud myself, it’s PHP nature causes IO storms when it tries to check if it needs to reload any code for incoming requests.
You can optimize php a lot for performance. See my config https://gitlab.melroy.org/-/snippets/91
Yep, those values are actually somewhat tame compared to my own cache tuning, the issue remains that the code requires reloading PHP files from disk during runtime in order to support applications and updates, which - even if it doesn’t happen often - causes IO storms that temporarily break both Nextcloud as well as other software.
No. That is why I shared my configs. With opcache and opcache.validate_timestamps = 0 you don’t have this problem anymore.
Of course you also need to enable opcache itself as well.
Or you have really slow spinning disks or something. Also be sure to use php 8.4.
Again, it works until it requires reloading, i.e. the next update of any component or the next restart of the server.
I’m also running an inode cache on the client side, on top of the persistent opcache, but due to the sheer number of files that Nextcloud consists of it still generates a frankly ridiculous amount of calls when it needs to invalidate the cache. If you’re running on local drives then that’s likely much less of an issue, regardless of what kind of drive it is, but this is hosted on machines that do not have any local storage.
Eh, my Nextcloud LXC container idles at less than 4.5% CPU usage (“max over the week” from Proxmox). I use PostgreSQL as the backend on a separate LXC container that has some peaks of 9% CPU usage, but is normally at 5% too.
I only have two users, though. But both containers have barely IO activity.
Oh yeah, CPU usage is basically zero, and memory usage of the PHP code itself is also basically nil compared to other software I run. It’s just the sudden storms of IO requests that causes issues, and since those come over a network pipe it causes issues for other pieces of software as well.
I see some CPU and memory usage on my setup… but I don’t even see any IO!
Literally, the IO chart for “week (maximum)” on Proxmox for my Nextcloud LXC container is 0, except for two bursts, of 3 hours of less each. (Maybe package updates?)
The PostgreSQL LXC container has some more activity (but not much), but that’s backing Nextcloud and four other applications (one being Miniflux, which has much more data churn).
Are you looking at data rates or IO operations? Because this is almost exclusively stat queries, i.e. inode queries.
I was looking at the Proxmox graphs. Now, looking at
iostat
,r/s
measured over 10s hovers between 0 and 0.20, with no visible effect of spamming reload on a Nextcloud URL. If you want me to run any other measurement command, happy to.Interesting, that’s definitely not what I’m seeing from regular use. Are you running any added applications? LDAP? SSO? External mounts?
Vpn, nas, home assistant, dns, reverse proxy, adblocker, specialty controller units, misc project vms/containers.
Like others have mentioned, Actual is great. Couldn’t recommend it enough for anyone looking to start budgeting. Others I run but haven’t seen mentioned yet: ChangeDetection, Adguard Home, Homepage, BambuStudio, and Statistics-for-strava
Why dont they sell routers that come with adguard built in, or is that a newer thing? Well, googled it after typing that and it comes preinstalled on some routers now
!mikrotik@lemmy.world routers are made in Europe and have adblock built in
Joplin. I have it as a sync server. But have it tucked away in a cloud server for the times when I’m traveling so j always have a way to access data in case my phone gets stolen/confiscated.