mirror of
https://github.com/element-hq/synapse.git
synced 2024-11-22 01:25:44 +03:00
Fix default of media_store_path
This commit is contained in:
parent
c7fbf7bfac
commit
d6eec624c9
2 changed files with 3 additions and 3 deletions
|
@ -1834,7 +1834,7 @@ enable_media_repo: false
|
||||||
---
|
---
|
||||||
### `media_store_path`
|
### `media_store_path`
|
||||||
|
|
||||||
*(string|null)* Directory where uploaded images and attachments are stored. Defaults to `null`.
|
*(string)* Directory where uploaded images and attachments are stored. Defaults to `"media_store"`.
|
||||||
|
|
||||||
Example configuration:
|
Example configuration:
|
||||||
```yaml
|
```yaml
|
||||||
|
|
|
@ -1399,9 +1399,9 @@
|
||||||
"examples": [false]
|
"examples": [false]
|
||||||
},
|
},
|
||||||
"media_store_path": {
|
"media_store_path": {
|
||||||
"type": ["string", "null"],
|
"type": "string",
|
||||||
"description": "Directory where uploaded images and attachments are stored.",
|
"description": "Directory where uploaded images and attachments are stored.",
|
||||||
"default": null,
|
"default": "media_store",
|
||||||
"examples": ["DATADIR/media_store"]
|
"examples": ["DATADIR/media_store"]
|
||||||
},
|
},
|
||||||
"max_pending_media_uploads": {
|
"max_pending_media_uploads": {
|
||||||
|
|
Loading…
Reference in a new issue