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

Klar, alles was eAutos benachteiligt, ist ein Modell für Deutschlands Weg in die Obsoleszenz. 👍

Ja, die Änderung der Kraftfahrzeugsteuer (nach Gewicht, Kilometern und allgemein höher muss irgendwann zum Ausgleich kommen). Aber sinnvollerweise nicht, um die anlaufende Wende zur eMobilität abzuwürgen. Und vorallem nur mit entsprechenden Alternativen, so dass die Leute, die freiwillige die Straßen belasten dann auch für selbige zahlen dürfen.

Aber da sinnvoll derzeit aus ist, genau wie jede sinnige Investitition in Alternativen zu Brumm-Brumm-Stick, ist die Regierung sicher schon fleißig am Abschreiben.

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

Some people (those stupid enough to visit the US) getting at least something (visa-free access) out of it is actually an incredible good deal.

The expected EU move would be to just give away all our data without getting anything over some ridiculous pretense because our corrupt politicians got some small favors from a lobbyist.

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

Bundeskanzler Merz sieht eine Vertrauenskrise der Demokratie in Deutschland.

Ihm ist aber schon klar, dass er dafür mitverantwortlich ist, oder?

Im ZDF wehrte sich Merz zudem gegen den Vorwurf, Arbeitnehmer beleidigt zu haben

Ohh... bei dem massiven Realitätsverlust wohl eher nicht.

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

Bei der Demographie eigentlich überraschend, dass Rentner fahren in Rentner selten vorkommt....

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

In most legislations the qualifyer for more than that is premeditated action. And being a moron with low impulse control and a tendency for road rage sadly is the opposite.

The actual question is how someone like that is still allowed behind a wheel.

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

But if they still design in Germany, where are they actually saving money? Rent for the building where those injection moulding machines are housed?

Producing a helmet is not actually something requiring human labour or lots of (cheaper) energy.

So what's left is indeed quality control...

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

Just for completions sake. Did you change them all?

There's HandleLidSwitch, HandleLidSwitchExternalPower and HandleLidSwitchDocked

Edit: Oh, I did missed the "*". So assume that is a yes.

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

Also eigentlich wollte ich ja erst fragen, ob ich einfach andere Faktenchecks zu Sommerinterviews verpasst habe...

... aber dann hab ich leider den Link angeklickt und was findet sich da? AfD dies, AfD das, AfD, AfD, AfD.

Meint der ÖRR die Scheiße wirklich ernst?

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

Angriff aufs Grundgesetz?

?=!

Nicht der erste dieser Regierung, und wird auch nicht der letzte sein.

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

Gerade in dem Moment, in dem die Faschisten von der AfD kurz davor sind in Teilen des Landes zu regieren

Die haben halt Angst, dass Teile der Bevölkerung bei der geplanten Haselnuss-Koalition aufmucken. Also muss bis zur nächsten Bundestagswahl alles bereit sein, damit es dann schnell genug gehen kann.

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

Sorry, aber bei Ausagen im Ton von "Naja zwei Väter sind immerhin noch besser als Kinderheim" von moralischem Kompass und Art.1 GG sprechen ist schon etwas hart...

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

In 1960 over five workers supported each pensioner in western Europe. Now there are just 2.5 workers supporting each pensioner.

Always the same fairy tale based on half-truths:

Adjusted for inflation etc. the economic output of one of those workers today is 5 times as high as is was before. Or already including the demographic that is constantly brought up as a diversion the adjusted economic output per capita is ~ 2.5 times as high as before.

So there actually would be no problem... if all the systems weren't tied to stagnating real wages instead while we spend the last 3-4 decades funneling off every increase in productivity to the top. Mostly untaxed of course because it will trickle down again soon™...

Technological and social improvements naturally increase productivity massively, while also increasing life expectancy and changing demographics. But that IS NOT the problem, ignoring all those increases in productivity because the returns of a handful of insanely rich people have to go up exponentially IS. And that generational conflict is just like the constant culture war nowadays... a diversion so people don't wake up and realize where the actual problem lies.

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