X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=support%2Fdocker%2Fproduction%2Fconfig%2Fproduction.yaml;h=ae6bf3982b7cb2518614a9f23e76d03ea8885e82;hb=c342726ad4ccbb90b8ff29f1cc1c89f9f7e8d98f;hp=3cc72e573a495ff597c86f2e7e6a905a769d26a4;hpb=6500a90cfeadae4959b73578612dc4a9cd917f05;p=github%2FChocobozzz%2FPeerTube.git diff --git a/support/docker/production/config/production.yaml b/support/docker/production/config/production.yaml index 3cc72e573..ae6bf3982 100644 --- a/support/docker/production/config/production.yaml +++ b/support/docker/production/config/production.yaml @@ -1,4 +1,5 @@ listen: + hostname: '0.0.0.0' port: 9000 # Correspond to your reverse proxy "listen" configuration @@ -7,9 +8,27 @@ 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) +trust_proxy: + - 'loopback' + - 'linklocal' + - 'uniquelocal' + # Your database name will be "peertube"+database.suffix database: - hostname: 'db' + hostname: 'postgres' port: 5432 suffix: '' username: 'postgres' @@ -21,60 +40,25 @@ redis: port: 6379 auth: null -# SMTP server to send emails -smtp: - hostname: null - port: 465 - username: null - password: null - tls: true - ca_file: null # Used for self signed certificates - from_address: 'admin@example.com' - # From the project root directory storage: + tmp: '../data/tmp/' avatars: '../data/avatars/' - certs: '../data/certs/' videos: '../data/videos/' + redundancy: '../data/redundancy/' logs: '../data/logs/' previews: '../data/previews/' thumbnails: '../data/thumbnails/' torrents: '../data/torrents/' + captions: '../data/captions/' cache: '../data/cache/' log: level: 'info' # debug/info/warning/error -cache: - previews: - size: 100 # Max number of previews you want to cache +tracker: + enabled: true + reject_too_many_announces: false # false because we have issues with traefik and ws ip/port forwarding admin: - email: undefined - -signup: - enabled: false - limit: -1 - -user: - # Default value of maximum video BYTES the user can upload (does not take into account transcoded files). - # -1 == unlimited - video_quota: -1 - -# If enabled, the video will be transcoded to mp4 (x264) with "faststart" flag -# Uses a lot of CPU! -transcoding: - enabled: false - threads: 2 - resolutions: # Only created if the original video has a higher resolution - 240p: true - 360p: true - 480p: true - 720p: true - 1080p: true - -# Instance settings -instance: - name: 'PeerTube' - description: '' # Support markdown - terms: '' # Support markdown + email: null