2018-01-29 01:52:20 -06:00
|
|
|
listen:
|
2018-05-07 08:26:28 -05:00
|
|
|
hostname: '0.0.0.0'
|
2018-01-29 01:52:20 -06:00
|
|
|
port: 9000
|
|
|
|
|
2021-10-20 09:14:55 -05:00
|
|
|
# Correspond to your reverse proxy server_name/listen configuration (i.e., your public PeerTube instance URL)
|
2018-01-29 01:52:20 -06:00
|
|
|
webserver:
|
|
|
|
https: true
|
|
|
|
hostname: undefined
|
|
|
|
port: 443
|
|
|
|
|
2019-04-26 06:48:55 -05:00
|
|
|
rates_limit:
|
|
|
|
login:
|
|
|
|
# 15 attempts in 5 min
|
|
|
|
window: 5 minutes
|
|
|
|
max: 15
|
|
|
|
ask_send_email:
|
|
|
|
# 3 attempts in 5 min
|
|
|
|
window: 5 minutes
|
|
|
|
max: 3
|
|
|
|
|
2018-03-29 03:58:24 -05:00
|
|
|
# Proxies to trust to get real client IP
|
|
|
|
# If you run PeerTube just behind a local proxy (nginx), keep 'loopback'
|
|
|
|
# If you run PeerTube behind a remote proxy, add the proxy IP address (or subnet)
|
|
|
|
trust_proxy:
|
|
|
|
- 'loopback'
|
|
|
|
- 'linklocal'
|
|
|
|
- 'uniquelocal'
|
|
|
|
|
2021-10-20 09:14:55 -05:00
|
|
|
# Your database name will be database.name OR 'peertube'+database.suffix
|
2018-01-29 01:52:20 -06:00
|
|
|
database:
|
2018-08-14 03:13:17 -05:00
|
|
|
hostname: 'postgres'
|
2018-01-29 01:52:20 -06:00
|
|
|
port: 5432
|
2020-08-24 04:38:57 -05:00
|
|
|
ssl: false
|
2018-01-29 01:52:20 -06:00
|
|
|
suffix: ''
|
|
|
|
username: 'postgres'
|
|
|
|
password: 'postgres'
|
|
|
|
|
|
|
|
# Redis server for short time storage
|
|
|
|
redis:
|
|
|
|
hostname: 'redis'
|
|
|
|
port: 6379
|
|
|
|
auth: null
|
|
|
|
|
|
|
|
# From the project root directory
|
|
|
|
storage:
|
2021-06-08 04:45:03 -05:00
|
|
|
tmp: '../data/tmp/' # Use to download data (imports etc), store uploaded files before and during processing...
|
2021-10-21 09:28:39 -05:00
|
|
|
bin: '../data/bin/'
|
2018-01-29 01:52:20 -06:00
|
|
|
avatars: '../data/avatars/'
|
|
|
|
videos: '../data/videos/'
|
2020-04-02 06:59:01 -05:00
|
|
|
streaming_playlists: '../data/streaming-playlists'
|
2018-12-04 09:02:49 -06:00
|
|
|
redundancy: '../data/redundancy/'
|
2018-01-29 01:52:20 -06:00
|
|
|
logs: '../data/logs/'
|
|
|
|
previews: '../data/previews/'
|
|
|
|
thumbnails: '../data/thumbnails/'
|
|
|
|
torrents: '../data/torrents/'
|
2018-07-12 12:02:00 -05:00
|
|
|
captions: '../data/captions/'
|
2018-01-29 01:52:20 -06:00
|
|
|
cache: '../data/cache/'
|
2019-07-05 06:54:32 -05:00
|
|
|
plugins: '../data/plugins/'
|
2021-10-12 06:50:40 -05:00
|
|
|
# Overridable client files in client/dist/assets/images :
|
|
|
|
# - logo.svg
|
|
|
|
# - favicon.png
|
|
|
|
# - default-playlist.jpg
|
|
|
|
# - default-avatar-account.png
|
|
|
|
# - default-avatar-video-channel.png
|
|
|
|
# - and icons/*.png (PWA)
|
2020-07-10 03:20:11 -05:00
|
|
|
# Could contain for example assets/images/favicon.png
|
|
|
|
# If the file exists, peertube will serve it
|
|
|
|
# If not, peertube will fallback to the default fil
|
|
|
|
client_overrides: '../data/client-overrides/'
|
2018-01-29 01:52:20 -06:00
|
|
|
|
|
|
|
log:
|
2021-05-25 03:08:29 -05:00
|
|
|
level: 'info' # 'debug' | 'info' | 'warn' | 'error'
|
2018-01-29 01:52:20 -06:00
|
|
|
|
2019-04-10 02:23:18 -05:00
|
|
|
tracker:
|
|
|
|
enabled: true
|
2021-02-12 03:18:24 -06:00
|
|
|
reject_too_many_announces: false # false because we have issues with docker ws ip/port forwarding
|
2019-04-10 02:23:18 -05:00
|
|
|
|
2018-01-29 01:52:20 -06:00
|
|
|
admin:
|
2018-03-23 05:22:26 -05:00
|
|
|
email: null
|