• 1 Post
  • 26 Comments
Joined 2 years ago
cake
Cake day: November 26th, 2023

help-circle
  • Moldova next because it’s not in NATO. Next Romania with Serbia and Hungary as ally. After that all old Yugoslavia. That can be like 2030 agenda. Many would say that Poland is next but they have big border with Russia, USA military bases and no value other than terrain and Russia have no problem with terrain. It’s easier and more profitable to go just south and gain access to the Mediterranean Sea. That opens up border with Africa with Middle East and cuts down Europe from south Oil and Gas sources.
















  • These will be protecting water from people so their server rooms get cooled down and keep feeding them commands. We’re just started building their living place. These will be looked by future robots as ancestors. We will be dinosaurs if we keep doing what we’re doing.






  • you can reverse proxy other ports than 443 and ex. upstream ssh, the advantage of having reverse proxy over everything is to have traffic in one place so you can manage it, that’s why for example kubernetes have ingress server, example nginx / openresty upstream ssh, you can restrict traffic to limited amount of IP etc.

    stream {
        upstream ssh {
            server          127.0.0.1:22;
        }
    
        server {
            listen          2222;
            ssl_preread     on;
            proxy_pass      ssh;
        }
    }