Peertube?
Decentralised. Federated. activity pub. Self Hosted. Open source.
Lachlan, creator of lemmyunchained.net
Peertube?
Decentralised. Federated. activity pub. Self Hosted. Open source.
I still appreciate the love ✌️💛
Damn. I may need to buy a couple
Just a barrier many won’t cross.
Most can detect traffic. Content itself, I do t know. Certainly some can.
Probably will remove you. Ban you. And pass on any data they may have to authorities.
It’s the main reason I don’t do it. Even if it’s extremely unlikely.
That’s what my homelab is for. But even then, it has its own problems.
Plex is preinstalled on most smart tvs’s. And in ones with very limited app stores.
Also easy for others to make their own plex account, and you just give access to that user through the UI.
jellyfin requires more on the client side. Beyond what my mum can do on her own.
Plex for sharing with others. Jellyfin for personal use only.
Yes. Because there’s no centralised list of communities, searching is extremely difficult. Or if not, very time consuming. Following every iteration of every node.
I’m not sure how that can be overcome.
I’m hosting one right now. Lemmyunchained.net
But in will have to Limit Users at some point.
I dont Think people properly understand they can be on any server. And join multiple communities. And it all Show up in their Feed. They don’t Need to worry about “which community has the Most Users”
Really strange. What von client are you using on android? Im iOS, so not overly familiar. Probably done all this, but just run through it again make sure you haven’t got a typo somewhere or something.
1. Check Connection Settings: Ensure the IP, port, and authentication details are correct in JuiceSSH.
2. Firewall Rules: Confirm the SSH port (usually 22) isn’t blocked by any firewalls on your network or server.
3. Try another SSH App: To see if it’s a JuiceSSH-specific issue, download another SSH client like Termius and test the connection.
(I’d probably start with 3, might narrow it down to a juice config problem, I’m not very familiar with juice)
What’s your router ?
AI GENERATED:
The ttionya/vaultwarden-backup tool is intended to work with Docker volumes. However, you are using a bind mount, not a named volume. Bind mounts refer to the use of local folders to store data, as in your case (./vaultwarden:/data/), while volumes create a specific place within Docker’s own filesystem for the data.
Although this tool is designed for volumes, it might still work with bind mounts if the backup container can access the data directory. You would need to modify the volume line in the Docker Compose file for the backup tool to point to the directory where your bind mount is located, i.e., to point it to your local ./vaultwarden directory.
So, you might want to adjust your docker-compose.yml file like this:
services: vaultwarden-backup: image: ttionya/vaultwarden-backup:latest container_name: vaultwarden-backup environment: - PUID=1000 - PGID=1000 - BACKUP_INTERVAL=12h - PRUNE_BACKUPS=7D volumes: - ./vaultwarden:/vaultwarden:ro - ./backups:/backups restart: unless-stopped
In this configuration, ./vaultwarden:/vaultwarden:ro line is the key. It mounts your local ./vaultwarden directory to /vaultwarden inside the backup container (readonly mode), which should allow the backup tool to access the data.