namestore.conf.in 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. # Which database should we use?
  13. DATABASE = sqlite
  14. # Should we optimize publishing record by caching the mapping
  15. # from zone private keys to zone public keys in memory?
  16. # (Set to NO if totally paranoid about keeping private keys
  17. # in RAM longer than necessary.)
  18. CACHE_KEYS = YES
  19. [namestore-sqlite]
  20. FILENAME = $GNUNET_DATA_HOME/namestore/sqlite.db
  21. [namestore-heap]
  22. FILENAME = $GNUNET_DATA_HOME/namestore/heap.db
  23. [namestore-postgres]
  24. # How to connect to the database
  25. CONFIG = postgres:///gnunet
  26. # Use temporary tables
  27. TEMPORARY_TABLE = NO
  28. # Use asynchronous commit (SET synchronous_commit TO OFF).
  29. ASYNC_COMMIT = NO
  30. [uri]
  31. gns = gnunet-namestore -e 1a -u
  32. [fcfsd]
  33. # Name of the fcfs registration service binary (for ARM)
  34. BINARY = gnunet-namestore-fcfsd
  35. START_ON_DEMAND = NO
  36. UNIXPATH = $GNUNET_RUNTIME_DIR/gnunet-service-fcfsd.sock
  37. # On what port does the FCFS daemon listen for HTTP clients?
  38. HTTPPORT = 18080