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

In anderen Ländern möchte man sowas ja auch einbauen, während Deutschland in seiner eigenen Lobby-kontrollierten Realität existiert. Deshalb ist der Einbau von Smartmetern hier eben nicht umsetzbar (und Wärmepumpen funktionierne nicht im Winter, EVs haben nicht die benötigte Reichweite für die tausenden Kilometer, die jeder täglich fährt, Speicher kann man leider nicht anschließen etc.). Denn dann könnte die Energiewende ja funktionieren und der korrupte Haufen in unserer Politik würde nicht mehr von seinen besten Spendern entlohnt.

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

Komm hier nicht mit Logik oder Argumenten...

Alle sind korrupt, schaufeln das Geld eh nur in die eigene Tasche und deshalb hat es keinen Sinn für irgendjemanden zu stimmen oder für irgendetwas, dass Geld bringt. Kopf in den Sand und auf den Untergang warten. Und das am besten noch als Vernunft feiern. Das ist derzeit wohl schon fast die Mehrheitsmeinung.

Und währenddessen machen die, die tatsächlich korrupt bis ins Mark sind, einfach weiter wie immer, weil deren Wähler sich eh seit je her nicht dran stören.

Wird langsam Zeit, dass wir den Laden einfach zu machen. Die propagandainduzierte Hirnfäule hat offensichtlich gewonnen.

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

denn die deutsche Produktivität ist nicht gesunken

Das ist 'ne interessante Art, es auszudrücken. Richtig ist sogar: bereinigt ist die Produktivität der Deutschen massiv gestiegen, so massiv, dass in der Tat selbst pro Kopf (also Demographie schon inklusive) ein riesiges Plus existiert. Nur werden jetzt schon seit Jahrzehnten alle Zugewinne unberührt nach oben weg transferiert.

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

Nö, wieso? Man verspricht dann einfach wieder das selbe. Die Wähler sind doch erwiesenermaßen absolut lernresistent.

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

Und der Witz daran ist, dass genau diese Beschreibung es dir rechtlich erlauben würde....

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

Deutsche Juden sind i.A. Deutsche und nicht Israelis.

Dann kommt aber sofort die nächste Ebene des Problems zu tragen, dass jüdische Organisationen in Deutschland -genau wie unsere Politiker- oft lieber das Sprachrohr für Lobbyinteressen spielen, als die Menschen zu vertreten, die sie vertreten sollten. Die brauchen uns dann eben nicht für die Gleichsetzung mit Israel und machen das lautstark selber.

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

upgrade to next kernel version != patch the kernel with backported security fixes

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

Der Wahn von kleinen Stückzahlen zum Premiumpreis, weil es da die höchsten Gewinnmargen gibt, funktioniert halt nicht nur bei der deutschen Autoindustrie nicht...

[-] Ooops@feddit.org 9 points 3 days 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 9 points 3 days ago* (last edited 3 days 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 3 days 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 27 points 3 days 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