forked from vetio/dyndns-daemon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
36 lines (27 loc) · 786 Bytes
/
config.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# From address (linked to PGP key)
from_addr = "[email protected]"
# Address of the hetzner robot
to_addr = "[email protected]"
# SMTP data
smtp_host = "smtp.exaple.com:465"
smtp_username = "user"
smtp_password = "pass"
smtp_helo_name = "localhost"
# ID of the PGP key with which the message to hetzner will be signed
pgp_key = "0000"
# Domain which is to be managed
domain = "example.com"
# Hetzner user
hetzner_user = "user"
# Server listening address
server_addr = "0.0.0.0:0"
# HTTP Basic auth
http_auth_user = "user"
http_auth_password = "pass"
# Header from which the real ip of the client is to be read
ip_resolv_method = "Header"
# ip_resolv_method = "DynDns2"
## For header resolution
ip_header = "X-Real-IP"
# Template for zonefile
template = "res/zonefile.tpl"