mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-28 05:29:48 +00:00
6b98655af2
The initial g stands for Geographic, as gdnsd offers a plugin system for geographic (or other sorts of) balancing, redirection, and service-state-conscious failover. If you don't care about that feature, it's still quite good at being a very fast, lean, and resilient authoritative-only server for static DNS data. gdnsd is written in C using libev and pthreads with a focus on highi performance, low latency service. It does not offer any form of caching or recursive service, and does not support DNSSEC. WWW: http://code.google.com/p/gdnsd/ PR: ports/167946 Submitted by: Stefan Caunter <stef@scaleengine.com>
20 lines
582 B
Plaintext
20 lines
582 B
Plaintext
--- config.example.orig 2012-05-06 20:26:34.000000000 +0000
|
|
+++ docs/config.example 2012-05-25 20:13:28.000000000 +0000
|
|
@@ -1,4 +1,14 @@
|
|
-
|
|
# For more information on configuration, see "man gdnsd.config"
|
|
-options => { zones_default_ttl = 43200 }
|
|
+
|
|
+options => {
|
|
+ username = gdnsd
|
|
+ zones_default_ttl = 3600
|
|
+ http_port = 13506
|
|
+ tcp_clients_per_socket = 256
|
|
+ tcp_timeout = 8
|
|
+ max_http_clients = 32
|
|
+ priority = 0
|
|
+ listen = 127.0.0.1
|
|
+ http_listen = 127.0.0.1
|
|
+}
|
|
zones => { example.com => { default_ttl = 86400 } }
|