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

Wieso /s ?

Wenn man immer und immer wieder ganz bewusst funktionierende Konzepte ignoriert, um stattdessen datenschutztechnischen Mist abzuliefern, ist das doch sehr offensichtlich tatsächlich die Intention.

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

Kann mich jemand über die CDU-Interna aufklären, die hierzu geführt haben? Denn dass konsequentes Lügen in der CDU ein Grund für Widerstand aus der Partei sei, ist ja offensichtlich und gut dokumentiert Blödsinn.

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

The government confirmed plans to expand renewables, so that by 2030 at least 80% of generation will be emissions-free. It further confirmed plans to shut down coal-fired power stations by 2038.

While actually sabotaging renewables left and right, so they can -with very sad faces of course- announce in 2030 that they have totally missed the goal so it obviously wasn't possible. Then they will repeat the same farce with coal 8 years later.

Environmentalists predicted costs could rise further and said battery technology was being neglected as an alternative

Not neglceted but intentionally blocked. There exist a lot more applications for connecting batteries to the grid than are required for the next decade (all privately financed so from the state planing perspective for free...). But they simply won't happen as the grid providers are tightly linked with power producers that make their money from fossil fuels. In fact the CEO of one of the best in terms of blockage where applications are literally delayed by years was recently rewarded with a job as Minister of Economy and Energy by those corrupt lying morons.

while ~~power generators~~ fossil fuel heavy energy companies welcomed the legislation as a pragmatic compromise (the ones with actual investments in renewables are loudly criticising the move but somehow don't exist in mostly conservative-controlled media reports).

Fixed that statement.

PS: Oh, and those gas power plants are needed so urgently *cough* that this government also wasted a year by completely scrapping the existing plans for a new one, only to realize that they won't get the EU agreements for the insane numbers they would have liked to build and going back to the original plan... minus the alleged hydrogen-compatibility of course because failing the energy transition and burning fossil fuels forever is their actual plan.

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

That's not even the worst part. They also hallucinate that the sudden leap to an actual artificial general intelligence is just a few more upgrades away...

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

könnte ich behaupten, dass der Jens ein von den Ethnofaschisten in Israel bezahlter Bot ist um deren Propaganda zu pushen.

Das ist einfach nur widerlich sowas. Absolutes Versagerverhalten.

Klar, behaupten kannst du das. Nur ist halt alles Behaupten wertlos ohne Belege. Und dein "Er hat auf Unregelmäßigkeiten bei der Masse an radikalen Anti-Israel hingewiesen, die jeder nachprüfen kann, also ist er ein widerlicher Bot der israelischen Ethnofaschisten" ist als Beleg eben doch irgendwie schwach.

Und im übrigen tust du damit exakt wovon ich gesprochen habe. Nö, man muss kein Bot sein, um Genozid und Angriffskrieg scheiße zu finden. Wenn man geisteskrankes genozidales Vehalten aber magischerweise nur auf einer Seite sieht, liegt die Annahme plötzlich wieder recht nahe.

[-] Ooops@feddit.org 13 points 1 day 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 1 day ago* (last edited 1 day 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 5 points 1 day ago* (last edited 1 day 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 7 points 1 day 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 18 points 1 day 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 26 points 1 day 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 8 points 1 day ago* (last edited 1 day 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?

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