]>
Commit | Line | Data |
---|---|---|
552cc9d6 C |
1 | listen: |
2 | port: 9000 | |
3 | ||
21511bba | 4 | # Correspond to your reverse proxy "listen" configuration |
f1f4732f | 5 | webserver: |
d478d83d | 6 | https: true |
3737bbaf | 7 | hostname: 'example.com' |
d478d83d | 8 | port: 443 |
825a5d9c | 9 | |
98dffd10 | 10 | # Your database name will be "peertube"+database.suffix |
825a5d9c | 11 | database: |
552cc9d6 C |
12 | hostname: 'localhost' |
13 | port: 5432 | |
feb4bdfd | 14 | suffix: '_prod' |
6c05c149 C |
15 | username: 'peertube' |
16 | password: 'peertube' | |
552cc9d6 | 17 | |
94a5ff8a C |
18 | redis: |
19 | hostname: 'localhost' | |
20 | port: 6379 | |
21 | auth: null | |
22 | ||
ecb4e35f C |
23 | smtp: |
24 | hostname: null | |
25 | port: 465 | |
26 | username: null | |
27 | password: null | |
28 | tls: true | |
29 | ca_file: null # Used for self signed certificates | |
30 | from_address: 'admin@example.com' | |
31 | ||
552cc9d6 C |
32 | # From the project root directory |
33 | storage: | |
59c48d49 C |
34 | avatars: '/var/www/peertube/storage/avatars/' |
35 | videos: '/var/www/peertube/storage/videos/' | |
36 | logs: '/var/www/peertube/storage/logs/' | |
37 | previews: '/var/www/peertube/storage/previews/' | |
38 | thumbnails: '/var/www/peertube/storage/thumbnails/' | |
39 | torrents: '/var/www/peertube/storage/torrents/' | |
40 | cache: '/var/www/peertube/storage/cache/' | |
4793c343 | 41 | |
23e27dd5 C |
42 | log: |
43 | level: 'debug' # debug/info/warning/error | |
44 | ||
62ccb24e C |
45 | cache: |
46 | previews: | |
d478d83d | 47 | size: 100 # Max number of previews you want to cache |
62ccb24e | 48 | |
4793c343 C |
49 | admin: |
50 | email: 'admin@example.com' | |
e22528ac C |
51 | |
52 | signup: | |
53 | enabled: false | |
62ccb24e | 54 | limit: 10 # When the limit is reached, registrations are disabled. -1 == unlimited |
227d02fe | 55 | |
b0f9f39e C |
56 | user: |
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 C |
61 | # If enabled, the video will be transcoded to mp4 (x264) with "faststart" flag |
62 | # Uses a lot of CPU! | |
63 | transcoding: | |
64 | enabled: false | |
65 | threads: 2 | |
14d3270f C |
66 | resolutions: # Only created if the original video has a higher resolution |
67 | 240p: true | |
68 | 360p: true | |
69 | 480p: true | |
70 | 720p: true | |
71 | 1080p: true | |
66b16caf C |
72 | |
73 | instance: | |
74 | name: 'PeerTube' | |
75 | description: '' # Support markdown | |
76 | terms: '' # Support markdown |