2021-12-23 05:58:18 -08:00
|
|
|
---
|
|
|
|
id: ipify
|
|
|
|
title: Ipify
|
|
|
|
sidebar_label: Ipify
|
|
|
|
---
|
|
|
|
|
|
|
|
## What
|
|
|
|
|
2022-05-17 20:45:44 -07:00
|
|
|
[Ipify][ipify] is a simple Public IP Address API, it returns your public IP Address in plain text.
|
2021-12-23 05:58:18 -08:00
|
|
|
|
|
|
|
## Sample Configuration
|
|
|
|
|
2023-03-31 11:55:36 -07:00
|
|
|
import Config from '@site/src/components/Config.js';
|
|
|
|
|
|
|
|
<Config data={{
|
2021-12-23 05:58:18 -08:00
|
|
|
"type": "ipify",
|
|
|
|
"style": "diamond",
|
|
|
|
"foreground": "#ffffff",
|
|
|
|
"background": "#c386f1",
|
2022-09-16 07:32:48 -07:00
|
|
|
"leading_diamond": "\ue0b6",
|
2021-12-23 05:58:18 -08:00
|
|
|
"trailing_diamond": "\uE0B0",
|
2022-03-27 01:12:47 -07:00
|
|
|
"template": "{{ .IP }}",
|
2021-12-23 05:58:18 -08:00
|
|
|
"properties": {
|
|
|
|
"cache_timeout": 5,
|
|
|
|
"http_timeout": 1000
|
|
|
|
}
|
2023-03-31 11:55:36 -07:00
|
|
|
}}/>
|
2021-12-23 05:58:18 -08:00
|
|
|
|
|
|
|
## Properties
|
|
|
|
|
2022-09-16 07:32:48 -07:00
|
|
|
| Name | Type | Description |
|
|
|
|
| --------------- | -------- | -------------------------------------------------------------------------------------------------------------------- |
|
|
|
|
| `url` | `string` | The Ipify URL, by default IPv4 is used, use `https://api64.ipify.org` for IPv6 - defaults to `https://api.ipify.org` |
|
|
|
|
| `http_timeout` | `int` | How long may the segment wait for a response of the ipify API? - defaults to 20ms |
|
|
|
|
| `cache_timeout` | `int` | in minutes - How long you want your IP address cached - defaults to 10 min |
|
2021-12-23 05:58:18 -08:00
|
|
|
|
2022-02-01 03:10:46 -08:00
|
|
|
## Template ([info][templates])
|
|
|
|
|
|
|
|
:::note default template
|
|
|
|
|
2022-09-16 07:32:48 -07:00
|
|
|
```template
|
2022-02-01 03:10:46 -08:00
|
|
|
{{ .IP }}
|
|
|
|
```
|
|
|
|
|
|
|
|
:::
|
|
|
|
|
|
|
|
### Properties
|
2021-12-23 05:58:18 -08:00
|
|
|
|
2022-09-16 07:32:48 -07:00
|
|
|
| Name | Type | Description |
|
|
|
|
| ---- | -------- | ------------------------ |
|
|
|
|
| .IP | `string` | Your external IP address |
|
2021-12-23 05:58:18 -08:00
|
|
|
|
2022-04-20 09:43:59 -07:00
|
|
|
[templates]: /docs/configuration/templates
|
2021-12-23 05:58:18 -08:00
|
|
|
[ipify]: https://www.ipify.org/
|