update readme

This commit is contained in:
m5r 2022-10-30 18:54:07 +01:00
parent cb0b3a8a3f
commit c9399a3b21
No known key found for this signature in database
GPG Key ID: 5BC847276DD5DDEA

View File

@ -1,19 +1,21 @@
# local-ip.sh # local-ip.sh
[local-ip.sh](https://www.local-ip.sh) is a DNS service that resolves IP addresses from a specifically formatted hostname. [local-ip.sh](https://www.local-ip.sh) is a DNS service that resolves IP addresses from a specifically formatted hostname.
It was inspired by [local-ip.co](http://local-ip.co) and It was inspired by [local-ip.co](http://local-ip.co), [sslip.io](https://sslip.io) and [xip.io](https://xip.io)
<!-- TODO: provide certs for ez local dev that requires HTTPS --> <!-- TODO: provide certs for ez local dev that requires HTTPS -->
## Usage ## Usage
```sh ```sh
$ dig 10-0-1-29.my.local-ip.sh +short go run ./main.go
10.0.1.29
$ dig app.10-0-1-29.my.local-ip.sh +short dig @localhost 10-0-1-29.my.local-ip.sh +short
10.0.1.29 # 10.0.1.29
$ dig foo.bar.10.0.1.29.my.local-ip.sh +short dig @localhost app.10-0-1-29.my.local-ip.sh +short
10.0.1.29 # 10.0.1.29
$ dig 127.0.0.1.my.local-ip.sh +short dig @localhost foo.bar.10.0.1.29.my.local-ip.sh +short
127.0.0.1 # 10.0.1.29
dig @localhost 127.0.0.1.my.local-ip.sh +short
# 127.0.0.1
``` ```