]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - config/default.yaml
Add ability to choose what policy we have for NSFW videos
[github/Chocobozzz/PeerTube.git] / config / default.yaml
CommitLineData
8c308c2b 1listen:
cff8b272 2 hostname: '127.0.0.1'
8c308c2b
C
3 port: 9000
4
5webserver:
6 https: false
3737bbaf 7 hostname: 'localhost'
8c308c2b
C
8 port: 9000
9
490b595a
C
10# Proxies to trust to get real client IP
11# If you run PeerTube just behind a local proxy (nginx), keep 'loopback'
12# If you run PeerTube behind a remote proxy, add the proxy IP address (or subnet)
13trust_proxy:
14 - 'loopback'
15
98dffd10 16# Your database name will be "peertube"+database.suffix
8c308c2b 17database:
3737bbaf 18 hostname: 'localhost'
feb4bdfd
C
19 port: 5432
20 suffix: '_dev'
55fa55a9
C
21 username: 'peertube'
22 password: 'peertube'
8c308c2b 23
94a5ff8a
C
24redis:
25 hostname: 'localhost'
26 port: 6379
27 auth: null
28
ecb4e35f
C
29smtp:
30 hostname: null
31 port: 465
32 username: null
33 password: null
34 tls: true
bebf2d89 35 disable_starttls: false
ecb4e35f
C
36 ca_file: null # Used for self signed certificates
37 from_address: 'admin@example.com'
38
8c308c2b
C
39# From the project root directory
40storage:
6b2ef589 41 avatars: 'storage/avatars/'
6b2ef589
C
42 videos: 'storage/videos/'
43 logs: 'storage/logs/'
44 previews: 'storage/previews/'
45 thumbnails: 'storage/thumbnails/'
46 torrents: 'storage/torrents/'
47 cache: 'storage/cache/'
f981dae8 48
23e27dd5 49log:
a0922eb9 50 level: 'info' # debug/info/warning/error
23e27dd5 51
f981dae8
C
52cache:
53 previews:
54 size: 1 # Max number of previews you want to cache
4793c343
C
55
56admin:
ecb4e35f 57 email: 'admin@example.com' # Your personal email as administrator
e22528ac
C
58
59signup:
60 enabled: false
291e8d3e 61 limit: 10 # When the limit is reached, registrations are disabled. -1 == unlimited
227d02fe 62
b0f9f39e
C
63user:
64 # Default value of maximum video BYTES the user can upload (does not take into account transcoded files).
65 # -1 == unlimited
66 video_quota: -1
67
227d02fe 68# If enabled, the video will be transcoded to mp4 (x264) with "faststart" flag
40298b02
C
69# In addition, if some resolutions are enabled the mp4 video file will be transcoded to these new resolutions.
70# Uses a lot of CPU and increases storage!
227d02fe 71transcoding:
1125c40a 72 enabled: true
98f535a5 73 threads: 1
40298b02 74 resolutions: # Only created if the original video has a higher resolution
1125c40a
C
75 240p: false
76 360p: false
77 480p: false
78 720p: false
79 1080p: false
66b16caf
C
80
81instance:
82 name: 'PeerTube'
2e3a0215 83 short_description: 'PeerTube, a federated (ActivityPub) video streaming platform using P2P (BitTorrent) directly in the web browser with WebTorrent and Angular.'
bf874e33
C
84 description: 'Welcome to this PeerTube instance!' # Support markdown
85 terms: 'No terms for now.' # Support markdown
901637bb 86 default_client_route: '/videos/trending'
0883b324
C
87 # By default, "do_not_list" or "blur" or "display" NSFW videos
88 # Could be overridden per user with a setting
89 default_nsfw_policy: 'do_not_list'
00b5556c
C
90 customizations:
91 javascript: '' # Directly your JavaScript code (without <script> tags). Will be eval at runtime
92 css: '' # Directly your CSS code (without <style> tags). Will be injected at runtime