2018-11-27 UTC
# cjwillcock !tell Sim Nginx passes .php files on to php-fpm. My try_files directive didn't include the query string, so the PHP-FPM didn't receive and GET params. Check for `try_files $uri $uri/ /index.php;` in your configs. If you find it, change to `try_files $uri $uri/ /index.php?$query_string`. It's a long shot. Maybe we followed the same bad advice re: setting up nginx at DO.