]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - config/production.yaml.example
feature: IP filtering on signup page
[github/Chocobozzz/PeerTube.git] / config / production.yaml.example
CommitLineData
552cc9d6 1listen:
cff8b272 2 hostname: 'localhost'
552cc9d6
C
3 port: 9000
4
21511bba 5# Correspond to your reverse proxy "listen" configuration
f1f4732f 6webserver:
d478d83d 7 https: true
3737bbaf 8 hostname: 'example.com'
d478d83d 9 port: 443
825a5d9c 10
490b595a
C
11# Proxies to trust to get real client IP
12# If you run PeerTube just behind a local proxy (nginx), keep 'loopback'
13# If you run PeerTube behind a remote proxy, add the proxy IP address (or subnet)
14trust_proxy:
15 - 'loopback'
16
98dffd10 17# Your database name will be "peertube"+database.suffix
825a5d9c 18database:
552cc9d6
C
19 hostname: 'localhost'
20 port: 5432
feb4bdfd 21 suffix: '_prod'
6c05c149
C
22 username: 'peertube'
23 password: 'peertube'
552cc9d6 24
95540ed2 25# Redis server for short time storage
94a5ff8a
C
26redis:
27 hostname: 'localhost'
28 port: 6379
29 auth: null
30c82f0d 30 db: 0
94a5ff8a 31
95540ed2 32# SMTP server to send emails
ecb4e35f
C
33smtp:
34 hostname: null
35 port: 465
36 username: null
37 password: null
38 tls: true
bebf2d89 39 disable_starttls: false
ecb4e35f
C
40 ca_file: null # Used for self signed certificates
41 from_address: 'admin@example.com'
42
552cc9d6
C
43# From the project root directory
44storage:
59c48d49
C
45 avatars: '/var/www/peertube/storage/avatars/'
46 videos: '/var/www/peertube/storage/videos/'
47 logs: '/var/www/peertube/storage/logs/'
48 previews: '/var/www/peertube/storage/previews/'
49 thumbnails: '/var/www/peertube/storage/thumbnails/'
50 torrents: '/var/www/peertube/storage/torrents/'
51 cache: '/var/www/peertube/storage/cache/'
4793c343 52
23e27dd5 53log:
a0922eb9 54 level: 'info' # debug/info/warning/error
23e27dd5 55
509cd56a
C
56
57###############################################################################
58#
f209b32a 59# From this point, all the following keys can be overridden by the web interface
509cd56a
C
60# (local-production.json file). If you need to change some values, prefer to
61# use the web interface because the configuration will be automatically
62# reloaded without any need to restart PeerTube.
63#
64# /!\ If you already have a local-production.json file, the modification of the
65# following keys will have no effect /!\.
66#
67###############################################################################
68
62ccb24e
C
69cache:
70 previews:
d478d83d 71 size: 100 # Max number of previews you want to cache
62ccb24e 72
4793c343
C
73admin:
74 email: 'admin@example.com'
e22528ac
C
75
76signup:
77 enabled: false
62ccb24e 78 limit: 10 # When the limit is reached, registrations are disabled. -1 == unlimited
ff2c1fe8
RK
79 filters:
80 cidr: # You can specify CIDR ranges to whitelist (empty = no filtering) or blacklist
81 whitelist: []
82 blacklist: []
227d02fe 83
b0f9f39e
C
84user:
85 # Default value of maximum video BYTES the user can upload (does not take into account transcoded files).
86 # -1 == unlimited
87 video_quota: -1
88
227d02fe
C
89# If enabled, the video will be transcoded to mp4 (x264) with "faststart" flag
90# Uses a lot of CPU!
91transcoding:
1125c40a 92 enabled: true
98f535a5 93 threads: 1
14d3270f 94 resolutions: # Only created if the original video has a higher resolution
1125c40a
C
95 240p: false
96 360p: false
97 480p: false
98 720p: false
99 1080p: false
66b16caf 100
95540ed2 101# Instance settings
66b16caf
C
102instance:
103 name: 'PeerTube'
2e3a0215 104 short_description: 'PeerTube, a federated (ActivityPub) video streaming platform using P2P (BitTorrent) directly in the web browser with WebTorrent and Angular.'
66b16caf
C
105 description: '' # Support markdown
106 terms: '' # Support markdown
901637bb 107 default_client_route: '/videos/trending'
0883b324
C
108 # By default, "do_not_list" or "blur" or "display" NSFW videos
109 # Could be overridden per user with a setting
110 default_nsfw_policy: 'do_not_list'
00b5556c
C
111 customizations:
112 javascript: '' # Directly your JavaScript code (without <script> tags). Will be eval at runtime
113 css: '' # Directly your CSS code (without <style> tags). Will be injected at runtime
78881bc4 114 # Robot.txt rules. To disallow robots to crawl your instance and disallow indexation of your site, add '/' to "Disallow:'
ac235c37
RK
115 robots: |
116 User-agent: *
78881bc4 117 Disallow: ''
8be1afa1
C
118
119services:
120 # Cards configuration to format video in Twitter
121 twitter:
122 username: '@Chocobozzz' # The Twitter @username the card should be attributed to
123 # If true, a video player will be embedded in the Twitter feed on PeerTube video share
124 # If false, we use an image link card that will redirect on your PeerTube instance
125 # Test on https://cards-dev.twitter.com/validator to see if you are whitelisted
126 whitelisted: false