[-] Ooops@feddit.org -3 points 28 minutes ago* (last edited 27 minutes ago)

This time for real or is it the same imaginary heat wave we are talking about for two weeks now and that would have totally roasted us already last weekend... when in reality it was 16°C and raining in mid-June?

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

Das funktioniert aber auf Dauer nicht. Die C*U-geführte Politk gegen das Land verschleißt gerade die SPD völlig (die C*U selber verliert auch ein wenig, aber verhältnismäßig weniger, weil deren Wähler eh hirntot sind). Was soll danach kommen? C*D-SPD-Grüne? Dann C*U-SPD-Grüne-Linke?

Man kann halt nicht unentwegt rhetorisch und durch Scheißpolitik die AfD weiter nach vorne bringen, ohne dass sie irgendwann die einzige Regierungsoption sind. Und wenn man den üblichen Populisten der Union zuhört wird die Kooperation mit der AfD ja bereits immer wieder ins Spiel gebracht, um die Idee zu normalisieren.

Die "Drohung" ist nur solange eine, wie sich andere Parteien erpressen lassen und es überhaupt die realistische Möglichkeit gibt. Danach wird sie zur Realität.

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

Stupid US two-party system... in other countries the right-wing morons in government would at least have blamed the Greens for those algae.

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

You say this as if discussions here would be based on reality instead of memes...

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

Die erhoffte Erkenntnis ist: "Ja, der deutsche Wähler ist nach wie vor im geisteskranken Wahn gefangen, und das menschenverachtende Gepolter resultiert weiterhin in mehr Stimmen für Rechts".

Und damit wird er wie immer Recht haben. Dass die C*U dann nur noch Juniorpartner für Faschisten ist, ist für ihn ja kein Problem. Hauptsache weiter an der Macht und sich bereichern.

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

Aber die Energiewende scheitert wie alles andere eigentlich nur an Geld. Genauer gesagt an den Unsummen, die ausgegeben werden, um Menschen zu verblöden, damit sie für obsoleten Müll, dumme Ideen und gegen die eigenen Interessen kämpfen.

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

It's actual an Axel Spinger SE publication. They rarely have actual content and when they do it's usually a lie. All they actually do is push agendas⁽*⁾ by publishing headlines, because most people are morons and will not read anything else (or even think for themselves) anyway.

⁽*⁾ with basically all being variations of: pro-Israel, pro-US, pro-fossil-fuels (because KKR is their biggest owner with ~36% share)

[-] Ooops@feddit.org 17 points 21 hours ago

No, its not a little refugee crisis that triggered this. It's the constant and relentless onslaught of propaganda on social media 24/7 that makes their victims live in a constant everything-crisis because they lost any contact to actual reality.

And that's not a European thing but a human one. There is basically no modern country not afraid of the rising crime rates (that don't exist), the scary streets in their once beautiful cities (that are actually safer than ever before), the rampant and uncontrolled wave of immigration (that only exists in their heads) and trying to replace them and destroy their way of life. Because they are all consuming the exact same brain rot that does exactly what the name suggests.

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

"being sold" implies actual plan and arguments to "sell" to their potential voters. Yet you can actually read straight from the AfD program and AfD voters will scream in your face how you are spreading lies and fake news.

So no, there is in fact no political way to bring them back because just like every far right cult they just went ape-shit crazy and would require extensive therapy just to be able to perceive reality again.

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

There is the option to explicitly set DefaultTimeoutStartSec and DefaultTimeoutStopSec per systemd service.

If you don't specify it in a service file, the default values from /etc/systemd/system.conf (both set to 90s) will be used, so you can change those values to 30s, too, to affect all services (that don't have their limit set explicitly) globally.

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

No, it's actual reality. There are more than a hundred thousand packages in the AUR. There are explicit warnings that these are user content and should be used with care.

And now a miniscule percentage (~1%) of orphaned packages, so those with very little interest in, are taken over by some malicious actors to spread malware.

And people suddenly pretend like this is a catastrophe for Linux (no one cares) and for Arch and it's derivates (who don't operate the AUR be definition and explicitly warn against using it without caution). If I told you that not 1, but 10% of the most obscure software packages you can download and install on Windows are pure malware, you wouldn't even blink an eye. And yet all the morons now come crawling from their caves flooding everything with memes and bullshit of "haha, now we know you lied to us and Linux isn't secure at all!".

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

"Demnach dauern Registrierung und Bearbeitung bei Westnetz statt der vorgesehenen vier Arbeitstage oft mehr als ein Jahr."

Und diese gute Arbeit in der konsequenten Verzögerung des Fortschritts wurde bereits mit einen Ministerposten in der Bundesregierung belohnt, wodurch im Gegenzug die Rediten weiter erhöht und die Energiewende möglichst ganzt abgewürgt wird.

Läuft bei denen...

30
submitted 1 week ago by Ooops@feddit.org to c/unixporn@lemmy.world

26
submitted 2 months ago* (last edited 2 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