[-] Ooops@feddit.org 20 points 21 hours ago

Irgendwann, ich glaube fest dran, checkt der deutsche Wähler, dass die Typen, die er immer wieder wählt, gar nicht dumm und inkompetent sind, sondern ganz genau wissen was sie tun: sich und ihre reichen Gönner auf unsere Kosten bereichern.

Ach nee, wen versuch ich hier zu verarschen... Ich glaub natürlich nicht daran, dass der gehirngewaschene Deutsche irgendwann doch mal etwas checkt.

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

I didn't have any actual issues with the native install either.

But with [multilib] activated there were dozens and dozens of 32bit libraries pulled alongside their regular version that I didn't actually need. And I use Wine a lot more than Steam anyway. So once Wine went fully 64bit I decided to get rid of all that legacy multilib 32bit stuff.

Steam via flatpak also works and will do until they, too, fully switch over to WoW64 implementation.

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

Und ~40% aller Wähler würden auf Nachfrage hin leugnen, dass irgendetwas davon wirklich im AfD-Parteiprogramm stehen.

[-] Ooops@feddit.org 13 points 22 hours ago

But which industry lobbyists would pay them then?

[-] Ooops@feddit.org 5 points 2 days ago

Wenn ich mir angucke, wie mitten in der Großstadt auf 'nem verwilderten Stück Wiese fröhlich rumgesummt wird, kann ich mich des Eindrucks nicht erwehren, dass die Aufzählung "Landwirtschaft, Pestizide, Überdüngung, Urbanisierung" eine gewisse Gewichtung vermissen lässt...

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

Das würde bedeuten einem Großteil der deutschen Medienlandschaft die Existenzgrundlage zu nehmen...

Ich wäre dafür.

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

Lot’s of people in EU fall for strong leader trap, aging population and plenty of brown immigrants doesn’t help

Interestingly those two concept seem to be mutually exclusive... people fall for stories about (totally imaginary masses of) brown immigrants only where none actually exist.

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

Der "rechte Flügel" der CDU treibt aber leider nicht sein Unwesen, sondern ist derzeit die klare Mehrheit innerhalb des Haufens.

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

Nicht zum Markenkern, aber halt zum gängigen Marketing, seit man verstanden hat, dass Rechtspopulismus der einfachste Weg ist, Stimmen des Pöbels für Politik abzugreifen, die eigentlich gegen deren Interessen handelt.

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

Also ich find Merz kommuniziert eigentlich durchaus sehr ehrlich. Es vergehen selten mehr als ein paar Tage, ohne dass eine weitere Äußerung wieder einmal seinen Rassismus und allgemeinen Menschenhass offen kund tut.

[-] Ooops@feddit.org 36 points 3 days ago

„Passt nicht ins Stadtbild“, kommentiert jemand unter dem Eintrag „CDU Eierhaus“ im Landkreis Darmstadt-Dieburg.

und

Medien stellten einen Zusammenhang mit Protesten junger Leute gegen die Wehrpflicht her.

sind mal wieder ein tolles Beispiel, wie Medien die offensichtliche Realität verweigern. Klar, es kann keine Widerstand gegen die tägliche rassistische Scheiße eines Friedrich Merz sein, sondern geht nur um die blöde Jugend, die mal wieder protestiert...

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

The government is investigating the "desirability and feasibility of potential Dutch military deployment"

...does sound like, "we don't even know yet if we want to..." and centainly not even close to that headline.

26
submitted 4 days ago* (last edited 4 days 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