[-] Ooops@feddit.org 16 points 11 hours ago

Wenn sich Patienten ihre Behandlung aktiv verweigern, muss man sie halt sterben lassen...

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

Thing is it's not actually wasps but just a few very specific kinds of wasps that are assholes ruining the reputation for all.

Something similiar happens for bees. When people talk about them being endangered nowadays they don't mean the domesticated honey bees many think about (those are cared enough for that populations are rather growing) but the many kinds of wild (and often solitary) bees.

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

Ich hab irgendwie Angst, mir das anzugucken, weil ich dann nur noch mehr Details über den Irrsinn unserer Regierung erfahre als ich jetzt schon kenne...

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

Du must nicht daran glauben, sondern nur gut genug für deine schlechte Entscheidung bezahlt werden. Es lebe ~~die Korruption~~ der Lobbyismus!

[-] Ooops@feddit.org 20 points 22 hours ago* (last edited 10 hours 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 two conceptionally identical cruise missiles 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 2 points 22 hours ago* (last edited 22 hours 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 2 points 22 hours ago

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

[-] Ooops@feddit.org 2 points 22 hours 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 3 points 1 day ago

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

[-] Ooops@feddit.org 15 points 1 day 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 1 day 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 7 points 1 day 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

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

26
submitted 2 months ago* (last edited 2 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