aboutsummaryrefslogtreecommitdiff
path: root/src/gns/gns.conf.in
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2012-12-04 19:37:05 +0000
committerChristian Grothoff <christian@grothoff.org>2012-12-04 19:37:05 +0000
commit03cd2a43b97d5514b237261607a3f09aab4f250b (patch)
tree21a72501c16615b752f01d94dbc6522973424745 /src/gns/gns.conf.in
parent0f271cc42ea9e3029219fbb3a02862beacc08afa (diff)
downloadgnunet-03cd2a43b97d5514b237261607a3f09aab4f250b.tar.gz
gnunet-03cd2a43b97d5514b237261607a3f09aab4f250b.zip
-fix align
Diffstat (limited to 'src/gns/gns.conf.in')
-rw-r--r--src/gns/gns.conf.in32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/gns/gns.conf.in b/src/gns/gns.conf.in
index 9746c07af..e865efd21 100644
--- a/src/gns/gns.conf.in
+++ b/src/gns/gns.conf.in
@@ -5,25 +5,57 @@ HOME = $SERVICEHOME
5BINARY = gnunet-service-gns 5BINARY = gnunet-service-gns
6UNIXPATH = /tmp/gnunet-service-gns.sock 6UNIXPATH = /tmp/gnunet-service-gns.sock
7@UNIXONLY@PORT = 2102 7@UNIXONLY@PORT = 2102
8
9# Where to store the key for the Master zone
8ZONEKEY = $SERVICEHOME/gns/zonekey.zkey 10ZONEKEY = $SERVICEHOME/gns/zonekey.zkey
11
12# Where to store the key for the Private zone
9PRIVATE_ZONEKEY = $SERVICEHOME/gns/zonekey_priv.zkey 13PRIVATE_ZONEKEY = $SERVICEHOME/gns/zonekey_priv.zkey
14
15# Where to store the key for the Shorten zone
10SHORTEN_ZONEKEY = $SERVICEHOME/gns/zonekey_short.zkey 16SHORTEN_ZONEKEY = $SERVICEHOME/gns/zonekey_short.zkey
17
18# Should we hijack DNS queries using the Linux firewall?
19# (this only works on GNU/Linux systems)
11HIJACK_DNS = NO 20HIJACK_DNS = NO
21
22# Automatically import PKEYs we learn into the shorten zone?
12AUTO_IMPORT_PKEY = YES 23AUTO_IMPORT_PKEY = YES
24
25# When we automatically import PKEYs into shorten zone, require confirmation
26# before they become active? (Not useful right now as the GUI to confirm
27# doesn't exist)
13AUTO_IMPORT_CONFIRMATION_REQ = NO 28AUTO_IMPORT_CONFIRMATION_REQ = NO
29
30# How many queries is GADS allowed to perform in the background at the same time?
14MAX_PARALLEL_BACKGROUND_QUERIES = 25 31MAX_PARALLEL_BACKGROUND_QUERIES = 25
32
33# When do queries fail with timeout?
15DEFAULT_LOOKUP_TIMEOUT = 10 s 34DEFAULT_LOOKUP_TIMEOUT = 10 s
35
36# How frequently do we try to publish our full zone?
16ZONE_PUBLISH_TIME_WINDOW = 4 h 37ZONE_PUBLISH_TIME_WINDOW = 4 h
38
17# PREFIX = valgrind --leak-check=full --track-origins=yes 39# PREFIX = valgrind --leak-check=full --track-origins=yes
18 40
19[gns-proxy] 41[gns-proxy]
42# Where is the certificate for the GNS proxy stored?
20PROXY_CACERT = $SERVICEHOME/gns/gnsCAcert.pem 43PROXY_CACERT = $SERVICEHOME/gns/gnsCAcert.pem
21PROXY_UNIXPATH = /tmp/gnunet-gns-proxy.sock 44PROXY_UNIXPATH = /tmp/gnunet-gns-proxy.sock
22 45
23[fcfsd] 46[fcfsd]
47# On what port does the FCFS daemon listen for HTTP clients?
24HTTPPORT = 18080 48HTTPPORT = 18080
49
50# Where is the zone key for the FCFS zone stored?
25ZONEKEY = $SERVICEHOME/fcfsd/zonekey.zkey 51ZONEKEY = $SERVICEHOME/fcfsd/zonekey.zkey
52
53# For ARM, not very useful. FIXME: Dead option?
26HOSTNAME = localhost 54HOSTNAME = localhost
55
56# FIXME: Dead option?
27HOME = $SERVICEHOME 57HOME = $SERVICEHOME
58
59# Name of the fcfs binary (for ARM)
28BINARY = gnunet-gns-fcfsd 60BINARY = gnunet-gns-fcfsd
29 61