]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - config/production.yaml.example
Change transcoding default conf options
[github/Chocobozzz/PeerTube.git] / config / production.yaml.example
index 04354b75d5c072d9c79f0533f18691c54ab3b499..b43d778e1bb6d14b2ff4a0625e8013207df1093c 100644 (file)
@@ -40,7 +40,7 @@ storage:
   cache: '/var/www/peertube/storage/cache/'
 
 log:
-  level: 'debug' # debug/info/warning/error
+  level: 'info' # debug/info/warning/error
 
 cache:
   previews:
@@ -61,11 +61,19 @@ user:
 # If enabled, the video will be transcoded to mp4 (x264) with "faststart" flag
 # Uses a lot of CPU!
 transcoding:
-  enabled: false
+  enabled: true
   threads: 2
   resolutions: # Only created if the original video has a higher resolution
-    240p: true
-    360p: true
-    480p: true
-    720p: true
-    1080p: true
+    240p: false
+    360p: false
+    480p: false
+    720p: false
+    1080p: false
+
+instance:
+  name: 'PeerTube'
+  description: '' # Support markdown
+  terms: '' # Support markdown
+  customizations:
+    javascript: '' # Directly your JavaScript code (without <script> tags). Will be eval at runtime
+    css: '' # Directly your CSS code (without <style> tags). Will be injected at runtime