Fix data paths.
This commit is contained in:
parent
c1842abc10
commit
82d088a283
1 changed files with 15 additions and 15 deletions
|
@ -86,21 +86,21 @@ defaults:
|
||||||
|
|
||||||
# From the project root directory
|
# From the project root directory
|
||||||
storage:
|
storage:
|
||||||
tmp: '/app/tmp/' # Use to download data (imports etc), store uploaded files before and during processing...
|
tmp: '/app/data/tmp/' # Use to download data (imports etc), store uploaded files before and during processing...
|
||||||
tmp_persistent: '/app/tmp-persistent/' # As tmp but the directory is not cleaned up between PeerTube restarts
|
tmp_persistent: '/app/data/tmp-persistent/' # As tmp but the directory is not cleaned up between PeerTube restarts
|
||||||
bin: '/app/bin/'
|
bin: '/app/data/bin/'
|
||||||
avatars: '/app/media/avatars/'
|
avatars: '/app/data/media/avatars/'
|
||||||
videos: '/app/media/videos/'
|
videos: '/app/data/media/videos/'
|
||||||
streaming_playlists: '/app/media/streaming-playlists/'
|
streaming_playlists: '/app/data/media/streaming-playlists/'
|
||||||
redundancy: '/app/nfs/redundancy/'
|
redundancy: '/app/data/nfs/redundancy/'
|
||||||
logs: '/app/logs/'
|
logs: '/app/data/logs/'
|
||||||
previews: '/app/media/previews/'
|
previews: '/app/data/media/previews/'
|
||||||
thumbnails: '/app/media/thumbnails/'
|
thumbnails: '/app/data/media/thumbnails/'
|
||||||
torrents: '/app/torrents/'
|
torrents: '/app/data/torrents/'
|
||||||
captions: '/app/captions/'
|
captions: '/app/data/captions/'
|
||||||
cache: '/app/cache/'
|
cache: '/app/data/cache/'
|
||||||
plugins: '/app/plugins/'
|
plugins: '/app/data/plugins/'
|
||||||
well_known: '/app/well-known/'
|
well_known: '/app/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
|
||||||
|
|
Reference in a new issue