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

Im Arbeitszeugnis kann man ihm halt völlig ehrlich und aus Überzeugung bescheinigen, dass er alle Aufgaben im Rahmen seiner Fähigkeiten bestmöglich erfüllt. Ist ja nicht seine Schuld, dass er nie auch nur die Grundlagen normalen menschlichen Miteinanders gelernt hat.

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

Klar, Fritze... Und das braune extra Aroma, das du beim Lecken der Stiefel gefunden hat, war sicher Schokolade. Die schmeckt in den USA nunmal etwas anders als bei uns.

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

Stupid evil Europeans rupturing from the US by... existing and enduring one tatrum after another by an unsuccessful senile grifter clinging to political power to avoid jail. How dare they to not submit to Diaper-Don and his army of brain-dead yes-men?

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

Quite the contrary. That mass surveilance was pushed through by the EU commision against the parliament that already rejected it (twice).

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

"Waldumbau" tut so als ginge es um echte Wälder, statt der typisch deutschen als Monokultur angelegte Holzplanatage...

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

No. Their "here's also this unofficial repository of builds completely maintained by random community users... USE AT YOUR OWN RISK - You have been warned!" ArchUserRepository got the least used (often long abandoned) packages hijacked by some bad actors.

But "Less than 1% of the least used packages in the unofficial repository you were explicitly warned about got hijacked by people trying to infect oyur PC" would not have been an interesting headline gathering attention.

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

SystemD started as a pure init system then added a lot of features over time.

Which is either good, if you actually just want something that works, or very bad because you are violating the purity of the Unix way.

Oh, and the best part, a lot of those people loudly against SystemD then praise what Apple did and the whole discussion quickly devolves into an insane "do this! no not like that! because rEaSoNs!!" shitshow.

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

":(){ :|:& };:"@iloverabbits.fun

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

Governments all over the world are destroying welfare. Just never for the imaginary reasons they talk about but because those corrupt fucks want to destroy welfare for their rich buddies benefiting of more dependent workers and lower wages and the populations are finally brain-damaged enough that they can away with their lies.

[-] Ooops@feddit.org 22 points 1 day ago

Wird er dann in ca. einer Woche auch vor Ort verscharrt oder müssen wir dann dafür zahlen, ihn zurückzubekommen?

[-] Ooops@feddit.org 18 points 1 day ago

Nichts was sich durch weniger Transparenz und weniger öffentliche Berichte der Überprüfungsstellen nicht lösen lässt...

[-] Ooops@feddit.org 10 points 1 day ago

Diese Regierung kriegt “digital” und “vertraulich” einfach nicht hin.

Und währenddessen hallunieren Deutschen immer noch Inkompetenz und Dummheit ihrer Regierung, statt endlich zu akzeptieren, dass die wissen, was sie tun und eben einfach nicht für uns arbeiten.

Keine Konsequenzen und sogar immer brav selbstständig Ausreden für sie erfinden, ist eben auch ein massiver Fehlanreiz.

35
submitted 1 month ago by Ooops@feddit.org to c/unixporn@lemmy.world

25
submitted 3 months ago* (last edited 3 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