Samsy
@Samsy@lemmy.ml
- Comment on We'd like to welcome our newest Student to Hogwarts, Hun-Gary Mc'Spud. 2 days ago:
Gunter Schnapsholder
- Comment on goodbye plex 3 days ago:
Long time Jellyfin user here, welcome on board. I think biggest hurdle I should newbies warn about is the lack of availability on TizenOS.
Its possible but needs some extra steps.
- Comment on goodbye plex 3 days ago:
Maybe, Streamyfin? its the only iOS App with Downloads and Offline-Mode
- Comment on Yes, this is what people did back then 1 week ago:
Calling friends and talk to them for hours.
- Comment on Yes, this is what people did back then 1 week ago:
Too early
- Comment on After Obliterating Gaza's Healthcare System, Israeli Leaders Call Iran Hospital Attack a 'War Crime' 2 weeks ago:
“We are just there for sightseeing but these 300 Spartans are bullying us” - Xerxes.
- Comment on Researchers Scrape 2 Billion Discord Messages and Publish Them Online 1 month ago:
Meanwhile AI scrapers: This will be a fine addition to my collection.
- Comment on Android updates: thanks I hate it. 1 month ago:
The arrow shows on which side the battery is.
- Comment on Trump's US to resettle white South Africans 'within days' 1 month ago:
The struggle of many western countries is their old population. They need migration, without migration their economy collapse.
But their right-wing parties want to decide which migration is okay. Which is pure racism.
- Comment on That's all folks, Plex is starting to charge for sharing 2 months ago:
As someone, who started with jellyfin, I never saw the reasons for the existence of Plex. There is no difference and people pay for it?
Hey Plex users, save your money and buy a coffee for the jellyfin team!
- Comment on US criticizes Germany for labeling AfD 'extremist' 2 months ago:
Would be interesting if Germany will do the same mistakes like America.
Looking at the last decades: yes they will do!
But I don’t hope so.
- Comment on Has anyone tested yunohost? 2 months ago:
Burnt my fingers. It’s not enough freedom for changing compose settings. But that’s just my two cents.
- Comment on Has anyone tested yunohost? 2 months ago:
Looks good. But I got burnt with CasaOS. Only App organizer I still use is dockge.
- Comment on MAZANOKE v1.1.0: Self-hosted local image optimizer in your browser — now supports HEIC, clipboard paste, and more 2 months ago:
Star added and added to my collection. Really a good one, thx.
- Submitted 2 months ago to [deleted] | 116 comments
- Comment on but what happened to logsday? 3 months ago:
Yeah, right.
- Comment on but what happened to logsday? 3 months ago:
No it’s because Emperor Julius and Augustus want their own months in summer.
- Comment on End-To-End enshittified 3 months ago:
Glad I just use WhatsApp only through a matrix bridge.
- Comment on Bridges with matrix conduit 3 months ago:
It was an auth error all the time. Today I decided to start from scratch. And it works with the first try. I bet I had some Linux permission quirks.
- Comment on Bridges with matrix conduit 3 months ago:
I tried out the signal bridge just to see if there is something completely wrong. I just needed 10 min. and signal bridge worked.
- Comment on Bridges with matrix conduit 3 months ago:
Silenced chats, yes. I try this.
- Comment on Bridges with matrix conduit 3 months ago:
Yes sure but login does nothing the bot says it needs the confirmation code from telegram but telegram doesn’t send a notification like anytime if you login from a new device.
I thought I misunderstood here something, the guide says it needs the api data. (I have this part already) but maybe I don’t get the confirmation code like normally maybe it got send to the api?
- Comment on Bridges with matrix conduit 3 months ago:
Yes, I read it. But this is really unspecific. Login into the mobile client? Which one? Telegram? How do I login from there? This is not enough information. So I thought someone managed to get further.
- Submitted 3 months ago to selfhosted@lemmy.world | 14 comments
- Comment on Hosting your own authenticated, secure, NextDNS-style DNS filter accessible over the internet with Caddy and AdGuard Home 4 months ago:
Interesting way of using agh. I use some small VPS just for it and there is no need for caddy, agh is able to run 443 on its own. Now I am thinking of test it because I have to recreate the certs manually. I thought it’s because of the wildcard certs I use for DoT and DoQ. Maybe caddy can handle this, too.
- Comment on Facepalm on multiple levels 4 months ago:
Also known as Elonus Brutus Maskus.
- Comment on Email provider for home server alerts 4 months ago:
Stalwart mail
- Comment on Kryptonite 4 months ago:
If you aim good enough, every rock could be someone’s weakness.
- Comment on Matrix dendrite sliding sync proxy setup 4 months ago:
services: sliding-sync: image: ghcr.io/matrix-org/sliding-sync:v0.99.1 restart: unless-stopped ports: - 8881:8881 environment: - SYNCV3_SECRET=yoursecret - SYNCV3_SERVER=https://newsub.domain.com/ - SYNCV3_DB=user=syncv3 dbname=syncv3 sslmode=disable host=sliding-postgres password=secret - SYNCV3_BINDADDR=0.0.0.0:8881 depends_on: - sliding-postgres sliding-postgres: image: postgres:16-alpine restart: unless-stopped environment: - POSTGRES_USER=syncv3 - POSTGRES_PASSWORD=secret - POSTGRES_DB=syncv3 volumes: - sliding_db_data:/var/lib/postgresql/data volumes: sliding_db_data: null networks: {}
This is my sliding compose file, and this is the Caddyfile part just for sliding:
newsub.domain.com { encode gzip header /.well-known/matrix/* Content-Type application/json header /.well-known/matrix/* Access-Control-Allow-Origin * respond /.well-known/matrix/server {"m.server":"newsub.domain.com:443"} respond /.well-known/matrix/client {"m.homeserver":{"base_url":"https://newsub.domain.com/"},"org.matrix.msc3575.proxy":{"url":"https://newsub.domain.com/sliding-sync"}} reverse_proxy /_matrix/* http://192.168.1.1:8008/ { transport http { compression on } } handle_path /sliding-sync/* { reverse_proxy http://192.168.1.1:8881/ }
- Comment on Matrix dendrite sliding sync proxy setup 4 months ago:
I got exactly this config working. The compose file wasn’t the problem. I had to fiddle around with my caddy proxy setup. Do you want my settings? Or do you use something other than caddy?