[–] 1 point 1 hour ago

In my case it was Syncthing and Radicale that replaced basically all my Nextcloud use.

Nextcloud isn't bad actually but you really need to use a lot of the million optional features to justify that behemoth.

  • source
  • parent
  • context
  • [–] 1 point 2 hours ago

    Emden and Zwickau are EV only plants.

    Then it's not surprising those are planned to shut down. VW is still working hard to accelerate its intentional suicide. But our corrupt and paid off politicians loudly screaming about the future of combustion engines will surely intervene in time and spend a lot of tax money to keep the carcass relevant longer "for the ecnonomy".

  • source
  • parent
  • context
  • [–] 3 points 2 hours ago (1 child)

    "Immer mehr Polizisten überwachen..." oder "Immer häufiger überwacht Polizei..."

    "Polizei" als nicht zählbarer Singular funktioniert hier nicht...

  • source
  • [–] 6 points 2 hours ago

    These "political influencers and commentators" are just living off all racist morons. So he will look for another insane far-right extremist to support instead now to continue the grift.

  • source
  • [–] 5 points 2 hours ago*

    Unproblematisch? Nö. Sollte Israel jegliche Unterstützung entzogen werden? Aber gerne doch.

    Aber das ändert halt nichts daran, dass das Narrativ nichts mit der Realität zu tun hat. Seit Jahren plärren Propagandisten über die bösen Deutschen, mit deren Waffen in Gaza Völkermord betrieben wird. All das während wir in Wahrheit genau wissen, was geliefert wird/wurde. Und weder werden Uboot auf Zivilisten geworfen, noch werden Flugabwehr-Raketen oder Torpedos (oder die sie tragenden Schiffe und Uboote) gegen Zivilisten oder überhaupt Landziele eingesetzt, oder Schutzwesten verwendet, um damit Palästinenser totzuprügeln.

    Um das ganze mal in Relation zu setzen: Wenn Deutschland dringend erbetene Helme an die Ukraine liefert, flucht die ganze Welt, weil die Deutschen sich weigern zu helfen. Wenn Deutschland Flugabwehrgeschütze und -raketen in die Ukraine liefert, lacht die ganze Welt darüber, dass Deutschland nur defensive Systeme liefert. Aber wenn Deutschland Schutzwesten, Panzerglas, Flugabwehrraketen oder die Schiffe als Trägersysteme selbiger an Israel liefert, töten wir damit Zivilisten und beteiligen uns einem Völkermord. Realität, Fakten und Logik haben in der Diskussion halt schon lange das Gebäude verlassen.

  • source
  • parent
  • context
  •  

    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 ›