forked from .cyb/cyberman
Config file bugfixes
* YAML::Tiny does not support boolean values so we use integer 0 or 1 * We need to append a . to the SOA master otherwise we end up with "opennic.glue.cyb"
This commit is contained in:
parent
bf679b8cef
commit
5e4ba72357
|
@ -28,17 +28,17 @@ reserved_domains:
|
||||||
|
|
||||||
zonewriter:
|
zonewriter:
|
||||||
# Values used for SOA
|
# Values used for SOA
|
||||||
ns: 'ns12.opennic.glue'
|
ns: 'ns12.opennic.glue.'
|
||||||
responsible: 'hostmaster.opennic.cyb.'
|
responsible: 'hostmaster.opennic.cyb.'
|
||||||
file: '/var/nsd/zones/master/cyb'
|
file: '/var/nsd/zones/master/cyb'
|
||||||
include:
|
include:
|
||||||
# Optionally, you can have the zonewriter include another file
|
# Optionally, you can have the zonewriter include another file
|
||||||
# in the zone, which allows you to define some records manually
|
# in the zone, which allows you to define some records manually
|
||||||
enabled: true
|
enabled: 1
|
||||||
file: 'human_cyb'
|
file: 'human_cyb'
|
||||||
|
|
||||||
mail:
|
mail:
|
||||||
enabled: true
|
enabled: 1
|
||||||
# Currently, the local MTA is used and there's no config option
|
# Currently, the local MTA is used and there's no config option
|
||||||
from: 'cybnic@uptime.party'
|
from: 'cybnic@uptime.party'
|
||||||
baseurl: 'http://opennic.cyb'
|
baseurl: 'http://opennic.cyb'
|
||||||
|
|
Loading…
Reference in New Issue