File size: 360 Bytes
936b397 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | import Config
config :plausible, PlausibleWeb.Endpoint,
cache_static_manifest: "priv/static/cache_manifest.json",
check_origin: false,
server: true,
code_reloader: false,
http: [
transport_options: [
num_acceptors: 1000
]
],
protocol_options: [
max_keepalive: 5_000,
idle_timeout: 120_000,
request_timeout: 120_000
]
|