Add option to change max body size for AS API

ref tulir/mautrix-appservice-python#3
This commit is contained in:
Tulir Asokan
2018-08-06 00:06:11 +03:00
parent a82a124b11
commit 0848938174
3 changed files with 6 additions and 2 deletions
+3
View File
@@ -17,6 +17,9 @@ appservice:
# The hostname and port where this appservice should listen.
hostname: 0.0.0.0
port: 8080
# The maximum body size of appservice API requests (from the homeserver) in mebibytes
# Usually 1 is enough, but on high-traffic bridges you might need to increase this to avoid 413s
max_body_size: 1
# The full URI to the database. SQLite and Postgres are fully supported.
# Other DBMSes supported by SQLAlchemy may or may not work.
+2 -2
View File
@@ -86,7 +86,8 @@ appserv = AppService(config["homeserver.address"], config["homeserver.domain"],
config["appservice.as_token"], config["appservice.hs_token"],
config["appservice.bot_username"], log="mau.as", loop=loop,
verify_ssl=config["homeserver.verify_ssl"], state_store=state_store,
real_user_content_key="net.maunium.telegram.puppet")
real_user_content_key="net.maunium.telegram.puppet",
aiohttp_params={"client_max_size": config["appservice.max_body_size"]})
context = Context(appserv, db_session, config, loop, session_container)
@@ -101,7 +102,6 @@ if config["appservice.provisioning.enabled"]:
provisioning_api.app)
context.provisioning_api = provisioning_api
with appserv.run(config["appservice.hostname"], config["appservice.port"]) as start:
init_db(db_session)
init_abstract_user(context)
+1
View File
@@ -153,6 +153,7 @@ class Config(DictWithRecursion):
copy("appservice.address")
copy("appservice.hostname")
copy("appservice.port")
copy("appservice.max_body_size")
copy("appservice.database")