Is it possible to set the server request timeout in a configuration file? It doesn’t look like server.json supports it.
You need this:
You can set a-la-cart settings like so:
cfconfig set requestTimeout=0,0,0,50
Or, with the latest versions of CommandBox and CFConfig, you can simply create a .cfconfig.json file in your web root with the following (of course, ALL settings are permissible here, not just request timeout!)
{
“requestTimeout”=“0,0,0,50”
}
And then the settings in that file will just be automatically imported the next time you start the server. Here’s the docs:
Also, note the format of the JSON file is the same regardless of whether you use Adobe or Lucee as well as whatever version of that engine you are using. The CFConfig library will convert the configuration as necessary based on the engine in use.
Thanks!
~Brad
ColdBox/CommandBox Developer Advocate
Ortus Solutions, Corp
E-mail: brad@coldbox.org
ColdBox Platform: http://www.coldbox.org
Blog: http://www.codersrevolution.com
Thanks Brad!