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

„Keine Zombies“

Die haben ja zumindest Interesse an Hirn... 🧟‍♂️

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

The problem is: the government doesn't give a fuck about prublic opinion.

Just like all alleged "conservatives" and "centrists" everywhere their plan is far-right populist screaming, culture-war propaganda and fascism (graciously pushed and paid for by the billionaires that want proper serfs again) to stay in power instead of politics for the population because those would limit their ability to shamelessly enrich themselves.

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

No, they paid a German company that was building massive off-shore wind power production in the US to cancel the project and reimbursed them for voiding the lease on those off-shore areas.

Basically the US pays to keep economically viable wind power financed privately away, then pays again for the subsidies to get economically non-viable fossil fuel power generators build instead. All while screaming how they don't want to take part in that renewable scam that only works because of subsidies.

It's so stupid, you would be laughed out of the room if you brought up such an idea in serious fiction...

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

Why not use the $1.25bn and reinvest it into a wind park in the North Sea

Because the same brain rot makes the same kind of people go insane there, too, and then vote for corrupt "conservatives" that sabotage renewables for fossil fuels (read: for the juicy bribes the fossil industry pays).

Germany is just working on new legislation to prevent renewables where the grid isn't build up to handle it while also providing zero reasons for grid providers to build up the grid. Then they complete the package with no guaranteed feed-in compensation anymore.

Which obvious leads to a "sure you can build renewables, but a third party benefitting from fossil fuels has total control over your ability to sell your product"-situation were exactly noone will ever invest in renewables anymore. (PS: storage was also blocked by insane double taxation for years before a different government fixed that, and so instead the CEO of the record-holder in burying applications for connecting storage to the grid in red-tape -literal years for a process that should take a few days- was awarded with a job as Minister of Economy and Energy...)

They are doing exactly the same bullshit, they are just not as obnoxiously loud and boastful with their insanity as the orange moron is.

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

Hilft aber nicht, wenn die Mehrheit meist nur Titel liest. Das ist leider allzu bekannt und gut dokumentiert.

Wer sich heutzutage auf den differenzierten Inhalt eines Artikels beruft, wohlwissentlich und in Kauf nehmend, bei wie vielen eben nur der Titel hängenbleibt, betreibt auch nur eine etwas andere Art von Clickbait.

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

Weniger Übereinstimmung mit der AfD ist kein Selbstzweck. Wieso sollte ich z.B. für Planung und Bau neuer Autobahnen sein, nur weil die AfD dagegen ist?

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

...und dafür, dass sie auch heute noch das Lügenmärchen von "das war früher auch schon so" erzählen, dass ja hier im Titel auch wieder brav reproduziert wird.

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

"Wenn die schon nur mitbekommen, dass man ~~irgendwie konservativ, rechts oder Christ~~ ein rassistischer, frauen-feindlucher Menschenhasser ist ~~, der Faschisten unterstützt~~ , allein das wird schon abwertend gesehen.

Und mit Recht.

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

sagt der 20-Jährige

Wo Gen Z? Oder ändert sich die Definition heutzutage schneller als die Generationen wechseln?

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

Tatsächliche laute Rufe in Deutschland:

  • Schluss mit der Korruption!

  • Schluss mit dem Sozialabbau!

  • Faire Besteuerung statt immer nur die arbeitende Bevölkerung auszubluten!

  • Macht endlich Wirtschafts- und Klimapolitik statt Lobbyisten zuzuarbeiten!

  • AfD Verbotsverfahren prüfen!

Und der ÖRR so: Deutschland will eine Frau an der Spitze des Staates!

Nee, wir wollen vorallem Menschen mit Integrität (in der Positionm, wie auch in anderen), die endlich mal wieder für Deutschland, und nicht gegen die Bevölkerung arbeiten.

Also möchte ich aus gegebenen Anlass noch ergänzen:

  • Besinnt auch verdammt nochmal auf eure Aufgabe und macht Journalismus. Es ist egal wie sehr ihr in vorauseilendem Gehorsam bei der Verblödung der Menschen und dem Rechtspopulismus mitmacht. Die werden euch trotzdem nicht in Ruhe lassen, sobald sie an die Macht kommen. So blöd kann man doch nicht sein...
[-] Ooops@feddit.org 5 points 1 day ago* (last edited 1 day ago)

dass die trotzdem wesentlich preiswerter sind als M$

Aber die bieten korrupten Politikern nicht so tolle Gefallen und Vergünstigungen und bauen auch nicht ihr neues HQ in deiner Stadt, nur weil Unsummen an Steuergelder an sie fliessen.

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

Allein schon mit diesem Titel suggerieren zu wollen, dass es in Deutschland eine Klimapolitik gäbe -außer natürlich man rechnet die absichtliche Verschlimmerung durch korrupte Lobbymarionetten der Fossilindustrie- sagt eigentlich schon alles, was man über die deutschen Medien wissen muss.

35
submitted 2 months 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