forked from basecamp/xip-pdns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxip-pdns.conf.example
24 lines (18 loc) · 944 Bytes
/
xip-pdns.conf.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Increment this timestamp when the contents of the file change.
XIP_TIMESTAMP="20161009001"
# The top-level domain for which the name server is authoritative.
XIP_DOMAIN="xip.test"
# The public IP addresses (e.g. for the web site) of the top-level domain.
# `A` queries for the top-level domain will return this list of addresses.
XIP_ROOT_ADDRESSES=( "1.2.3.1" )
# The public IP addresses on which this xip-pdns server will run.
# `NS` queries for the top-level domain will return this list of addresses.
# Each entry maps to a 1-based subdomain of the format `ns-1`, `ns-2`, etc.
# `A` queries for these subdomains map to the corresponding addresses here.
XIP_NS_ADDRESSES=( "1.2.3.4" "1.2.3.5" )
# How long responses should be cached, in seconds.
XIP_TTL=300
# If no dashed or dotted IP is found, use this IP address
XIP_DEFAULT_IP_ADDRESS=( "127.0.0.1" )
# MX records to return. Prio + hostname
XIP_MX_RECORDS=( 10 "mail.xip.test" )