Add ability to change the homepage
[oweals/peertube.git] / config / production.yaml.example
1 listen:
2   port: 9000
3
4 # Correspond to your reverse proxy "listen" configuration
5 webserver:
6   https: true
7   hostname: 'example.com'
8   port: 443
9
10 # Your database name will be "peertube"+database.suffix
11 database:
12   hostname: 'localhost'
13   port: 5432
14   suffix: '_prod'
15   username: 'peertube'
16   password: 'peertube'
17
18 redis:
19   hostname: 'localhost'
20   port: 6379
21   auth: null
22
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
32 # From the project root directory
33 storage:
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/'
41
42 log:
43   level: 'info' # debug/info/warning/error
44
45
46 ###############################################################################
47 #
48 # From this point, all the following keys can be overriden by the web interface
49 # (local-production.json file). If you need to change some values, prefer to
50 # use the web interface because the configuration will be automatically
51 # reloaded without any need to restart PeerTube.
52 #
53 # /!\ If you already have a local-production.json file, the modification of the
54 # following keys will have no effect /!\.
55 #
56 ###############################################################################
57
58 cache:
59   previews:
60     size: 100 # Max number of previews you want to cache
61
62 admin:
63   email: 'admin@example.com'
64
65 signup:
66   enabled: false
67   limit: 10 # When the limit is reached, registrations are disabled. -1 == unlimited
68
69 user:
70   # Default value of maximum video BYTES the user can upload (does not take into account transcoded files).
71   # -1 == unlimited
72   video_quota: -1
73
74 # If enabled, the video will be transcoded to mp4 (x264) with "faststart" flag
75 # Uses a lot of CPU!
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   description: '' # Support markdown
89   terms: '' # Support markdown
90   default_client_route: '/videos/trending'
91   customizations:
92     javascript: '' # Directly your JavaScript code (without <script> tags). Will be eval at runtime
93     css: '' # Directly your CSS code (without <style> tags). Will be injected at runtime