32 lines
1.1 KiB
Plaintext
32 lines
1.1 KiB
Plaintext
|
|
# Snap DynDNS server (ending with update.php)
|
||
|
|
SERVER=https://yourdyndnsservice.net
|
||
|
|
|
||
|
|
# Your personal DynDNS domain which has been registered to your
|
||
|
|
# Snap DynDNS Server provider
|
||
|
|
DOMAIN=user1.example.com
|
||
|
|
|
||
|
|
# Easy DynDNS username and password
|
||
|
|
USER=myuser
|
||
|
|
PASS=mypassword
|
||
|
|
|
||
|
|
# Service which shows own IP in plain text (notice that if you use IPv4
|
||
|
|
# and IPv6 parallely you will get an IPv6 address in many cases in
|
||
|
|
# return. So you would have to set your DynDNS domain record
|
||
|
|
# accordingly to AAAA instead of A to make it working. Else, use a
|
||
|
|
# service which only returns your IPv4 address like the default one.)
|
||
|
|
IPSERV=http://ip4.nandus.net
|
||
|
|
|
||
|
|
# Timeout for IP requests to the service above in seconds
|
||
|
|
TIMEOUT=10
|
||
|
|
|
||
|
|
# Comma-separated IP(s) which should be ignored.
|
||
|
|
# If one of these IPs is the current IP, there'll be no DNS update
|
||
|
|
# (e.g. for your VPN servers)
|
||
|
|
IGNOREIP=127.0.0.1,127.0.0.2
|
||
|
|
|
||
|
|
# Should the DynDNS update be aborted if your public IP is a Tor exit node IP?
|
||
|
|
CHECKTOR=false
|
||
|
|
|
||
|
|
# URL where the list of Tor exit nodes can be downloaded
|
||
|
|
EXITNODES=https://check.torproject.org/exit-addresses
|