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