Skip to content

Commit be34306

Browse files
committed
MAGETWO-43256: Updater status page not compatible with nginx
- changed nginx configuration file to include PATH_INFO server variable
1 parent c743dec commit be34306

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

nginx.conf.sample

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,11 @@ location /update {
4545
root $MAGE_ROOT;
4646

4747
location ~ ^/update/index.php {
48+
fastcgi_split_path_info ^(/update/index.php)(/.+)$;
4849
fastcgi_pass fastcgi_backend;
4950
fastcgi_index index.php;
5051
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
52+
fastcgi_param PATH_INFO $fastcgi_path_info;
5153
include fastcgi_params;
5254
}
5355

0 commit comments

Comments
 (0)