From 8625c22dde8cfc3dd50d4bca4e85e619208966d6 Mon Sep 17 00:00:00 2001 From: michaeljguarino Date: Tue, 2 May 2023 08:21:33 -0400 Subject: [PATCH] Increase max header length (#350) --- config/prod.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/prod.exs b/config/prod.exs index 08eecc0022..9afed02d19 100644 --- a/config/prod.exs +++ b/config/prod.exs @@ -3,7 +3,7 @@ use Mix.Config config :console, :initialize, true config :console, ConsoleWeb.Endpoint, - http: [port: 4000, compress: true], + http: [port: 4000, compress: true, protocol_options: [max_header_value_length: 8192]], # force_ssl: [hsts: true, rewrite_on: [:x_forwarded_proto]], cache_static_manifest: "priv/static/cache_manifest.json", server: true