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

Zumindest wenn sie noch einen Hauch Verstand haben

Ich denke, der Konjunktiv ist hier eher angebracht.

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

You are still with the company although there is no work? Time to abolish employee protections. -Merz

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

I seriously looked up photos to see if those eyes were edited...

...and omg, this isn't even one of the worst pictures out there.

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

Realistische Antwort: Es geht nicht um den Begriff, sondern um den Bezug. Wenn du ihn unter Bezug auf gebrochen Wahlversprechen und Falschaussagen Pinoccio nennst, ist das legitim. Wenn du es ohne Bezug tust, nur um zu beleidigen, nicht.

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

Nee, das ist keine der beiden gerichtlich bestätigten Rubelnutten...

Mit Betonung auf gerichtlich bestätigt.

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

Japp, hast du. Bei Politkerbeleidigung kann die Staatsanwaltschaft das selbstständig ohne Antrag des Geschädigten. Passiert in der Praxis eher selten. Aber Friedrich 'Fotzenfritz' Merz, Kanzler zweiter Wahl, muss trotz unseres Versuches, seinen liebevollen Kosenamen aus jüngeren Jahren im aktiven Sprachgebrauch zu halten, oft und völlig grundlos so viel mehr ertragen, als jeder Kanzler vor ihm, dass derart solidarische Hilfe verständlich ist.

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

Welche deutschen Gasspeicher waren noch gleich vor Beginn des Winter ordentlich gefüllt, und welche waren einfach nahezu leer? *hust*

Spoiler:Die Speicher, die nach Verstaatlichung von Uniper 2022 und der stattlichen Verwaltung der ehemals russischen Gasspeicher, unter direkter Kontrolle der Regierung stehen, wurden nicht befüllt. Die übrigen lagen brav jenseits der 95%+.

Jetzt schreit hier also quasi jemand danach, dass doch bitte wieder die anderen zu jetzt hohen Preisen einkaufen sollen. Während man selbst vermutlich wieder nichts tut, denn der korrupte Haufen in der Berliner Chefetage wird schon dafür sorgen, dass ja nicht zu viel Gas zur Verfügung steht, sonst gehen die gewinne der Geldgeber noch in den Keller.

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

Der sozialliberale Flügel in der FDP ist lange tot. Realistisch gesehen ist seit Glanzleistungen wie dem Tankrabatt, der eFuel-Förderung oder der fröhlichen Unterstützung von Plänen unsere Gesundheitsdaten gewinnbringend zu verscherbeln eigentlich jeder Liberalismus tot. Es geht nur noch ganz offen um Bereicherung für sich selbst und die Hand voll überreicher Spender.

Deshalb ist der Schulterschluss mit der AfD auch in keinster Weise überraschend. Die wollen ja exakt das selbe, nur die Mechanismen, wie man Wähler verarscht und von der eigenen Korruption ablenkt, unterscheiden sich.

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

Genau. Experten zahlen nicht, müssen schlimmstensfalls sogar noch selbst bezahlt werden. Und dann sagen sie für das Geld nicht mal das, was du hören willst. Also kein Wunder, dass unsere Politiker mit einem derart befremdlichen Konzept nichts anzufangen wissen.

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

No consequences, no change.

That's wrong. Without consequences there will be change, always to the worse, always seeing if they can get away with even more insane things.

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

They believe in a free market so they should be able to at least make good decisions on their own

No, they don't actually. Insane amounts of lobbyism (enabled by always the same corrupt types in government) is their idea of a free market. They pay huge amounts so that legislation supports their obsolete models and keep competitors away.

Which is exactly what fucks them now because their bought puppets cannot protect them from losing all their foreign market shares to innovative products.

That's also the reason those conservative morons in government are still loudly talking about 'highly efficient' combustion engines, totally fictious eFuels and plans to scrap the transition to EVs. Because they only know how to parrot the narratives they are paid to repeat.

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

No recovery intended either...

The idiots will continue to vote corrupt morons into office who ride the economy into the ground to instead make their sponsors in obsolete and failing industries richer for a few additional years before everything hits a wall.

26
submitted 1 month ago* (last edited 1 month 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