Skip to content
Snippets Groups Projects
Commit 6a35dce3 authored by Mykola Palamar's avatar Mykola Palamar
Browse files

Merge remote-tracking branch 'east/MAGETWO-54692' into EAST-CADENCE-1-CE

parents 4bc7917e 7bd67c3c
No related merge requests found
...@@ -6,6 +6,7 @@ import std; ...@@ -6,6 +6,7 @@ import std;
backend default { backend default {
.host = "/* {{ host }} */"; .host = "/* {{ host }} */";
.port = "/* {{ port }} */"; .port = "/* {{ port }} */";
.first_byte_timeout = 600s;
} }
acl purge { acl purge {
......
...@@ -7,6 +7,7 @@ import std; ...@@ -7,6 +7,7 @@ import std;
backend default { backend default {
.host = "/* {{ host }} */"; .host = "/* {{ host }} */";
.port = "/* {{ port }} */"; .port = "/* {{ port }} */";
.first_byte_timeout = 600s;
} }
acl purge { acl purge {
......
...@@ -38,6 +38,12 @@ location ~* ^/setup($|/) { ...@@ -38,6 +38,12 @@ location ~* ^/setup($|/) {
root $MAGE_ROOT; root $MAGE_ROOT;
location ~ ^/setup/index.php { location ~ ^/setup/index.php {
fastcgi_pass fastcgi_backend; fastcgi_pass fastcgi_backend;
fastcgi_param PHP_FLAG "session.auto_start=off \n suhosin.session.cryptua=off";
fastcgi_param PHP_VALUE "memory_limit=768M \n max_execution_time=600";
fastcgi_read_timeout 600s;
fastcgi_connect_timeout 600s;
fastcgi_index index.php; fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params; include fastcgi_params;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment