Correctly forward video related activities
[oweals/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
26 redis:
27   hostname: 'localhost'
28   port: 6379
29   auth: null
30   db: 0
31
32 smtp:
33   hostname: null
34   port: 465
35   username: null
36   password: null
37   tls: true
38   disable_starttls: false
39   ca_file: null # Used for self signed certificates
40   from_address: 'admin@example.com'
41
42 # From the project root directory
43 storage:
44   avatars: 'storage/avatars/'
45   videos: 'storage/videos/'
46   logs: 'storage/logs/'
47   previews: 'storage/previews/'
48   thumbnails: 'storage/thumbnails/'
49   torrents: 'storage/torrents/'
50   cache: 'storage/cache/'
51
52 log:
53   level: 'info' # debug/info/warning/error
54
55 cache:
56   previews:
57     size: 1 # Max number of previews you want to cache
58
59 admin:
60   email: 'admin@example.com' # Your personal email as administrator
61
62 signup:
63   enabled: false
64   limit: 10 # When the limit is reached, registrations are disabled. -1 == unlimited
65   filters:
66     cidr: # You can specify CIDR ranges to whitelist (empty = no filtering) or blacklist
67       whitelist: []
68       blacklist: []
69
70 user:
71   # Default value of maximum video BYTES the user can upload (does not take into account transcoded files).
72   # -1 == unlimited
73   video_quota: -1
74
75 # If enabled, the video will be transcoded to mp4 (x264) with "faststart" flag
76 # In addition, if some resolutions are enabled the mp4 video file will be transcoded to these new resolutions.
77 # Uses a lot of CPU and increases storage!
78 transcoding:
79   enabled: true
80   threads: 1
81   resolutions: # Only created if the original video has a higher resolution
82     240p: false
83     360p: false
84     480p: false
85     720p: false
86     1080p: false
87
88 instance:
89   name: 'PeerTube'
90   short_description: 'PeerTube, a federated (ActivityPub) video streaming platform using P2P (BitTorrent) directly in the web browser with WebTorrent and Angular.'
91   description: 'Welcome to this PeerTube instance!' # Support markdown
92   terms: 'No terms for now.' # Support markdown
93   default_client_route: '/videos/trending'
94   # By default, "do_not_list" or "blur" or "display" NSFW videos
95   # Could be overridden per user with a setting
96   default_nsfw_policy: 'do_not_list'
97   customizations:
98     javascript: '' # Directly your JavaScript code (without <script> tags). Will be eval at runtime
99     css: '' # Directly your CSS code (without <style> tags). Will be injected at runtime
100   # Robot.txt rules. To disallow robots to crawl your instance and disallow indexation of your site, add '/' to "Disallow:'
101   robots: |
102     User-agent: *
103     Disallow: ''
104
105 services:
106   # Cards configuration to format video in Twitter
107   twitter:
108     username: '@Chocobozzz' # The Twitter @username the card should be attributed to
109     # If true, a video player will be embedded in the Twitter feed on PeerTube video share
110     # If false, we use an image link card that will redirect on your PeerTube instance
111     # Change it to "true", and then test on https://cards-dev.twitter.com/validator to see if you are whitelisted
112     whitelisted: false