Instead of using the raw-int 600, what about using @('php.fpm.ini.max_execution_time') for the other properties as well in src/spryker/docker/image/nginx/root/etc/nginx/conf.d/zed.conf.template.twig?
Simillar as we currently do for the fastcgi_read_timeout:
proxy_read_timeout 600s;
proxy_send_timeout 600s;
fastcgi_read_timeout {{ @('php.fpm.ini.max_execution_time') + 1 }}s;
client_body_timeout 600s;
client_header_timeout 600s;
send_timeout 600s;
Original idea: #685 (comment)