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

Nette Idee... aber wer mit diesen Floskeln ankommt ist mit großer Wahrscheinlichkeit nicht an Argumenten interessiert. Sonst hätte er die ja schon längst mal aufgeschnappt.

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

It isn't much by todays standards. But imagine even a just a tenth of this (accounting for lover quality back then) for the older half of that data by 2000's storage costs.

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

Du meintest sicherlich aus Düsseldorf nach Köln zu flüchten... 😄

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

Jetzt komm hier mal nicht mit so abgedrehten Ideen. Das hier ist immer noch Deutschland, also wenn schon, dann bitte eine Sommer-Autobahn!

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

Journalist kann sich jeder einfach nennen, und deshalb müssen sie leider nicht, ja, viele haben nicht mal den leisen Wunsch es auch nur zu versuchen...

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

Gibt es bei diesen 5% Überschneidungen zu den bekannten 4% Echsen oder existieren die unabhängig zusätzlich?

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

Merz und die CDU sind halt nicht in der Krise, sondern sie sind die Krise.

Leider ist ein Großteil der deutschen Wähler zu dumm, verwirrt oder politisch desinteressiert, um diese offensichtliche Tatsache vor der Wahl zu erkennen. Und selbst jetzt gibt es noch eine absurd große Menge, die Merz als Einzelfall und nicht als Symptom der CDU erkennt und weiter Stillstand und Verfall wählen würde. Und es wird ja noch schlimmer: Denn das ist die bessere Option. Diejenigen, die sich denken, "Ja genau die Scheiße will ich, aber in noch korrupter und noch irrsinniger!" und ihre Alternative gibt es ja auch noch.

[-] Ooops@feddit.org 10 points 6 hours ago

Die nerven aber nur eine noch nicht völlig von Social Media verblödete und abgestumpfte Minderheit. Beim Rest ist das sehr erfolgreich, sonst würden sie es nicht machen...

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

Es wäre zu hoffen, dass er das nicht tut, aber der gehört eben zum Kernstück der Kooperation mit den US-Kumpels (MAGA, Heritage, Thiel und Co.) und auch intern bestens vernetzt. Und das ist was zählt, sonst wäre er nicht trotz krasser Skandale immer nur aufwärts gefallen. Ich befürchte also leider, dass er nach Merz sehr schnell wieder auf der Matte steht. Mit bei den Vorreitern der "ganz neutralen Denkanstöße", in wie weit man mit der AfD kooperieren kann und sollte, war er ja schließlich auch fleißig dabei. Und ich erwarte mit dem irgendwann unvermeidlichen Abgang von Merz nichts anderes, als dass die CDU schnellstens die Reste der Brandmauer abreißt und so tut, als wäre das nur Merz' Vorgabe gewesen.

[-] Ooops@feddit.org 26 points 7 hours ago

Is it even physically possible to find liar so good to sell the extremely obvious bullshit of this administration?

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

But... but... the economy! And those evil migrants! And those stupid worker rights! And all those lovely combustion engines and fossil fuel power plants we need! And we can probably find another whale or catfish as a diversion soon, too!

Why don't you people ignore reality like your are told to do?

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

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