]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - support/docker/production/config/production.yaml
Live supports object storage
[github/Chocobozzz/PeerTube.git] / support / docker / production / config / production.yaml
... / ...
CommitLineData
1listen:
2 hostname: '0.0.0.0'
3 port: 9000
4
5# Correspond to your reverse proxy server_name/listen configuration (i.e., your public PeerTube instance URL)
6webserver:
7 https: true
8 hostname: undefined
9 port: 443
10
11rates_limit:
12 login:
13 # 15 attempts in 5 min
14 window: 5 minutes
15 max: 15
16 ask_send_email:
17 # 3 attempts in 5 min
18 window: 5 minutes
19 max: 3
20
21# Proxies to trust to get real client IP
22# If you run PeerTube just behind a local proxy (nginx), keep 'loopback'
23# If you run PeerTube behind a remote proxy, add the proxy IP address (or subnet)
24trust_proxy:
25 - 'loopback'
26 - 'linklocal'
27 - 'uniquelocal'
28
29# Your database name will be database.name OR 'peertube'+database.suffix
30database:
31 hostname: 'postgres'
32 port: 5432
33 ssl: false
34 suffix: ''
35 username: 'postgres'
36 password: 'postgres'
37
38# Redis server for short time storage
39redis:
40 hostname: 'redis'
41 port: 6379
42 auth: null
43
44# From the project root directory
45storage:
46 tmp: '../data/tmp/' # Use to download data (imports etc), store uploaded files before and during processing...
47 bin: '../data/bin/'
48 avatars: '../data/avatars/'
49 videos: '../data/videos/'
50 streaming_playlists: '../data/streaming-playlists'
51 redundancy: '../data/redundancy/'
52 logs: '../data/logs/'
53 previews: '../data/previews/'
54 thumbnails: '../data/thumbnails/'
55 torrents: '../data/torrents/'
56 captions: '../data/captions/'
57 cache: '../data/cache/'
58 plugins: '../data/plugins/'
59 # Overridable client files in client/dist/assets/images :
60 # - logo.svg
61 # - favicon.png
62 # - default-playlist.jpg
63 # - default-avatar-account.png
64 # - default-avatar-video-channel.png
65 # - and icons/*.png (PWA)
66 # Could contain for example assets/images/favicon.png
67 # If the file exists, peertube will serve it
68 # If not, peertube will fallback to the default fil
69 client_overrides: '../data/client-overrides/'
70
71log:
72 level: 'info' # 'debug' | 'info' | 'warn' | 'error'
73
74tracker:
75 enabled: true
76 reject_too_many_announces: false # false because we have issues with docker ws ip/port forwarding
77
78admin:
79 email: null