aboutsummaryrefslogtreecommitdiffhomepage
path: root/config/production.yaml.example
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2019-04-10 09:23:18 +0200
committerChocobozzz <me@florianbigard.com>2019-04-10 09:23:18 +0200
commit31b6ddf86652502e0c96d77fa10861ce4af11aa4 (patch)
treeb94402972945699134b2a504af5d551124f0bf54 /config/production.yaml.example
parent22834691abb6e74d31654ffd2ebeaaaa8ef3ac7b (diff)
downloadPeerTube-31b6ddf86652502e0c96d77fa10861ce4af11aa4.tar.gz
PeerTube-31b6ddf86652502e0c96d77fa10861ce4af11aa4.tar.zst
PeerTube-31b6ddf86652502e0c96d77fa10861ce4af11aa4.zip
Add ability to disable tracker
Diffstat (limited to 'config/production.yaml.example')
-rw-r--r--config/production.yaml.example10
1 files changed, 10 insertions, 0 deletions
diff --git a/config/production.yaml.example b/config/production.yaml.example
index 5029cc25b..dd5c9769b 100644
--- a/config/production.yaml.example
+++ b/config/production.yaml.example
@@ -102,6 +102,16 @@ csp:
102 report_only: true # CSP directives are still being tested, so disable the report only mode at your own risk! 102 report_only: true # CSP directives are still being tested, so disable the report only mode at your own risk!
103 report_uri: 103 report_uri:
104 104
105tracker:
106 # If you disable the tracker, you disable the P2P aspect of PeerTube
107 enabled: true
108 # Only handle requests on your videos.
109 # If you set this to false it means you have a public tracker.
110 # Then, it is possible that clients overload your instance with external torrents
111 private: true
112 # Reject peers that do a lot of announces (could improve privacy of TCP/UDP peers)
113 reject_too_many_announces: false
114
105 115
106############################################################################### 116###############################################################################
107# 117#