Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
Ramiro de Zavalia 6e359059e6 first commit il y a 5 ans
.gitignore * ignore go build binary il y a 5 ans
LICENSE Initial commit il y a 5 ans
README.md first commit il y a 5 ans
main.go Added the "addr" parameter il y a 5 ans

README.md

yourip

Simple web service that returns your own IP. Similar to http://ifconfig.me

You can specify the address to bind with the --addr parameter.

# ./yourip --help
Usage of ./yourip:
  -addr string
    	local ip:port to bind (default ":8080")

When querying the service, you can get a JSON output using the /json path

Examples:

  # curl 'http://127.0.0.1:3000/'
  127.0.0.1
  # curl 'http://127.0.0.1:3000/json'
  {"ip":"127.0.0.1"}