diff options
Diffstat (limited to 'config/production.yaml.example')
-rw-r--r-- | config/production.yaml.example | 39 |
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 |
77 | client: | 77 | # Set by API when the field is not provided and put as default value in client |
78 | videos: | 78 | defaults: |
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 |
90 | storage: | 94 | storage: |
@@ -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 | ||
606 | client: | ||
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 | ||