Skip to content
Discussion options

You must be logged in to vote

Es gibt nun eine Lösung:

1. DNS Eintrag setzten
Ich habe im AdGuard zwei DNS Rewrite regeln für null definiert.

2. Nginx proxy, welche die requests auf den EVCC weiterleitet.
Nginx installieren
sudo apt update sudo apt install -y nginx

Redirect-Site anlegen
sudo tee /etc/nginx/sites-available/null-redirect >/dev/null <<'EOF' server { listen 80 default_server; listen [::]:80 default_server; # egal welcher Host kommt (null / null.home / IP) -> redirect server_name _; location / { return 302 http://192.168.1.34:7070$request_uri; } } EOF

Default-Site entfernen und Redirect aktivieren
sudo rm -f /etc/nginx/sites-enabled/default sudo ln -sf /etc/nginx/sites-available/null-redirect /etc/nginx/s…

Replies: 13 comments 19 replies

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
1 reply
@SmaMa82
Comment options

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
1 reply
@andig
Comment options

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
9 replies
@andig
Comment options

@premultiply
Comment options

@andreasgapsch
Comment options

@premultiply
Comment options

@andreasgapsch
Comment options

Comment options

You must be logged in to vote
7 replies
@andreasgapsch
Comment options

@andreasgapsch
Comment options

@SmaMa82
Comment options

@premultiply
Comment options

@Subito
Comment options

Answer selected by andreasgapsch
Comment options

You must be logged in to vote
1 reply
@SmaMa82
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request devices Specific device support
6 participants
Converted from issue

This discussion was converted from issue #26162 on December 23, 2025 21:57.