Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

jackmu95's avatar

Envoyer Deployment Hook Timed Out

I created a Deployment Hook in Envoyer to compile assets with Laravel Elixir. This task can take a while because it needs to compile a lot of different asset bundles. The Problem is that the tasks "Timed Out" after 480 seconds (http://imgur.com/a/x5VkZ).

Ist there any way to increase the timeout for a single task or even all tasks?

0 likes
1 reply
ediblemanager's avatar

Not too sure how Elixir works in the backend, but script execution time is a tweakable config option for node.js:

server.timeout

Number Default = 120000 (2 minutes) The number of milliseconds of inactivity before a socket is presumed to have timed out.

Note that the socket timeout logic is set up on connection, so changing this value only affects new connections to the server, not any existing connections.

Set to 0 to disable any kind of automatic timeout behavior on incoming connections.

See here for the SO question I stole this from.

Please or to participate in this conversation.