Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
synapse
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Maunium
synapse
Commits
9e5a3536
Commit
9e5a3536
authored
9 years ago
by
Eric Myhre
Browse files
Options
Downloads
Patches
Plain Diff
Make upload dir a configurable path.
Fixes SYN-425. Signed-off-by:
Eric Myhre
<
hash@exultant.us
>
parent
d88e20cd
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
synapse/app/homeserver.py
+1
-2
1 addition, 2 deletions
synapse/app/homeserver.py
synapse/config/repository.py
+5
-0
5 additions, 0 deletions
synapse/config/repository.py
with
6 additions
and
2 deletions
synapse/app/homeserver.py
+
1
−
2
View file @
9e5a3536
...
@@ -112,7 +112,7 @@ class SynapseHomeServer(HomeServer):
...
@@ -112,7 +112,7 @@ class SynapseHomeServer(HomeServer):
def
build_resource_for_content_repo
(
self
):
def
build_resource_for_content_repo
(
self
):
return
ContentRepoResource
(
return
ContentRepoResource
(
self
,
self
.
upload_dir
,
self
.
auth
,
self
.
content_addr
self
,
self
.
config
.
uploads_path
,
self
.
auth
,
self
.
content_addr
)
)
def
build_resource_for_media_repository
(
self
):
def
build_resource_for_media_repository
(
self
):
...
@@ -375,7 +375,6 @@ def setup(config_options):
...
@@ -375,7 +375,6 @@ def setup(config_options):
hs
=
SynapseHomeServer
(
hs
=
SynapseHomeServer
(
config
.
server_name
,
config
.
server_name
,
upload_dir
=
os
.
path
.
abspath
(
"
uploads
"
),
db_config
=
config
.
database_config
,
db_config
=
config
.
database_config
,
tls_context_factory
=
tls_context_factory
,
tls_context_factory
=
tls_context_factory
,
config
=
config
,
config
=
config
,
...
...
This diff is collapsed.
Click to expand it.
synapse/config/repository.py
+
5
−
0
View file @
9e5a3536
...
@@ -21,13 +21,18 @@ class ContentRepositoryConfig(Config):
...
@@ -21,13 +21,18 @@ class ContentRepositoryConfig(Config):
self
.
max_upload_size
=
self
.
parse_size
(
config
[
"
max_upload_size
"
])
self
.
max_upload_size
=
self
.
parse_size
(
config
[
"
max_upload_size
"
])
self
.
max_image_pixels
=
self
.
parse_size
(
config
[
"
max_image_pixels
"
])
self
.
max_image_pixels
=
self
.
parse_size
(
config
[
"
max_image_pixels
"
])
self
.
media_store_path
=
self
.
ensure_directory
(
config
[
"
media_store_path
"
])
self
.
media_store_path
=
self
.
ensure_directory
(
config
[
"
media_store_path
"
])
self
.
uploads_path
=
self
.
ensure_directory
(
config
[
"
uploads_path
"
])
def
default_config
(
self
,
config_dir_path
,
server_name
):
def
default_config
(
self
,
config_dir_path
,
server_name
):
media_store
=
self
.
default_path
(
"
media_store
"
)
media_store
=
self
.
default_path
(
"
media_store
"
)
uploads_path
=
self
.
default_path
(
"
uploads
"
)
return
"""
return
"""
# Directory where uploaded images and attachments are stored.
# Directory where uploaded images and attachments are stored.
media_store_path:
"
%(media_store)s
"
media_store_path:
"
%(media_store)s
"
# Directory where in-progress uploads are stored.
uploads_path:
"
%(uploads_path)s
"
# The largest allowed upload size in bytes
# The largest allowed upload size in bytes
max_upload_size:
"
10M
"
max_upload_size:
"
10M
"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment