Update storage paths.
This commit is contained in:
parent
dfcc86d6e1
commit
c1842abc10
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: '/storage/tmp/' # Use to download data (imports etc), store uploaded files before and during processing...
|
tmp: '/app/tmp/' # Use to download data (imports etc), store uploaded files before and during processing...
|
||||||
tmp_persistent: '/storage/tmp-persistent/' # As tmp but the directory is not cleaned up between PeerTube restarts
|
tmp_persistent: '/app/tmp-persistent/' # As tmp but the directory is not cleaned up between PeerTube restarts
|
||||||
bin: '/storage/bin/'
|
bin: '/app/bin/'
|
||||||
avatars: '/storage/avatars/'
|
avatars: '/app/media/avatars/'
|
||||||
videos: '/storage/videos/'
|
videos: '/app/media/videos/'
|
||||||
streaming_playlists: '/storage/streaming-playlists/'
|
streaming_playlists: '/app/media/streaming-playlists/'
|
||||||
redundancy: '/storage/redundancy/'
|
redundancy: '/app/nfs/redundancy/'
|
||||||
logs: '/storage/logs/'
|
logs: '/app/logs/'
|
||||||
previews: '/storage/previews/'
|
previews: '/app/media/previews/'
|
||||||
thumbnails: '/storage/thumbnails/'
|
thumbnails: '/app/media/thumbnails/'
|
||||||
torrents: '/storage/torrents/'
|
torrents: '/app/torrents/'
|
||||||
captions: '/storage/captions/'
|
captions: '/app/captions/'
|
||||||
cache: '/storage/cache/'
|
cache: '/app/cache/'
|
||||||
plugins: '/storage/plugins/'
|
plugins: '/app/plugins/'
|
||||||
well_known: '/storage/well-known/'
|
well_known: '/app/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: '/storage/client-overrides/'
|
client_overrides: '/app/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