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

Oh, and once they start to develop their own jets each, France will suddenly realize that they want all the capabilities and options they vehemently denied when Germany mentioned them. We have seen this happen so often now, it isn't even funny anymore.

My personal highlight still is the APACHE desaster that brought us too conceptionally identical cruise missile produced by two different subsidiaries of the same company, just because German ideas about the warhead's capabilities were totally insane... until about 1min after they walked away from the project and France decided to actually want that sophisticated bunker-busting warhead now that there are no stupid Germans with the same idea anymore.

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

the CDU stayed, which makes “right-wing populists” a jab.

Do you really want to pretend that the C*U is doing anything else nowadays but populism? They are basically parroting every culture war bullshit the AfD brings up with some delay.

They campaigned on "hard work needs to pay off again" before screwing workers, "no new depts, the country doesn't have a problem of revenue but on of expenses" before taking on a historic amount of dept, just to waste it all on tax cuts and subsidies for the ultra-rich and actually create a revenue problem, while also loudly announcing to reverse all policies of their predecessors (which usually meant just renaming them without much change - normally just removing all measures making them socially acceptable).

All while rotating so quickly through different groups to blame that the only people they did not insult by now are toddlers and their rich patrons.

They are the posterchilds of promising everything their voters produce in empty bar talk, yet not delivering anything but platitudes and finger-pointing.

[-] Ooops@feddit.org 1 points 24 minutes ago

Weil sie sich zum FDGO des Landes bekennen, aber das Grundgesetz so schwierig zu schwenken ist?

[-] Ooops@feddit.org 1 points 26 minutes ago

Und wer klingelt wird aufs aggressivste von Fußgängern angegangen, die sich dadurch erschrecken oder persönlich angegriffen fühlen. Also umfahr ich die auch eher langsam, als zu klingeln. So gern prügel ich mich nämlich einfach nicht.

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

Nicht im echten Deutschland geborene deutsche Führer haben halt Tradition...

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

~~Germany~~ the German government doesn’t want to build up an alternative

Still wrong. German politicians and parties have in big parts fled those far-right cesspools. It's just the right-wing populists that stay there because that's where they have an audience cheering for their insanity.

So no, it's not some unwillingness to build an alternative. They are straight out appeasing fascists and staying on that platform because they want to copy their ideas on how to keep in power by dividing the population with a permanent stream of bullshit.

There is only exactly one right-wing playbook and everyone is copying from it.

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

Meanwhile european politicians continue to post on X.

The same politicians also like to constantly appease US fascists while trying to normalise genocides in the Middle East and copying moves from the exact same playbook of 'how to destroy democracy with right-wing populism and culture war'.

So maybe, just maybe, it's not the lack of alternatives (or even the need to have one) but their intentions that make them flock to and stay on that platform.

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

Why would we need European alternatives to bot-infested, troll-operated platforms for far-right propaganda and destroying civilised public discourse?

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

Also ich bin ja prinzipiell dafür, dass Deutschland da jetzt was eigenes baut, und sei es nur aus dem Grund, zu sehen, wie Frankreich dann wiedermal alle ihre Planungen umwirft, um plötzlich Spezifikationenumsetzen zu wollen, die sie in Kooperation mit Deutschland noch angelehnt haben (siehe: APACHE -> Taurus/SCALP-EG, MAV -> Boxer/VBCI, ECF -> Typhoon/Rafale etc.)

[-] Ooops@feddit.org 5 points 4 hours ago

"gerne wieder die Kanone bauen wollen" heißt in dem Fall aber ein sinnvolleres Kaliber als das, was KNDS nur deshalb plant, weil Nexter da schon was passendes in Entwicklung hat...

[-] Ooops@feddit.org 5 points 4 hours ago

Absichtlich nicht ins Deutsche übersetzt, weil das schon anders konnotiert ist

Oder wir könnten endlich damit aufhören, Nazis jeden Begriff und jedes Symbol⁽*⁾ nach ihrem Wunsch aufgreifen und umdichten zu lassen. Denn wo das endet, ist überaus deutlich: sie bestimmen den Diskurs und wir haben nicht mal mehr eine Sprache uns auszudrücken.

⁽*⁾ selbst die Flagge, die sie dafür benutzen, ist übrigens ein multikulturelles Design gegen Rechts

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

Nachricht einfach auf den Titel reduzieren, Instrumentalisierung erledigt. Gegenargumente, und sei es nur, "ließ den nächsten Satz auch mit", lässt die kognitive Dissonanz eh nicht zu.

29
submitted 3 days ago by Ooops@feddit.org to c/unixporn@lemmy.world

26
submitted 1 month ago* (last edited 1 month 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