Skip to content

Instantly share code, notes, and snippets.

@undownding
Created May 4, 2016 05:07
Show Gist options
  • Save undownding/e3d1c7dad093d22be507283917e6e98f to your computer and use it in GitHub Desktop.
Save undownding/e3d1c7dad093d22be507283917e6e98f to your computer and use it in GitHub Desktop.
Use nginx to get ip
server {
server_name ip.lustfield.net;
location = / {
default_type text/plain;
echo $remote_addr;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment