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