diff options
Diffstat (limited to 'config/default.yaml')
-rw-r--r-- | config/default.yaml | 39 |
1 files changed, 28 insertions, 11 deletions
diff --git a/config/default.yaml b/config/default.yaml index 074951117..fbe0dbbfb 100644 --- a/config/default.yaml +++ b/config/default.yaml | |||
@@ -75,18 +75,22 @@ email: | |||
75 | subject: | 75 | subject: |
76 | prefix: '[PeerTube]' | 76 | prefix: '[PeerTube]' |
77 | 77 | ||
78 | # PeerTube client/interface configuration | 78 | # Update default PeerTube values |
79 | client: | 79 | # Set by API when the field is not provided and put as default value in client |
80 | videos: | 80 | defaults: |
81 | miniature: | 81 | # Change default values when publishing a video (upload/import/go Live) |
82 | # By default PeerTube client displays author username | 82 | publish: |
83 | prefer_author_display_name: false | 83 | download_enabled: true |
84 | 84 | ||
85 | menu: | 85 | comments_enabled: true |
86 | login: | 86 | |
87 | # If you enable only one external auth plugin | 87 | # public = 1, unlisted = 2, private = 3, internal = 4 |
88 | # You can automatically redirect your users on this external platform when they click on the login button | 88 | privacy: 1 |
89 | redirect_on_single_external_auth: false | 89 | |
90 | # CC-BY = 1, CC-SA = 2, CC-ND = 3, CC-NC = 4, CC-NC-SA = 5, CC-NC-ND = 6, Public Domain = 7 | ||
91 | # You can also choose a custom licence value added by a plugin | ||
92 | # No licence by default | ||
93 | licence: null | ||
90 | 94 | ||
91 | # From the project root directory | 95 | # From the project root directory |
92 | storage: | 96 | storage: |
@@ -587,3 +591,16 @@ search: | |||
587 | disable_local_search: false | 591 | disable_local_search: false |
588 | # If you did not disable local search, you can decide to use the search index by default | 592 | # If you did not disable local search, you can decide to use the search index by default |
589 | is_default_search: false | 593 | is_default_search: false |
594 | |||
595 | # PeerTube client/interface configuration | ||
596 | client: | ||
597 | videos: | ||
598 | miniature: | ||
599 | # By default PeerTube client displays author username | ||
600 | prefer_author_display_name: false | ||
601 | |||
602 | menu: | ||
603 | login: | ||
604 | # If you enable only one external auth plugin | ||
605 | # You can automatically redirect your users on this external platform when they click on the login button | ||
606 | redirect_on_single_external_auth: false | ||