[–] 2 points 8 hours ago*

Honestly I have no clue how many EFI implementations actually fail there. Maybe it's indeed a minor fraction. But I have personally seen two different ones (out of about a dozen -mostly laptops a few years old- systems where I tried it) and that's enough to consider it a problem. (PS: Probably not conicidently one of those also had a broken SecureBoot implementation that rejected all key changes and only worked with the pre-installed MS ones. Maybe I'm simply good at finding the trashy ones.)

  • source
  • parent
  • context
  • [–] 2 points 9 hours ago*

    The founding fathers and mothers of germany [...] were conservatives and ex-nazis just as there were progressivs.

    And even in modern day we still have a vast part of conservativ[e] parties that hard line against fascists.

    Which vast part is that? The one that happily agreed when the C*U leadership tried to push deportation laws with AfD support? The C*U that happily jumped onto the band-wagon of a far-right campaign to cancel their own candidate for the constitional court? Or the C*U that spend the last years parroting every single far-right culture war topic the fascists invented? Maybe it's the C*U that is constantly trying to normalise the idea of cooperating with those AfD nazis, so they can instantly pretend it was only Merz that rejected them the moment they get rid of that worst chancellor ever? Oh, wait... I know! It's the C*U that refuses to initiate the evaluation to get them banned for being unconstitutional. Because why would their help to ban their future coalition partner?

    Even the BIW party in germany

    Can we talk about actually relevant parties instead of some local splinter group of an already irrelevant local right-wing party with a double-digit number of members and barely more votes than that?

    Walter Lübcke, a conservativ party member, a victim of nazi terror, just like many other humans with him.

    And guess who stayed mostly silent while there was a loud outcry from left parties? The C*U. And guess who even recently dared to accuse left parties of not having reacted at all when Lübcke was killed? Some minor C*U politician called Friedrich Merz.

    I’d advise you to step out of your online bubble and talk with people

    I'd advice you to get help for your mental issues. Oh, wait... you better don't as the nazi supporters you are trying to excuse will come for those with documented mental issues quickly.

    /ignore

  • source
  • parent
  • context
  • [–] 3 points 15 hours ago (2 children)

    "Conservatives" will never ever do anything against nazis, fascists or other far-right extremists because they think the same and are simply too cowardly to speak it out. Instead they will hide behind a veil of alleged moderate 'middle-class' attitude to get to power. And they will drop that act like it never was a thing the moment it's time to rule with their far-right friends.

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

    Because their extreme nationalism does zero sense. It's nothing but a scam targeting idiots. So you question is basically: Why are the professional liars for profit always the ones lying for profit?

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

    Dass beim MDR super Menschen mit interessanten Zugängen, Ideen und mit Haltung arbeiten, hört man immer wieder

    Sehen tut man hingegen immer nur, wie sie sich inhaltlich und bei der Themenauswahl dem rechten Dreck anbiedern. Und das auch schon lange bevor eine rechtsextreme Landerregierung eine realistische Möglichkeit wurde. Wird sie gaaaaanz sicher vor der Abschaffung bewahren... 😂

  • source
  • [–] 4 points 15 hours ago*

    und vorsätzlicher Zerstörung des Gesundheitssystem zu sprechen

    Es gibt aber nur die Möglichkeit, dass es vorsätzlich ist (ob auf Bosheit oder Dummheit sei mal dahingestellt) oder Friedrich Merz schlichtweg nicht weiß, was die von ihm geführte Regierung tut.

    Ich hab so das Gefühl, dass er auf die Erwähnung der zweiten Möglichkeit genauso regiert hätte.

  • source
  • parent
  • context
  • [–] 5 points 19 hours ago* (2 children)

    set up a second efi boot partition

    This may or may not work. Recognizing a second ESP on the same disk is not required in the EFI standard. So it's down to your board's implementation if it works or just stops the moment it finds the first one.

  • 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 ›