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

Ja, sowas könnte tatsächlich aus dem Mund manch verwirrten Wählers stammen.

Aber letztendlich ist es halt nur eine dreiste Lüge. Es geht einzig und allein darum, dass ganze Geld zu den paar reichen Freunden zu schaffen, die sich mit Spenden und späteren Posten revanchieren. Der zweite Teil ist nur Ablenkung für die dummen Rassisten unter den Wählern, die darauf ansprechen.

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

Not that would be sad with it gone, but we had capitalism decades ago and the system still worked for the most parts. It's the neoliberal lunacy pushed on us since the 80s/90s (depending on country).

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

Yeah, no... If the most basic stuff like controlling your fan speed is broken for literal years (utility needed root permissions, yet using su or sudo made it crash), that's not some fault of users having too esoteric demands but pure and simple Nvidia idiocy.

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

The problem is not "using the drivers". It's the driver quality.

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

Most ads are gone when your DNS blocks them anyway. Can't you change your DNS on iPhones? Preferably to secure ones, too.

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

Welche angeblichen Warnsignale ignoriert die Politik denn? Die Antwort der Wähler auf ungerechte Verteilung ist doch, mehrheitlich Parteien zu wählen, die entweder die existierende Umverteilung nach oben unterstützen oder sie sogar noch steigern wollen. Also machen die aus ihrer Sicht doch alles richtig.

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

Yes, automation replaces jobs. In fact nearly every advance since long before the industrial revolution did. But it also increases the actual productivity per capita. So again the underlying problem is the system that transfers all gains up nowadays leaving less workers (with stagnating wages).

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

Ab irgendeinem Punkt wird "technologieoffen" halt albern, weil jeder mit 2 funktioniereden Gehrinzellen weiß, dass es nur Code ist für "einfach weiter wie bisher und so tun, als wenn jeden Moment eine neue Technologie vom Himmel fällt, durch die das nicht bekloppt ist und im Untergang endet".

Und wenn man erstmal soweit ist, müssen die Worte keinen wirklichen Sinn mehr ergeben. Sie sind halt eh nur noch Gebrabbel für Idioten, die darauf herein fallen.

Der selbe Typ Idiot hätte auch damals die Entwicklung von Autos zugunsten von Kutschen verweigert, weil sicher jeden Moment die magische Super-Pferderasse gezüchtet wird, die Motoren obsolet machen.

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

Why would the leading government party shy away from fascists when right-wing populism, culture war and cuddling up with fascists is all they do anyway.

Their active presence on basically any other platform would be a fucking clown show because there people would actually speak up against their bullshit constantly.

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

The worst joke is that most of these parties have a fediverse presence, often even their own servers. The same is true for the EU btw...

But they just collectively decided to give a fuck (the EU even topped this by running fediverse stuff for years then ending the test phase with "it works well and easy... but none-the-less be can't be bothered to keep it up anyway).

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

Was wir aus der Tatsache, dass die man einen ganze Artikel über die Niederlagen der AfD schreiben kann, von denen man aber sonst nie hört, bedauerlicherweise lernen können, ist dass unsere Medien in der breiten Masse aufgehört haben die Realität wiederzugeben.

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

Is there a whole card set?

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