Add IPv4/IPv6 lookup services

This commit is contained in:
Gitouche 2022-09-26 22:54:11 +02:00
parent fcb18989b9
commit b70621b018
1 changed files with 5 additions and 0 deletions

View File

@ -46,6 +46,7 @@ run your own external IP provider:
+ <?php $ip = $_SERVER['REMOTE_ADDR']; ?>
<?php print $ip; ?>
e.g.
+ https://api[4|6].ipify.org
+ https://ifconfig.co/ip
+ http://ifconfig.me/ip
+ http://whatismyip.akamai.com/
@ -53,3 +54,7 @@ e.g.
+ many more ...
'''
ifconfig = 'choose_from_above_or_run_your_own'
ifconfig = {
"ipv4": 'choose_from_above_or_run_your_own_ipv4_lookup_service',
"ipv6": 'choose_from_above_or_run_your_own_ipv6_lookup_service',
}