Yeah, I stuck with Windows Phone very nearly to the end, but the lack of apps just made it totally unsustainable for anyone with any kind of social life that extended beyond SMS and email.
Yeah, I stuck with Windows Phone very nearly to the end, but the lack of apps just made it totally unsustainable for anyone with any kind of social life that extended beyond SMS and email.
Is there a tipping point where it’s a net loss? If I understand the protocols correctly, the whole back end federation part of the equation is push based, so if everyone was running their own instance, lemmy.ml would have to push every post to every individual instance in the network. At some point isn’t it more efficient to only have to serve posts when people come here to look at them?
You have to make a new account unfortunately.
I’m not sure if I should make a new post or keep this in a single thread, anyway, I’ve managed to get the front page to load, but can’t get any farther.
I used the instructions from @jax@lemmy.cloudhub.social’s branch, particularly their nginx config.
I’m running the whole docker-compose setup behind my own nginx reverse proxy, which is set to proxy requests to the docker nginx (and also handles SSL). I modified the docker-compose.yml to bind the host port on 9001
, then my main nginx config looks like this:
http {
server {
listen 443 ssl http2;
server_name lemmy.villa-straylight.social;
ssl_certificate /etc/letsencrypt/live/<redacted>
ssl_certificate_key /etc/letsencrypt/live/<redacted>
location / {
proxy_set_header Host $host;
proxy_pass http://localhost:9001;
}
}
}
The front page loads, but pretty much anything else I do results in an endless spinner. The only possible problem I see is this in the docker terminal output:
WARN Error encountered while processing the incoming HTTP request: lemmy_server::root_span_builder: WebSocket upgrade is expected. NoWebsocketUpgrade
Maybe it’s just because I never really “got” Twitter, but this seems like a boring tautological argument to me. A more interesting question would be whether we even care? Platforms come and go. For some reason people seem to have decided that platforms have gotten “too big to fail”, but it’s clearly not the case.
I would argue that “viewable from” is a far cry from truly federated. The fact that I have to subscribe to infinitely many individual communities to see all, say, “Technology” content across all of lemmy seems like a near-fatal flaw to me.
Thanks, that’s the missing piece. Ironically I am a software engineer in my day job, but not the right kind of software engineer. It’s fun to broaden my horizons though. I copied the proxy settings from the @jax@lemmy.cloudhub.social’s nginx.conf with the right edits for the hostname into my reverse proxy config and now everything appears to be working!