NAMESTORE/JSON: fix parsing exp and flags
[oweals/gnunet.git] / src / namestore / namestore.conf.in
1 [namestore]
2 START_ON_DEMAND = @START_ON_DEMAND@
3 RUN_PER_USER = YES
4 UNIXPATH = $GNUNET_USER_RUNTIME_DIR/gnunet-service-namestore.sock
5 UNIX_MATCH_UID = NO
6 UNIX_MATCH_GID = YES
7 @UNIXONLY@ PORT = 2099
8 HOSTNAME = localhost
9 BINARY = gnunet-service-namestore
10 ACCEPT_FROM = 127.0.0.1;
11 ACCEPT_FROM6 = ::1;
12
13 # Which database should we use?
14 DATABASE = sqlite
15
16 # Should we optimize publishing record by caching the mapping
17 # from zone private keys to zone public keys in memory?
18 # (Set to NO if totally paranoid about keeping private keys
19 # in RAM longer than necessary.)
20 CACHE_KEYS = YES
21
22
23 [namestore-sqlite]
24 FILENAME = $GNUNET_DATA_HOME/namestore/sqlite.db
25
26 [namestore-heap]
27 FILENAME = $GNUNET_DATA_HOME/namestore/heap.db
28
29
30 [namestore-postgres]
31 # How to connect to the database
32 CONFIG = postgres:///gnunet
33 # Use temporary tables
34 TEMPORARY_TABLE = NO
35 # Use asynchronous commit (SET synchronous_commit TO OFF).
36 ASYNC_COMMIT = NO
37
38 [uri]
39 gns = gnunet-namestore
40
41
42 [fcfsd]
43 # Name of the fcfs registration service binary (for ARM)
44 BINARY = gnunet-namestore-fcfsd
45 START_ON_DEMAND = NO
46 UNIXPATH = $GNUNET_RUNTIME_DIR/gnunet-service-fcfsd.sock
47
48 # On what port does the FCFS daemon listen for HTTP clients?
49 HTTPPORT = 18080