summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Felder <feld@feld.me>2024-02-15 09:46:08 -0500
committerMark Felder <feld@feld.me>2024-02-15 09:55:03 -0500
commit202721e80c3dbd1aa5607d86ba8f86f7c95efdf1 (patch)
treeb3cd923c613555bfa9f24cafadad4d0d2269b8af
parent0c5bec0493bc948a778ea5253e42713f1422742c (diff)
Remove Cowboy-specific HTTP options
These were only used in dev and served no specific purpose. The equivalent settings for Bandit are under a key called :http1_options and the default values are set to 10_000.
-rw-r--r--config/dev.exs3
1 files changed, 1 insertions, 2 deletions
diff --git a/config/dev.exs b/config/dev.exs
index ab3e83c12..fe8de5045 100644
--- a/config/dev.exs
+++ b/config/dev.exs
@@ -8,8 +8,7 @@ import Config
# with brunch.io to recompile .js and .css sources.
config :pleroma, Pleroma.Web.Endpoint,
http: [
- port: 4000,
- protocol_options: [max_request_line_length: 8192, max_header_value_length: 8192]
+ port: 4000
],
protocol: "http",
debug_errors: true,