X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=config%2Fproduction.yaml.example;h=c18457df608213122dcb9dc4af66b269a97b44c8;hb=42374cf5d40b8266cf7b0ee68732c436c1d45a06;hp=8bc63ee92461967b65a65e29c15a4c7bdd382ce8;hpb=a6375e69668ea42e19531c6bc68dcd37f3f7cbd7;p=github%2FChocobozzz%2FPeerTube.git diff --git a/config/production.yaml.example b/config/production.yaml.example index 8bc63ee92..c18457df6 100644 --- a/config/production.yaml.example +++ b/config/production.yaml.example @@ -1,8 +1,37 @@ +listen: + port: 9000 + # Correspond to your reverse proxy "listen" configuration webserver: https: false - host: 'example.com' + hostname: 'example.com' port: 80 +# Your database name will be "peertube"+database.suffix database: - suffix: '-prod' + hostname: 'localhost' + port: 5432 + suffix: '_prod' + username: 'peertube' + password: 'peertube' + +# From the project root directory +storage: + certs: 'certs/' + videos: 'videos/' + logs: 'logs/' + previews: 'previews/' + thumbnails: 'thumbnails/' + torrents: 'torrents/' + +admin: + email: 'admin@example.com' + +signup: + enabled: false + +# If enabled, the video will be transcoded to mp4 (x264) with "faststart" flag +# Uses a lot of CPU! +transcoding: + enabled: false + threads: 2