2018-01-29 08:52:20 +01:00
|
|
|
listen:
|
2018-05-07 15:26:28 +02:00
|
|
|
hostname: '0.0.0.0'
|
2018-01-29 08:52:20 +01:00
|
|
|
port: 9000
|
|
|
|
|
|
|
|
# Correspond to your reverse proxy "listen" configuration
|
|
|
|
webserver:
|
|
|
|
https: true
|
|
|
|
hostname: undefined
|
|
|
|
port: 443
|
|
|
|
|
2019-04-26 13:48:55 +02: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 10:58:24 +02: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'
|
|
|
|
|
2020-06-24 19:48:04 +02:00
|
|
|
# Your database name will be database.name or "peertube"+database.suffix
|
2018-01-29 08:52:20 +01:00
|
|
|
database:
|
2018-08-14 10:13:17 +02:00
|
|
|
hostname: 'postgres'
|
2018-01-29 08:52:20 +01:00
|
|
|
port: 5432
|
2020-08-24 11:38:57 +02:00
|
|
|
ssl: false
|
2018-01-29 08:52:20 +01: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:
|
2018-12-04 16:02:49 +01:00
|
|
|
tmp: '../data/tmp/'
|
2018-01-29 08:52:20 +01:00
|
|
|
avatars: '../data/avatars/'
|
|
|
|
videos: '../data/videos/'
|
2020-04-02 13:59:01 +02:00
|
|
|
streaming_playlists: '../data/streaming-playlists'
|
2018-12-04 16:02:49 +01:00
|
|
|
redundancy: '../data/redundancy/'
|
2018-01-29 08:52:20 +01:00
|
|
|
logs: '../data/logs/'
|
|
|
|
previews: '../data/previews/'
|
|
|
|
thumbnails: '../data/thumbnails/'
|
|
|
|
torrents: '../data/torrents/'
|
2018-07-12 19:02:00 +02:00
|
|
|
captions: '../data/captions/'
|
2018-01-29 08:52:20 +01:00
|
|
|
cache: '../data/cache/'
|
2019-07-05 13:54:32 +02:00
|
|
|
plugins: '../data/plugins/'
|
2020-07-10 10:20:11 +02:00
|
|
|
# Overridable client files : logo.svg, favicon.png and icons/*.png (PWA) in client/dist/assets/images
|
|
|
|
# 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 08:52:20 +01:00
|
|
|
|
|
|
|
log:
|
|
|
|
level: 'info' # debug/info/warning/error
|
|
|
|
|
2019-04-10 09:23:18 +02:00
|
|
|
tracker:
|
|
|
|
enabled: true
|
|
|
|
reject_too_many_announces: false # false because we have issues with traefik and ws ip/port forwarding
|
|
|
|
|
2018-01-29 08:52:20 +01:00
|
|
|
admin:
|
2018-03-23 11:22:26 +01:00
|
|
|
email: null
|