Drupal 8 PHP FPM Script Name update.php bug
After the Owncloud PHP-FPM script name bug, i've found Drupal 8's update.php script uses a similar routing convention to OwnCloud's index.php/app/files.
With the generic ProxyPassMatch directive the response is a 404 Not Found for the second page of the update process update.php/selection:
ProxyPassMatch ^/(.*\.php)$ fcgi://127.0.0.1:9001/app/$1
This can be fixed by adding an explicit match statement for the update script:
- Read more about Drupal 8 PHP FPM Script Name update.php bug
- Log in to post comments