aboutsummaryrefslogtreecommitdiffhomepage
path: root/config/production.yaml.example
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2021-12-14 17:17:01 +0100
committerChocobozzz <me@florianbigard.com>2021-12-14 17:17:01 +0100
commit3cf68b869decf07ff7435fe1436d4f3134df1bf4 (patch)
tree836efe5ddc626fef3ba4c96269efbca305f46256 /config/production.yaml.example
parenta6f919e455f2c6ae8f2194da4aa66824a6bfd09e (diff)
downloadPeerTube-3cf68b869decf07ff7435fe1436d4f3134df1bf4.tar.gz
PeerTube-3cf68b869decf07ff7435fe1436d4f3134df1bf4.tar.zst
PeerTube-3cf68b869decf07ff7435fe1436d4f3134df1bf4.zip
Ability for admins to set default upload values
Diffstat (limited to 'config/production.yaml.example')
-rw-r--r--config/production.yaml.example39
1 files changed, 28 insertions, 11 deletions
diff --git a/config/production.yaml.example b/config/production.yaml.example
index e38b79587..6363a5179 100644
--- a/config/production.yaml.example
+++ b/config/production.yaml.example
@@ -73,18 +73,22 @@ email:
73 subject: 73 subject:
74 prefix: '[PeerTube]' 74 prefix: '[PeerTube]'
75 75
76# PeerTube client/interface configuration 76# Update default PeerTube values
77client: 77# Set by API when the field is not provided and put as default value in client
78 videos: 78defaults:
79 miniature: 79 # Change default values when publishing a video (upload/import/go Live)
80 # By default PeerTube client displays author username 80 publish:
81 prefer_author_display_name: false 81 download_enabled: true
82 82
83 menu: 83 comments_enabled: true
84 login: 84
85 # If you enable only one external auth plugin 85 # public = 1, unlisted = 2, private = 3, internal = 4
86 # You can automatically redirect your users on this external platform when they click on the login button 86 privacy: 1
87 redirect_on_single_external_auth: false 87
88 # CC-BY = 1, CC-SA = 2, CC-ND = 3, CC-NC = 4, CC-NC-SA = 5, CC-NC-ND = 6, Public Domain = 7
89 # You can also choose a custom licence value added by a plugin
90 # No licence by default
91 licence: null
88 92
89# From the project root directory 93# From the project root directory
90storage: 94storage:
@@ -597,3 +601,16 @@ search:
597 disable_local_search: false 601 disable_local_search: false
598 # If you did not disable local search, you can decide to use the search index by default 602 # If you did not disable local search, you can decide to use the search index by default
599 is_default_search: false 603 is_default_search: false
604
605# PeerTube client/interface configuration
606client:
607 videos:
608 miniature:
609 # By default PeerTube client displays author username
610 prefer_author_display_name: false
611
612 menu:
613 login:
614 # If you enable only one external auth plugin
615 # You can automatically redirect your users on this external platform when they click on the login button
616 redirect_on_single_external_auth: false