Ooops

joined 2 years ago
[–] Ooops@feddit.org 1 points 5 hours ago* (last edited 5 hours ago)

Wieso ist ganz NRW bei sowas eigentlich immer nahezu ein Totalausfall?

[–] Ooops@feddit.org 1 points 5 hours ago

Wieso "oder"?

Das ist doch das selbe. Wenn es nichts bringt, ist es okay. Sollte es irgendeinen Effekt haben, sind wir direkt bei Terroristen oder krimineller Verienigung.

[–] Ooops@feddit.org 5 points 5 hours ago

Also HandleLidSwitchExternalPower= for when it's still plugged in when you close the lid.

[–] Ooops@feddit.org 3 points 19 hours ago

Der schwierigste Teil ist die Frau zu überzeugen zu wechseln. Daran arbeite ich immer noch.

Ich versteh das Problem nicht. Ist ja nicht so als wenn sich da tatsächlich etwas ändert. Du stellst nur einmalig ein, über welche Methode der Kalender sich synchronisiert und ansonsten bleibt doch alles beim alten.

[–] Ooops@feddit.org 7 points 3 days ago (1 children)

If Trump was smart -or just able to plan ahead 2 minutes- I would assume that demolishing their own infrastructure supporting all their operations in Africa and the Middle-East then blaming Germany is part of their strategy to excuse their massive failure in Iran.

[–] Ooops@feddit.org 11 points 3 days ago* (last edited 3 days ago)

Nein, wir brauchen nicht noch mehr KI-Scheiße.

Vorallem brauchen wir definitiv nicht irgendwelche automatischen AfD-Sprech -> Deutsch Übersetzer. Jeder, den es interessiert versteht die Texte auch so (und wenn man nur 90% der menschenverachtenden Faschistenrhetorik auf Anhieb versteht sind das schon 89% mehr als nötig wären, um sie unwählbar zu machen). Jeden, der den Dreck wählt, interessiert es nicht. Da könnte die AfD auch direkt Klartext statt des sprachlichen Feigenblattes sprechen und der hirntote Kult würde die Aussagen immer noch leugnen, gleichzeitig aber bejubeln.

[–] Ooops@feddit.org 17 points 3 days ago

Und jetzt warten wir auf Konsequenzen... Ach nee, Moment. Das fällt einfach unter kompetent den Job als Kulturkampfminister ausfüllen.

[–] Ooops@feddit.org 12 points 3 days ago

"Europe really needs [imaginary] US tech!"... says a right-wing propaganda publisher that has his subservience to the US written in its company principles. 😂

[–] Ooops@feddit.org 7 points 5 days ago* (last edited 5 days ago) (1 children)

Sadly they don't want to move but instead are hell-bent on making Germany the same kind of shit hole.

[–] Ooops@feddit.org 7 points 5 days ago

Interesting read, but what I'm missing is a location for this experiment. Because the the login attempts and especially the distribution of origins are vastly different form what I'm used to seeing.

[–] Ooops@feddit.org 24 points 6 days ago (1 children)

Nein, tut sie nicht. Reiche tut genau das, wofür sie auf dem Posten sitzt.

Das ständige Gejammer über Inkompetenz, Dummheit oder Ahnungslosigkeit von Politikern ist nichts als Verarschung. Genauso wie die lächerlichen Diskussion wann die Partei Person XY endlich ansägt.

In Wahrheit tun diese Leute exakt das, was sie sollen, und das sehr kompetent und tüchtig. Die dummen Wähler wollen sich halt nur einreden, dass die Menschen, die offensichtlich gegen sie arbeiten, das nicht absichtlich tun. Sonst müsste man ja seine Wahlentscheidung hinterfragen.

[–] Ooops@feddit.org 62 points 6 days ago* (last edited 6 days ago) (2 children)

There is no "Lidl cloud", that's just the usual braindead framing.

The Schwarz Group is the 4th biggest retailer by revenue globally, so having their own subsidiaries for waste management and recycling and for IT infrastructure is just natural.

And yes, that's how AWS happened, too. In-house IT infrastructure to support your retail operations is just more efficient thus cheaper in the long run.

 

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 ›