• 2 Posts
  • 31 Comments
Joined 6 months ago
cake
Cake day: March 3rd, 2024

help-circle


  • shiftymccool@programming.devtoMemes@lemmy.mlCooked
    link
    fedilink
    arrow-up
    10
    arrow-down
    3
    ·
    edit-2
    20 days ago

    4 years? That’s your idea of “long term”? You honestly think losing one election will teach anybody anything? How the fuck will they know what lesson to learn when they lose? As other commenters have said, their are other issues the two parties disagree on. How will they know what one to blame for losing?

    On the other hand, pubs are learning that they can run a convicted felon that promises a dictatorship if he wins. Yeah, let’s set that precedent…


















  • When I turn off Wi-Fi, I’m not on the same network as my server, it’s my carrier network so all the internet hops are expected.

    The way it’s working now is I have a domain (example.com) that is set up on cloudflare DNS. I added a tunnel in cloudflare zero trust, which generates certificates you add to your server to encrypt traffic from your server to cloudflare. I have added these to traefik to be served with my service url (service.example.com). Then, I added a route in cloudflare for service.example.com.

    This works fine. But, what I’ve also done is add a local DNS entry for service.example.com so when I’m on my LAN, I access it without going out to the internet and back (seems like a waste). However, this is serving the origin server certs from cloudflare, which causes trust issues

    I’m using docker for everything: traefik, cloudflared tunnel, and my services on the same hardware. The tunnel just runs, and it’s configured on cloudflare zero trust to talk directly to the container:port over the docker network.