Skip to content

Commit 1cf80af

Browse files
committed
MAGETWO-95732: Impossible to complete install with nginx and sampledata
1 parent 2d9c1e6 commit 1cf80af

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

nginx.conf.sample

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ location ~* ^/setup($|/) {
4343
root $MAGE_ROOT;
4444
location ~ ^/setup/index.php {
4545
fastcgi_pass fastcgi_backend;
46+
fastcgi_read_timeout 600s;
47+
fastcgi_connect_timeout 600s;
4648
fastcgi_index index.php;
4749
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
4850
include fastcgi_params;
@@ -64,6 +66,8 @@ location ~* ^/update($|/) {
6466
location ~ ^/update/index.php {
6567
fastcgi_split_path_info ^(/update/index.php)(/.+)$;
6668
fastcgi_pass fastcgi_backend;
69+
fastcgi_read_timeout 600s;
70+
fastcgi_connect_timeout 600s;
6771
fastcgi_index index.php;
6872
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
6973
fastcgi_param PATH_INFO $fastcgi_path_info;

0 commit comments

Comments
 (0)