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

No, they were that big and indeed quite floppy, too (only half as thick as those 3.5" disks and from rather soft plastic).

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

Entschuldige das Missverständnis. Der Teil in Klammern war nicht als Aufforderung gedacht, dein persönliches rassistisches Lieblingsnarrative zu teilen.

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

Integration läuft aber immer beidseitig ab.

Nicht in Deutschland. Hier erarbeiten sich die Menschen ihre Integration selbstständig, weil der Staat sie größtenteils allein lässt. Und tun sie das nicht ausreichend, ist das Problem selbstverständlich deren [hier zufälliges rassistisches Narrativ von der inkompatiblen Kultur einfügen].

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

Das gilt für gar keine Verfassungsfeinde, denn die lassen sich ja für noch mehr Befugnisse und Überwachung instrumentalisieren.

Genauso wie mehr Abschiebungen nie für Straftäter gelten, sondern nur für integrierte Mitmenschen.

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

Aber wozu dient die Wahl des Wortes denn dann, wenn nicht um eine Erhebung von Jugendsprache?

Ist seit jeher 'ne Langenscheidt Werbeaktion, nichts weiter...

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

"Ignore the reality you see with your own eyes and believe instead in these nice numbers we made up to show how that corrupt government working against the country is actually good."


brought to you by the same people also warning against minimum wage (and every raise of it), phasing out combustion engines and those "wasteful" investments into public transport

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

And just like with any other case in the past right-wing morons completely fail to handle a known and well documented terrorist. One who was also already convicted but -again- magically no one could be bothered to do anything. And then they loudly cry for tighter laws and more surveilance. Because they obviously need much more data to willfully ignore and more laws to not act on.

And what probably soon follows are loud calls for more deportations... of integrated migrants with jobs, yet never those with criminal backgrounds and actual convictions. Because... reasons. 😅🔫

And let's not even mention that this guy has one single passport, a German one, and that the very same politicians love to incite hatred against anyone associated with a Pride event 364 days a year. Just not on the single day when it can be instrumentalised against another group of people they hate even more.

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

how can they still afford hybrid warfare though?

Because it's incredible cheap. You can buy politicians for very little money, random off-the-mill weirdos for peanuts. Those idots even brain-wash and radicalise themselves by their own constant social media circle jerk. So it's basically for free once the proper echo chambers have been already established.

At this point some kid in a basement on the opposite side of the planet can single-handedly direct the whole army of brain-dead far-right cultists just by placing the next narrative in some ugly AI generated meme then leaning back while the brain-rot squad endlessly regurgitates that "content" in a thousand of permutations.

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

They should charge the officer who entered the given password for criminal stupidity instead...

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

No, it's not hype, but in many cases a straight out lie. We are governed by corrupt sell-outs while defunding education and a 24/7 stream of brain rot has the majority of voters blame (often illusionary) minorities while getting openly fucked by corporations and their governments.

They cry about digital sovereignity while buying solutions from Microsoft's or Google's EuRoPeAn cloud solutions that are a scam with zero sovereignity.

They talk about sovereign chip development while defunding education and research and subsidizing Intel.

They lament about a need for sovereign AI while just pushing surveilance and abolishing data protection so they can sell all our data to the big US companies... and now Palantir on top.

Oh and of course we totally need more US run data centers for those "sovereign" cloud and AI solutiuns somehow.

[-] Ooops@feddit.org 9 points 2 days ago

Er hätte gleich sagen können “ich nehme Befehle von den Überreichen an”.

Tut er doch mit seinem Pateibuch.

[-] Ooops@feddit.org 21 points 2 days ago

Wiedermal völliger Blödsinn, um erneut das Märchen davon unter die Leute zu bringen, dass die AfD irgendetwas richtig macht, an dem man sich orientieren sollte.

Nein, die AfD hat keine Visionen. Sie lügt. Ununterbrochen und ungestraft. Und genau in letzterem liegt das Problem. Nein, natürlich lösen wir es nicht, in dem wir uns überschlagen, jeder neuen infamen Lüge einen Faktencheck hinterher zu werfen. Genauso wenig hilft es aber sich an der Scheiße zu orientieren. Lügen und Hetze müssen schlichtweg endlich tatsächliche rechtliche Konsequenzen haben. Warum wir das nicht hinkriegen? Fragt den selben Abschaum, der ein AfD Verbotsverfahren blockiert, weil sie immer noch glauben mit den selben faschistischen Propagandataktiken genauso Erfolg haben zu können wie die Faschisten.

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