]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - support/docker/production/config/production.yaml
Bumped to version v5.2.1
[github/Chocobozzz/PeerTube.git] / support / docker / production / config / production.yaml
CommitLineData
e8395f02 1listen:
af111faf 2 hostname: '0.0.0.0'
e8395f02 3 port: 9000
4
97b6428a 5# Correspond to your reverse proxy server_name/listen configuration (i.e., your public PeerTube instance URL)
e8395f02 6webserver:
7 https: true
8 hostname: undefined
9 port: 443
10
c342726a
YB
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
490b595a
C
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
97b6428a 29# Your database name will be database.name OR 'peertube'+database.suffix
e8395f02 30database:
08c11bec 31 hostname: 'postgres'
e8395f02 32 port: 5432
b0ce7c39 33 ssl: false
e8395f02 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:
37ede348 46 tmp: '../data/tmp/' # Use to download data (imports etc), store uploaded files before and during processing...
6a490560 47 tmp_persistent: '../data/tmp-persistent/' # As tmp but the directory is not cleaned up between PeerTube restarts
62549e6c 48 bin: '../data/bin/'
e8395f02 49 avatars: '../data/avatars/'
e8395f02 50 videos: '../data/videos/'
4fd98756 51 streaming_playlists: '../data/streaming-playlists'
6040f87d 52 redundancy: '../data/redundancy/'
e8395f02 53 logs: '../data/logs/'
54 previews: '../data/previews/'
55 thumbnails: '../data/thumbnails/'
56 torrents: '../data/torrents/'
40e87e9e 57 captions: '../data/captions/'
e8395f02 58 cache: '../data/cache/'
345da516 59 plugins: '../data/plugins/'
6c5f0d3a 60 well_known: '../data/well-known/'
c80e458a 61 # Overridable client files in client/dist/assets/images :
62 # - logo.svg
63 # - favicon.png
64 # - default-playlist.jpg
65 # - default-avatar-account.png
66 # - default-avatar-video-channel.png
67 # - and icons/*.png (PWA)
caf2aaf4
K
68 # Could contain for example assets/images/favicon.png
69 # If the file exists, peertube will serve it
70 # If not, peertube will fallback to the default fil
71 client_overrides: '../data/client-overrides/'
e8395f02 72
73log:
31a91119 74 level: 'info' # 'debug' | 'info' | 'warn' | 'error'
e8395f02 75
31b6ddf8
C
76tracker:
77 enabled: true
18ffaf24 78 reject_too_many_announces: false # false because we have issues with docker ws ip/port forwarding
31b6ddf8 79
e8395f02 80admin:
95540ed2 81 email: null