TrumpetX

  • 0 Posts
  • 160 Comments
Joined 3 years ago
cake
Cake day: June 11th, 2023

help-circle



  • What are you using for a reverse proxy? There’s some nginx websocket settings I had to do before things worked properly. I use cloudflare, but just for the DNS/cdn stuff, not their zero trust things.

    server {
      server_name my.domain.com;
      client_max_body_size 2048M;
    
      location / {
        proxy_set_header X-Forwarded-Proto $scheme;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header Host $host;
        proxy_set_header X-Forwarded-Host $host;
        proxy_pass http://10.10.10.30:13378/;  # My Wireguard Tunnel up to the VPS
        # proxy_cache_bypass  $http_upgrade; # This was added by Certbot
        # WebSocket support
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection $connection_upgrade;
      }
    
        listen 443 ssl; # managed by Certbot
        ssl_certificate /etc/letsencrypt/live/my.domain.com/fullchain.pem; # managed by Certbot
        ssl_certificate_key /etc/letsencrypt/live/my.domain.com/privkey.pem; # managed by Certbot
        include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
        ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
    
    }
    server {
        if ($host = my.domain.com) {
            return 301 https://$host$request_uri;
        } # managed by Certbot
    
      listen 80;
      listen [::]:80;
    
      server_name my.domain.com;
        return 404; # managed by Certbot
    }
    

  • I don’t disagree with you, but for a single server hosting multiple projects with differing system dependencies, docker is amazing. I’ve come around to using it for this practical reason.

    Using docker over direct installation always feels like an unnecessary interface layer that just complicates things and introduces points of failure.





  • TrumpetXtoAsk Lemmy@lemmy.world*Permanently Deleted*
    link
    fedilink
    English
    arrow-up
    5
    ·
    1 month ago

    /agree

    Even with ST, my youngest goes to school in the dark all winter. Just now, as it’s light when he goes out, they’re about to swap it to DST and he’ll be in the dark again for a couple of weeks.

    “Losing” that short window of morning sunlight is nothing to me. Gaining the ability to have normal sleep patterns and not changing the clocks is infinitely better.

    I do not care what the time is, as long as it stays consistent. My sleep is fucked up for 2x2 weeks every fucking year for no good reason.




  • I just deal with snap and don’t use it unless I have to. The pro thing is kind of stupid. I have 6 computers and vms on pro. There is no actual check preventing it from working. They have some bug where it appears like your have double the computers checking in sometimes. So when I had 5, it’d show 10 sometimes. So now it just shows 6 or 12.

    Everything works fine. I’m ignoring it for now.

    Someday I’ll switch, but until that day, I’m chillin’.


  • People don’t like Ubuntu because they’re(Ubuntu) trying to make money with it. For end users, it’s can be a non issue because “pro” is free for 5 computers. But seeing the paywall for some is really off putting to some (myself included).

    Snap really sucks and is Ubuntu’s attempt at a private garden. I hate it so much.

    But yet I still use Ubuntu because it works, and if it doesn’t work there’s a post somewhere with details on how to fix it.

    I’ve been using Linux off and on since Red Hat 5.2 ish era. I can handle the tech geek stuff. I just don’t want to.








  • TrumpetXtoOpen Source@lemmy.mlWhat's up with FUTO?
    link
    fedilink
    English
    arrow-up
    1
    arrow-down
    1
    ·
    3 months ago

    I think it’s that it feels like someone has an agenda and this is posted over and over and over again.

    There’s always a few quick responses of “oh I didn’t know that” followed by outage posts slightly later. Same pattern, every time.

    It feels very manufactured to me. On one hand, I do understand the core complaint, but I don’t understand the outage. It’s outsized to what this is, so it feels fake.