Skip to content
Snippets Groups Projects
Unverified Commit c07fca9e authored by Tristan Lins's avatar Tristan Lins Committed by GitHub
Browse files

Clarify the comments for media_storage_providers options (#7272)

parent 01294e6b
No related branches found
No related tags found
No related merge requests found
Documentation of media_storage_providers options updated to avoid misunderstandings. Contributed by Tristan Lins.
\ No newline at end of file
...@@ -735,12 +735,11 @@ media_store_path: "DATADIR/media_store" ...@@ -735,12 +735,11 @@ media_store_path: "DATADIR/media_store"
# #
#media_storage_providers: #media_storage_providers:
# - module: file_system # - module: file_system
# # Whether to write new local files. # # Whether to store newly uploaded local files
# store_local: false # store_local: false
# # Whether to write new remote media # # Whether to store newly downloaded remote files
# store_remote: false # store_remote: false
# # Whether to block upload requests waiting for write to this # # Whether to wait for successful storage for local uploads
# # provider to complete
# store_synchronous: false # store_synchronous: false
# config: # config:
# directory: /mnt/some/other/directory # directory: /mnt/some/other/directory
......
...@@ -224,12 +224,11 @@ class ContentRepositoryConfig(Config): ...@@ -224,12 +224,11 @@ class ContentRepositoryConfig(Config):
# #
#media_storage_providers: #media_storage_providers:
# - module: file_system # - module: file_system
# # Whether to write new local files. # # Whether to store newly uploaded local files
# store_local: false # store_local: false
# # Whether to write new remote media # # Whether to store newly downloaded remote files
# store_remote: false # store_remote: false
# # Whether to block upload requests waiting for write to this # # Whether to wait for successful storage for local uploads
# # provider to complete
# store_synchronous: false # store_synchronous: false
# config: # config:
# directory: /mnt/some/other/directory # directory: /mnt/some/other/directory
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment