docs(docker): don't use underscores for max request size

This commit is contained in:
Matthias Ahouansou 2024-04-28 11:48:42 +01:00
parent cd4e4fe7ac
commit a23bfdb3f0
No known key found for this signature in database
4 changed files with 4 additions and 4 deletions

View file

@ -38,7 +38,7 @@ services:
# CONDUIT_ALLOW_FEDERATION: 'true'
# CONDUIT_ALLOW_CHECK_FOR_UPDATES: 'true'
# CONDUIT_DATABASE_PATH: /srv/conduit/.local/share/conduit
# CONDUIT_MAX_REQUEST_SIZE: 20_000_000 # in bytes, ~20 MB
# CONDUIT_MAX_REQUEST_SIZE: 20000000 # in bytes, ~20 MB
# We need some way to server the client and server .well-known json. The simplest way is to use a nginx container
# to serve those two as static files. If you want to use a different way, delete or comment the below service, here