diff options
Diffstat (limited to 'config')
-rw-r--r-- | config/default.yaml | 13 | ||||
-rw-r--r-- | config/production.yaml.example | 13 |
2 files changed, 24 insertions, 2 deletions
diff --git a/config/default.yaml b/config/default.yaml index 3865ab5cf..707187b7c 100644 --- a/config/default.yaml +++ b/config/default.yaml | |||
@@ -89,7 +89,13 @@ storage: | |||
89 | captions: 'storage/captions/' | 89 | captions: 'storage/captions/' |
90 | cache: 'storage/cache/' | 90 | cache: 'storage/cache/' |
91 | plugins: 'storage/plugins/' | 91 | plugins: 'storage/plugins/' |
92 | # Overridable client files : logo.svg, favicon.png and icons/*.png (PWA) in client/dist/assets/images | 92 | # Overridable client files in client/dist/assets/images : |
93 | # - logo.svg | ||
94 | # - favicon.png | ||
95 | # - default-playlist.jpg | ||
96 | # - default-avatar-account.png | ||
97 | # - default-avatar-video-channel.png | ||
98 | # - and icons/*.png (PWA) | ||
93 | # Could contain for example assets/images/favicon.png | 99 | # Could contain for example assets/images/favicon.png |
94 | # If the file exists, peertube will serve it | 100 | # If the file exists, peertube will serve it |
95 | # If not, peertube will fallback to the default fil | 101 | # If not, peertube will fallback to the default fil |
@@ -243,6 +249,11 @@ peertube: | |||
243 | # You can use a custom URL if your want, that respect the format behind https://joinpeertube.org/api/v1/versions.json | 249 | # You can use a custom URL if your want, that respect the format behind https://joinpeertube.org/api/v1/versions.json |
244 | url: 'https://joinpeertube.org/api/v1/versions.json' | 250 | url: 'https://joinpeertube.org/api/v1/versions.json' |
245 | 251 | ||
252 | webadmin: | ||
253 | configuration: | ||
254 | edit: | ||
255 | allowed: true | ||
256 | |||
246 | cache: | 257 | cache: |
247 | previews: | 258 | previews: |
248 | size: 500 # Max number of previews you want to cache | 259 | size: 500 # Max number of previews you want to cache |
diff --git a/config/production.yaml.example b/config/production.yaml.example index 94238fad0..e405daa71 100644 --- a/config/production.yaml.example +++ b/config/production.yaml.example | |||
@@ -87,7 +87,13 @@ storage: | |||
87 | captions: '/var/www/peertube/storage/captions/' | 87 | captions: '/var/www/peertube/storage/captions/' |
88 | cache: '/var/www/peertube/storage/cache/' | 88 | cache: '/var/www/peertube/storage/cache/' |
89 | plugins: '/var/www/peertube/storage/plugins/' | 89 | plugins: '/var/www/peertube/storage/plugins/' |
90 | # Overridable client files : logo.svg, favicon.png and icons/*.png (PWA) in client/dist/assets/images | 90 | # Overridable client files in client/dist/assets/images : |
91 | # - logo.svg | ||
92 | # - favicon.png | ||
93 | # - default-playlist.jpg | ||
94 | # - default-avatar-account.png | ||
95 | # - default-avatar-video-channel.png | ||
96 | # - and icons/*.png (PWA) | ||
91 | # Could contain for example assets/images/favicon.png | 97 | # Could contain for example assets/images/favicon.png |
92 | # If the file exists, peertube will serve it | 98 | # If the file exists, peertube will serve it |
93 | # If not, peertube will fallback to the default file | 99 | # If not, peertube will fallback to the default file |
@@ -241,6 +247,11 @@ peertube: | |||
241 | # You can use a custom URL if your want, that respect the format behind https://joinpeertube.org/api/v1/versions.json | 247 | # You can use a custom URL if your want, that respect the format behind https://joinpeertube.org/api/v1/versions.json |
242 | url: 'https://joinpeertube.org/api/v1/versions.json' | 248 | url: 'https://joinpeertube.org/api/v1/versions.json' |
243 | 249 | ||
250 | webadmin: | ||
251 | configuration: | ||
252 | # Set to false if you want the config to be readonly | ||
253 | allow_edits: true | ||
254 | |||
244 | ############################################################################### | 255 | ############################################################################### |
245 | # | 256 | # |
246 | # From this point, all the following keys can be overridden by the web interface | 257 | # From this point, all the following keys can be overridden by the web interface |