[–] 5 points 6 hours ago

Just for informational reason, because yes, it's bullshit you don't need to think about even without the insanity of the people involved:

It's basically just an installer for archlinux and a management tool for configuration and dot files. And on top of it it's all vibe coded with claude...

  • source
  • parent
  • context
  • [–] 4 points 6 hours ago*

    ...by design.

    Because you always need to keep escalating and broadening the definition of who's not part of the protected in-group.

    The neanderthal thugs they hired just skipped to the last part of the poem.

  • source
  • parent
  • context
  • [–] 7 points 6 hours ago

    Yes this includes violent criminals, but from my interpretation it also would include someone accused of stealing a candy bar.

    It's worse. Basically anything while getting (unlawfully) arrested can be constructed as "assault on a law enforcement officer".

  • source
  • parent
  • context
  • [–] 3 points 6 hours ago*

    That’s the point of all this nonsense.

    It makes the racists cheer and keep voting for those idiots, so they can keep up the grift. The stories about only targeting the "bad ones" was never more than a fig leaf until the discussion has moved so far to right-wing extremism (or censorship and persecution of diverging opinions is established well enough) that they can drop the act.

  • source
  • parent
  • context
  • [–] 4 points 6 hours ago (1 child)

    An entire city’s worth of people

    At some point it will be easier and more efficient to house them in camps in centralized locations where the ressources (and people) can be better concentrated...

  • source
  • parent
  • context
  •  

    As this will -thanks to me being quite clueless- be a very open question I will start with the setup:

    One nginx server on an old Raspi getting ports 80 and 443 routed from the access point and serving several pages as well as some reverse proxies for other sevices.

    So a (very simplified) nginx server-block that looks like this:

    # serve stuff internally (without a hostname) via http
    server {
    	listen 80 default_server;
    	http2 on;
    	server_name _; 
    	location / {
    		proxy_pass http://localhost:5555/;
                    \# that's where all actual stuff is located
    	}
    }
    # reroute http traffic with hostname to https
    server {
    	listen 80;
    	http2 on;
    	server_name server_a.bla;
    	location / {
    		return 301 https://$host$request_uri;
    	}
    }
    server {
    	listen 443 ssl default_server;
    	http2 on;
    	server_name server_a.bla;
       	ssl_certificate     A_fullchain.pem;
        	ssl_certificate_key A_privkey.pem;
    	location / {
    		proxy_pass http://localhost:5555/;
    	}
    }
    #actual content here...
    server {
    	listen 5555;
    	http2 on;
        	root /srv/http;
    	location / {
            	index index.html;
       	} 
        	location = /page1 {
    		return 301 page1.html;
    	}
        	location = /page2 {
    		return 301 page2.html;
    	}
            #reverse proxy for an example webdav server 
    	location /dav/ {
    		proxy_pass        http://localhost:6666/;
    	}
    }
    

    Which works well.

    And intuitively it looked like putting Anubis into the chain should be simple. Just point the proxy_pass (and the required headers) in the "port 443"-section to Anubis and set it to pass along to localhost:5555 again.

    Which really worked just as expected... but only for server_a.bla, server_a.bla/page1 or server_a.bla/page2.

    server_a.bla/dav just hangs and hangs, to then time out, seemingly trying to open server_a.bla:6666/dav.

    So long story short...

    How does proxy_pass actually work that the first setup works, yet the second breaks? How does a call for localhost:6666 (already behind earlier proxy passes in both cases) somehow end up querying the hostname instead?

    And what do I need to configure -or what information/header do I need to pass on- to keep the internal communication intact?

    view more: next ›