[-] Ooops@feddit.org 1 points 9 minutes ago* (last edited 8 minutes ago)

Call me a cynic, but I tend to not give much about morality here. When predicting the behavior of countries/their leaders I simply go by precendent.

Would the US randomly invade any third world country under a pretense for oil (or other geopolitical reasons) if they think they can get away with it? Sure. Would the current US administration be as bad and also incredibly stupid and incompetent on top? Very much so. Will Russia that doubled down on a failing quick special military operation again and again while telling fairy tales of fighting NATO and totally ignoring all setbacks, double down again and attack NATO territory when it's fitting their political narrative because they obviously don't care for the consequences? Entirely possible.

I can answer all these questions without any moral or much bias or some "we vs. them" view point just based on what already happened.

[-] Ooops@feddit.org 2 points 2 hours ago

Yeah, and techbros and their lobbyists also totally expect that they can get rid of all qualified workers with AI to only have barely-paid and dependent serfs again. Will totally happen if they just believe hard enough in that tale...

[-] Ooops@feddit.org 3 points 2 hours ago* (last edited 2 hours ago)

People actually thought about that... so snapshots are read-only by design

[-] Ooops@feddit.org 2 points 2 hours ago* (last edited 2 hours ago)

Has every single one of those people loudly lamenting the rise of German military power spend the cold war (or alternatively every history class) unconcious?

Germany had the 2nd biggest military in NATO, far biggest one in Europe for decades... firmly embedded in European defense strategy via said NATO.

[-] Ooops@feddit.org 1 points 2 hours ago* (last edited 2 hours ago)

Putin has barely been able to invade part of Ukraine over multiple years

Yeah and he doesn't care that he can't occupy Ukraine, is killing massive amounts of his people and destroying his country's economy as long at it keeps him in power. So when Putin's decisions are very obviously not based on any kind of sense, why not attack the Baltics next? Doesn't matter that he won't be able to defeat NATO. When he sees a political or personal reason he will do it, because fuck any consequences others have to bear.

[-] Ooops@feddit.org 6 points 2 hours ago* (last edited 2 hours ago)

Is there something going wrong in translation or are Poles considering Germany "overseas" now? And what sea?

[-] Ooops@feddit.org 4 points 3 hours ago* (last edited 3 hours ago)

Hoffnungen? Dass Spahn schneller wieder zurückkommt, um nach Neuwahlen Vizekanzler unter AfD-Führung zu werden? So wie ein großer Teil der C*U es sehr offensichtlich seit langem plant, während sie fleißig übernommene Nazi-Talkingpoints verbreiten und parallel die Verbindungen zu den MAGA-Techbros und -Faschisten in den USA ausbauen und pflegen? Nein danke, ich würde gern passen.

[-] Ooops@feddit.org 3 points 3 hours ago

Lol... they gave a fuck, couldn't even be bothered too apply earlier than the very last minute, were the usual arogant assholes...

Then -in a usual case of right-wing morons playing the victim- they blamed their expected loss at their support for Israel themselves, while nobody else actually did.

[-] Ooops@feddit.org 18 points 3 hours ago

"Aber die anderen Parteien müssen doch nur endlich bessere Politik machen!!!"

Wie? Viele Wähler wählen gar nicht nach Politik, sondern danach wer lauter und penetranter Lügen kreischt? Na, sowas aber auch. Wer hätte das bloß gedacht?

[-] Ooops@feddit.org 9 points 14 hours ago

Falscher Ansatz...

Es gibt klare Richtlinien, wer die Prüfung eines Parteiverbotsverfahrens beantragen kann.

Also warum sollten wir darüber diskutieren, warum Leute, die tatsächlich etwas unternehmen, nicht stattdessen die AfD verbieten? SIE KÖNNEN ES NICHT.

Und die, die es können, wollen nicht. Grüße gehen raus an die CU (deren Mehrheit für einen Antrag im Bundestag notwendig wäre), an die CU (die in der Mehrheit aller Ländervertretungen im Bunderat sitzt) und an die CDU (die den Kanzler stellt, der das ebenfalls beantragen könnte). Wollen wir jetzt noch raten, warum genau die das nicht wollen? 😉

[-] Ooops@feddit.org 28 points 14 hours ago* (last edited 14 hours ago)

Ich würde sogar noch einen Schritt weitergehen: Wer die Möglichkeiten hat ein eAuto ohne enormen logistischen Aufwand zu betreiben, wählt sofort eins, weil das einfach die besseren Autos sind. Dafür muss er vorher noch keins gefahren sein; das ist einfach ein No-Brainer-

Aber gerade in Deutschland bemühen wir uns, eben jenen logistischen Aufwand möglichst groß zu halten, und parallel das Märchen zu erzählen, dass es doch an den dummen Bürgern liegt, die ihren Verbrenner doch so sehr lieben. Tatsächliche Probleme wegzuleugenen ist eh viel besser und vorallem billiger, als sie zu lösen, und hilft den Idioten, die immer noch lieber Verbrenner bauen wollen, vielleicht sogar noch ein wenig länger zu überleben bis die unweigerlich vor die Wand krachen.

[-] Ooops@feddit.org 1 points 15 hours ago

Die Ladeinfrastruktur wächst nicht ordentlich mit, was eben lokal zu Problemen führt. Vom bekloppten Tarifwirrwarr will ich eigentlich gar nicht reden.

Und -Überraschung!- andere Länder machen es besser und da funktioniert der Umstieg auf eMobilität dann auch viel besser.

Also ja, wenn in Deutschland politisch nichts unternommen wird und medial weiter das Märchen von den Deutschen, die halt einfach ihren Verbrenner so lieben erzählt wird, ist das tatsächliche Problem national. Ob es lokal bei der derzeitigen Verbreitung von eAutos irgendwo passt und woanders nicht, ist da eher irrelevant.

35
submitted 2 months ago by Ooops@feddit.org to c/unixporn@lemmy.world

25
submitted 4 months ago* (last edited 4 months ago) by Ooops@feddit.org to c/selfhosted@lemmy.world

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 ›

Ooops

0 post score
0 comment score
joined 2 years ago