]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - config/default.yaml
Add ability to disable tracker
[github/Chocobozzz/PeerTube.git] / config / default.yaml
1 # /!\ YOU SHOULD NOT UPDATE THIS FILE, USE production.yaml instead /!\ #
2
3 listen:
4 hostname: '127.0.0.1'
5 port: 9000
6
7 webserver:
8 https: false
9 hostname: 'localhost'
10 port: 9000
11
12 # Proxies to trust to get real client IP
13 # If you run PeerTube just behind a local proxy (nginx), keep 'loopback'
14 # If you run PeerTube behind a remote proxy, add the proxy IP address (or subnet)
15 trust_proxy:
16 - 'loopback'
17
18 # Your database name will be "peertube"+database.suffix
19 database:
20 hostname: 'localhost'
21 port: 5432
22 suffix: '_dev'
23 username: 'peertube'
24 password: 'peertube'
25 pool:
26 max: 5
27
28 # You can also specify a 'socket' path to a unix socket but first need to
29 # comment out hostname and port
30 redis:
31 hostname: 'localhost'
32 port: 6379
33 auth: null
34 db: 0
35
36 smtp:
37 hostname: null
38 port: 465
39 username: null
40 password: null
41 tls: true
42 disable_starttls: false
43 ca_file: null # Used for self signed certificates
44 from_address: 'admin@example.com'
45
46 # From the project root directory
47 storage:
48 tmp: 'storage/tmp/' # Used to download data (imports etc), store uploaded files before processing...
49 avatars: 'storage/avatars/'
50 videos: 'storage/videos/'
51 streaming_playlists: 'storage/streaming-playlists/'
52 redundancy: 'storage/redundancy/'
53 logs: 'storage/logs/'
54 previews: 'storage/previews/'
55 thumbnails: 'storage/thumbnails/'
56 torrents: 'storage/torrents/'
57 captions: 'storage/captions/'
58 cache: 'storage/cache/'
59
60 log:
61 level: 'info' # debug/info/warning/error
62
63 search:
64 # Add ability to fetch remote videos/actors by their URI, that may not be federated with your instance
65 # If enabled, the associated group will be able to "escape" from the instance follows
66 # That means they will be able to follow channels, watch videos, list videos of non followed instances
67 remote_uri:
68 users: true
69 anonymous: false
70
71 trending:
72 videos:
73 interval_days: 7 # Compute trending videos for the last x days
74
75 # Cache remote videos on your server, to help other instances to broadcast the video
76 # You can define multiple caches using different sizes/strategies
77 # Once you have defined your strategies, choose which instances you want to cache in admin -> manage follows -> following
78 redundancy:
79 videos:
80 check_interval: '1 hour' # How often you want to check new videos to cache
81 strategies: # Just uncomment strategies you want
82 # -
83 # size: '10GB'
84 # # Minimum time the video must remain in the cache. Only accept values > 10 hours (to not overload remote instances)
85 # min_lifetime: '48 hours'
86 # strategy: 'most-views' # Cache videos that have the most views
87 # -
88 # size: '10GB'
89 # # Minimum time the video must remain in the cache. Only accept values > 10 hours (to not overload remote instances)
90 # min_lifetime: '48 hours'
91 # strategy: 'trending' # Cache trending videos
92 # -
93 # size: '10GB'
94 # # Minimum time the video must remain in the cache. Only accept values > 10 hours (to not overload remote instances)
95 # min_lifetime: '48 hours'
96 # strategy: 'recently-added' # Cache recently added videos
97 # min_views: 10 # Having at least x views
98
99 csp:
100 enabled: false
101 report_only: true # CSP directives are still being tested, so disable the report only mode at your own risk!
102 report_uri:
103
104 tracker:
105 # If you disable the tracker, you disable the P2P aspect of PeerTube
106 enabled: true
107 # Only handle requests on your videos.
108 # If you set this to false it means you have a public tracker.
109 # Then, it is possible that clients overload your instance with external torrents
110 private: true
111 # Reject peers that do a lot of announces (could improve privacy of TCP/UDP peers)
112 reject_too_many_announces: false
113
114 cache:
115 previews:
116 size: 500 # Max number of previews you want to cache
117 captions:
118 size: 500 # Max number of video captions/subtitles you want to cache
119
120 admin:
121 # Used to generate the root user at first startup
122 # And to receive emails from the contact form
123 email: 'admin@example.com'
124
125 contact_form:
126 enabled: true
127
128 signup:
129 enabled: false
130 limit: 10 # When the limit is reached, registrations are disabled. -1 == unlimited
131 requires_email_verification: false
132 filters:
133 cidr: # You can specify CIDR ranges to whitelist (empty = no filtering) or blacklist
134 whitelist: []
135 blacklist: []
136
137 user:
138 # Default value of maximum video BYTES the user can upload (does not take into account transcoded files).
139 # -1 == unlimited
140 video_quota: -1
141 video_quota_daily: -1
142
143 # If enabled, the video will be transcoded to mp4 (x264) with "faststart" flag
144 # In addition, if some resolutions are enabled the mp4 video file will be transcoded to these new resolutions.
145 # Please, do not disable transcoding since many uploaded videos will not work
146 transcoding:
147 enabled: true
148 # Allow your users to upload .mkv, .mov, .avi, .flv videos
149 allow_additional_extensions: true
150 threads: 1
151 resolutions: # Only created if the original video has a higher resolution, uses more storage!
152 240p: false
153 360p: false
154 480p: false
155 720p: false
156 1080p: false
157 # /!\ EXPERIMENTAL /!\
158 # /!\ Requires ffmpeg >= 4
159 # Generate HLS playlists and fragmented MP4 files. Better playback than with WebTorrent:
160 # * Resolution change is smoother
161 # * Faster playback in particular with long videos
162 # * More stable playback (less bugs/infinite loading)
163 # /!\ Multiply videos storage by 2 /!\
164 hls:
165 enabled: false
166
167 import:
168 # Add ability for your users to import remote videos (from YouTube, torrent...)
169 videos:
170 http: # Classic HTTP or all sites supported by youtube-dl https://rg3.github.io/youtube-dl/supportedsites.html
171 enabled: false
172 torrent: # Magnet URI or torrent file (use classic TCP/UDP/WebSeed to download the file)
173 enabled: false
174
175 auto_blacklist:
176 # New videos automatically blacklisted so moderators can review before publishing
177 videos:
178 of_users:
179 enabled: false
180
181 instance:
182 name: 'PeerTube'
183 short_description: 'PeerTube, a federated (ActivityPub) video streaming platform using P2P (BitTorrent) directly in the web browser with WebTorrent and Angular.'
184 description: 'Welcome to this PeerTube instance!' # Support markdown
185 terms: 'No terms for now.' # Support markdown
186 default_client_route: '/videos/trending'
187 # Whether or not the instance is dedicated to NSFW content
188 # Enabling it will allow other administrators to know that you are mainly federating sensitive content
189 # Moreover, the NSFW checkbox on video upload will be automatically checked by default
190 is_nsfw: false
191 # By default, "do_not_list" or "blur" or "display" NSFW videos
192 # Could be overridden per user with a setting
193 default_nsfw_policy: 'do_not_list'
194 customizations:
195 javascript: '' # Directly your JavaScript code (without <script> tags). Will be eval at runtime
196 css: '' # Directly your CSS code (without <style> tags). Will be injected at runtime
197 # Robot.txt rules. To disallow robots to crawl your instance and disallow indexation of your site, add '/' to "Disallow:'
198 robots: |
199 User-agent: *
200 Disallow:
201 # Security.txt rules. To discourage researchers from testing your instance and disable security.txt integration, set this to an empty string.
202 securitytxt:
203 "# If you would like to report a security issue\n# you may report it to:\nContact: https://github.com/Chocobozzz/PeerTube/blob/develop/SECURITY.md\nContact: mailto:"
204
205 services:
206 # Cards configuration to format video in Twitter
207 twitter:
208 username: '@Chocobozzz' # Indicates the Twitter account for the website or platform on which the content was published
209 # If true, a video player will be embedded in the Twitter feed on PeerTube video share
210 # If false, we use an image link card that will redirect on your PeerTube instance
211 # Change it to "true", and then test on https://cards-dev.twitter.com/validator to see if you are whitelisted
212 whitelisted: false
213
214 followers:
215 instance:
216 # Allow or not other instances to follow yours
217 enabled: true
218 # Whether or not an administrator must manually validate a new follower
219 manual_approval: false