Echo IP Adresse
Link
Beschreibung
Gibt die IPv4-Adresse bzw. IPv6 Adresse als String zurück.
Das geht einfach über NGINX:
location / {
return 200 $remote_addr;
add_header content-type "text/plain";
}
Gibt die IPv4-Adresse bzw. IPv6 Adresse als String zurück.
Das geht einfach über NGINX:
location / {
return 200 $remote_addr;
add_header content-type "text/plain";
}