[–] 7 points 2 hours ago* (2 children)

I'm more irritated than I'd like to admit by the fact that there is no 12V to 6x SATA power converter going with that M.2 to 6x SATA adapter.

  • source
  • [–] 4 points 2 hours ago

    it’s just Arch with some very badly written vibecoded scripts thrown on top

    FTFY.

    But that's enough to become popular and get money if the far-right decides to use their controlled media to push your shit.

  • source
  • parent
  • context
  • [–] 1 point 2 hours ago*

    Was sollen sie denn stattdessen tun, wenn Krieg gegen Deutschland geführt wird? Pläne für ein souveränes Militär, das Deutschland nicht hat, aufstellen? Oder doch lieber Aufsätze schreiben, wie man die UN argumentativ davon überzeugt, dass Deutschland sich verteidigen darf? Ach nee, da gibt's ja Länder mit Vetorecht. 😅

  • source
  • [–] 3 points 3 hours ago

    So soll es ja auch sein. Die Idioten sollen Merz hassen, damit sie beim nächsten Mal wieder brav CDU wählen. Denn es ist immer nur die gerade aktuelle Personalie problematisch, und solche Leute machen nie einfach nur das, wofür die CDU sie in die Position bestellt hat.

  • source
  • parent
  • context
  • [–] 2 points 3 hours ago

    und Fußgänger auch nicht durch Klingeln wegscheuchen darf

    Fußgänger anklingeln, ohne deutlich schneller zu sein, ist eh dämlich. Dank 24/7 Kulturkampf ist die Chance jemanden zu treffen, der seinen propagainduzierten Hass auf Radfahrer sofort ausleben will, zu groß.

  • source
  • parent
  • context
  • [–] 7 points 8 hours ago (2 children)

    dass eine normale Parteiarbeit einer demokratischen Partei nicht möglich ist weil eine Minderheit die Inhalte nicht mag

    Das sind beeindruckend viele Lügen in nur einem Teilsatz. 👍😆

  • source
  • parent
  • context
  • [–] 39 points 8 hours ago (5 children)

    [...] treating user-controlled hardware as a threat

    It is a massive threat. They are ready to move from "you don't own any of your software" to rental and cloud models so you don't own your hardware either. How dare you to undermine those plans with self-owned and self-operated cost efficient hardware?

  • source
  • [–] 52 points 8 hours ago

    "Die Band soll sich auch hier bereits politisch geäußert haben. Sänger Marian Gold hatte sich zudem in der Ansage des Songs "Carry Your Flag" deutlich gegen rechtsradikale Tendenzen und für Freiheit, Toleranz und Demokratie eingesetzt."

    Wie können sie es wagen? 🤮

  • source
  •  

    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 ›