[-] Ooops@feddit.org 3 points 23 minutes ago

And all of this happens in a starting phase where exactly none of the AI companies are generating profit and they are all still fighting for market shares via heavily discounts.

If costs are far too high to justify replacing workers right now, just imagine the costs once the established market increases costs to levels that actually generate profits for them; ones able to make back the insane investments.

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

In einem Universum, in dem CDU und SPD die Regierung bilden, aber ständig un penetrant auf einer der Parteinen herumgehackt wird, während Kritik an der anderen unentwegt in der rechten Presse relativiert oder umgeframed wird (mit dem wenig überraschenden Ergebnis, dass die SPD abstürzt, während die CDU nur ein paar Prozent verliert - soll ich dem etwa entnehmen, dass die SPD in Wahrheit die Politik macht und für alles verantwortlich ist), kann man durchaus die Frage stellen, warum die linkere der beiden Parteien so völlig anders behandelt wird.

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

Nö, aber um dem Wahn zu folgen, dass es sich irgendwie um einen Teamsport handelt, bei dem man einer Seite zujubeln muss, und nicht einfach auch -und oft sogar sehr offensichtlich- auf beiden Seiten eines Konflikts genozidaler Abschaum am Werk sein kann, muss man schon a) dumm, b) manipuliert oder c) ein Bot oder Troll mit offensichtlicher Agenda sein.

[-] Ooops@feddit.org 2 points 51 minutes ago* (last edited 49 minutes ago)

Sowohl als auch. Ja, Menschen brauchen als Ausgleich auch positive Geschichten.

Andererseits kenne ich kaum jemanden, der mit den Cyberpunk-Klassikern aufgewachsen ist und die Parallel zu den Bestrebungen der großen Tech-Konzerne nicht erkennt. Das ist also ganz plump Bildung, die jedem rechtzeitig zu Teil werden sollte.

Es reicht eben nicht, den Leuten zu erzählen, wo es positiverweise hingehen kann. Man muss auch die Fallstricke auf anderen Wegen erkennen können, um sie zu vermeiden.

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

Ist halt ne Investition. Heute bei der Verblödung der Bevölkerung für den rechten Abschaum helfen, morgen lukrative Aufträge und Zuwendungen bekommen.

[-] Ooops@feddit.org 16 points 14 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 23 points 15 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 5 points 15 hours ago* (last edited 15 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 15 points 22 hours ago* (last edited 22 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 22 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 22 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 7 points 23 hours ago* (last edited 23 hours ago)

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

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