]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - support/docker/production/config/production.yaml
Fix admin edition disabling feature
[github/Chocobozzz/PeerTube.git] / support / docker / production / config / production.yaml
index 846c838e85c6d964147e45065cfaf6f52d036aba..3bff8a0b00d7c5b6f8296fce32562a1aaf4f3d64 100644 (file)
@@ -8,6 +8,16 @@ webserver:
   hostname: undefined
   port: 443
 
+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
+
 # 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)
@@ -16,10 +26,11 @@ trust_proxy:
   - 'linklocal'
   - 'uniquelocal'
 
-# Your database name will be "peertube"+database.suffix
+# Your database name will be database.name or "peertube"+database.suffix
 database:
   hostname: 'postgres'
   port: 5432
+  ssl: false
   suffix: ''
   username: 'postgres'
   password: 'postgres'
@@ -32,9 +43,10 @@ redis:
 
 # From the project root directory
 storage:
-  tmp: '../data/tmp/'
+  tmp: '../data/tmp/' # Use to download data (imports etc), store uploaded files before and during processing...
   avatars: '../data/avatars/'
   videos: '../data/videos/'
+  streaming_playlists: '../data/streaming-playlists'
   redundancy: '../data/redundancy/'
   logs: '../data/logs/'
   previews: '../data/previews/'
@@ -42,9 +54,25 @@ storage:
   torrents: '../data/torrents/'
   captions: '../data/captions/'
   cache: '../data/cache/'
+  plugins: '../data/plugins/'
+  # 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)
+  # 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/'
 
 log:
-  level: 'info' # debug/info/warning/error
+  level: 'info' # 'debug' | 'info' | 'warn' | 'error'
+
+tracker:
+  enabled: true
+  reject_too_many_announces: false # false because we have issues with docker ws ip/port forwarding
 
 admin:
   email: null