Hello
I got a stupid question I cannot find a way to increase the default timeout of 60_000 microseconds.
A client of mine is currently uploading zips to my app and the size is currently too big for this default timeout.
After lokking at Bandit docs I put it like this:
config :bazzile, BazzileWeb.Endpoint,
secret_key_base: secret_key_base,
url: [host: host, scheme: "https", port: 443],
check_origin: false,
http: [
ip: {0, 0, 0, 0, 0, 0, 0, 0},
port: port,
options: [
read_timeout: 300_000
]
]
But it is not working. Any clue on this ?
Thanks a lot