Update data/config directories.
This commit is contained in:
parent
82d088a283
commit
4d56d06963
1 changed files with 16 additions and 16 deletions
|
@ -86,21 +86,21 @@ defaults:
|
||||||
|
|
||||||
# From the project root directory
|
# From the project root directory
|
||||||
storage:
|
storage:
|
||||||
tmp: '/app/data/tmp/' # Use to download data (imports etc), store uploaded files before and during processing...
|
tmp: '/data/tmp/' # Use to download data (imports etc), store uploaded files before and during processing...
|
||||||
tmp_persistent: '/app/data/tmp-persistent/' # As tmp but the directory is not cleaned up between PeerTube restarts
|
tmp_persistent: '/data/tmp-persistent/' # As tmp but the directory is not cleaned up between PeerTube restarts
|
||||||
bin: '/app/data/bin/'
|
bin: '/data/bin/'
|
||||||
avatars: '/app/data/media/avatars/'
|
avatars: '/data/media/avatars/'
|
||||||
videos: '/app/data/media/videos/'
|
videos: '/data/media/videos/'
|
||||||
streaming_playlists: '/app/data/media/streaming-playlists/'
|
streaming_playlists: '/data/media/streaming-playlists/'
|
||||||
redundancy: '/app/data/nfs/redundancy/'
|
redundancy: '/data/nfs/redundancy/'
|
||||||
logs: '/app/data/logs/'
|
logs: '/data/logs/'
|
||||||
previews: '/app/data/media/previews/'
|
previews: '/data/media/previews/'
|
||||||
thumbnails: '/app/data/media/thumbnails/'
|
thumbnails: '/data/media/thumbnails/'
|
||||||
torrents: '/app/data/torrents/'
|
torrents: '/data/torrents/'
|
||||||
captions: '/app/data/captions/'
|
captions: '/data/captions/'
|
||||||
cache: '/app/data/cache/'
|
cache: '/data/cache/'
|
||||||
plugins: '/app/data/plugins/'
|
plugins: '/data/plugins/'
|
||||||
well_known: '/app/data/well-known/'
|
well_known: '/data/well-known/'
|
||||||
# Overridable client files in client/dist/assets/images:
|
# Overridable client files in client/dist/assets/images:
|
||||||
# - logo.svg
|
# - logo.svg
|
||||||
# - favicon.png
|
# - favicon.png
|
||||||
|
@ -111,7 +111,7 @@ storage:
|
||||||
# Could contain for example assets/images/favicon.png
|
# Could contain for example assets/images/favicon.png
|
||||||
# If the file exists, peertube will serve it
|
# If the file exists, peertube will serve it
|
||||||
# If not, peertube will fallback to the default file
|
# If not, peertube will fallback to the default file
|
||||||
client_overrides: '/app/media/client-overrides/'
|
client_overrides: '/data/media/client-overrides/'
|
||||||
|
|
||||||
static_files:
|
static_files:
|
||||||
# Require and check user authentication when accessing private files (internal/private video files)
|
# Require and check user authentication when accessing private files (internal/private video files)
|
||||||
|
|
Reference in a new issue