aboutsummaryrefslogtreecommitdiff
path: root/src/fs/fs.conf.in
diff options
context:
space:
mode:
Diffstat (limited to 'src/fs/fs.conf.in')
-rw-r--r--src/fs/fs.conf.in62
1 files changed, 0 insertions, 62 deletions
diff --git a/src/fs/fs.conf.in b/src/fs/fs.conf.in
deleted file mode 100644
index 797109d07..000000000
--- a/src/fs/fs.conf.in
+++ /dev/null
@@ -1,62 +0,0 @@
1[fs]
2START_ON_DEMAND = @START_ON_DEMAND@
3IMMEDIATE_START = YES
4INDEXDB = $GNUNET_DATA_HOME/fs/idxinfo.lst
5RESPECT = $GNUNET_DATA_HOME/fs/credit/
6STATE_DIR = $GNUNET_DATA_HOME/fs/persistence/
7UPDATE_DIR = $GNUNET_DATA_HOME/fs/updates/
8@UNIXONLY@ PORT = 2094
9HOSTNAME = localhost
10BINARY = gnunet-service-fs
11ACCEPT_FROM = 127.0.0.1;
12ACCEPT_FROM6 = ::1;
13
14# PREFIX = valgrind
15
16# Do we introduce artificial delays? (may improve anonymity)
17DELAY = YES
18
19# Do we cache content from other nodes? (may improve anonymity)
20CONTENT_CACHING = YES
21
22# Do we send unsolicited data to other nodes if we have excess bandwidth?
23# (may improve anonymity, probably not a good idea if content_caching is NO)
24CONTENT_PUSHING = YES
25
26UNIXPATH = $GNUNET_RUNTIME_DIR/gnunet-service-fs.sock
27
28# Do we require users that want to access file-sharing to run this process
29# (usually not a good idea)
30UNIX_MATCH_UID = NO
31
32# Do we require users that want to access file-sharing to be in the 'gnunet' group?
33UNIX_MATCH_GID = YES
34
35# Maximum number of requests this peer tracks (important for
36# memory consumption; 2k RAM/request is not unusual)
37MAX_PENDING_REQUESTS = 65536
38
39# How many requests do we have at most waiting in the queue towards
40# the datastore? (important for memory consumption)
41DATASTORE_QUEUE_SIZE = 32
42
43# Maximum frequency we're allowed to poll the datastore
44# for content for migration (can be used to reduce
45# GNUnet's disk-IO rate)
46MIN_MIGRATION_DELAY = 100 ms
47
48# For how many neighbouring peers should we allocate hash maps?
49EXPECTED_NEIGHBOUR_COUNT = 128
50
51# Disable anonymous file-sharing (but keep non-anonymous transfers)?
52# This option is mostly for testing.
53DISABLE_ANON_TRANSFER = NO
54
55# Maximum number of non-anonymous transfers this peer will support
56# at the same time. Excessive values mostly have the problem that
57# the service might use more memory, so we need to bound this at
58# some reasonable level. And if we have a very, very large
59# number, we probably won't have enough bandwidth to support them
60# well anyway, so better have a moderate cap.
61MAX_CADET_CLIENTS = 128
62