location ^~ /authorized {
root /Users/yarovikov/Sites/test-site/wp-content;
internal;
}
location ~* ^/wp-content/uploads/.+?\.(rar|zip|7z)$ {
rewrite ^ /wp-content/themes/test-theme/inc/file-request.php?path=$1 last;
}
location ~ [^/]\.php(/|$) {
...
fastcgi_param SCRIPT_FILENAME "/Users/yarovikov/.composer/vendor/laravel/valet/server.php";
...
}
location ~* ^/wp-content/uploads/.+?\.(rar|zip|7z)$ {
rewrite (.+) /wp-content/themes/test-theme/inc/nginx-file-request.php?path=$1 break;
root /Users/yarovikov/Sites/localhost/test-site;
fastcgi_pass "unix:/Users/yarovikov/.config/valet/valet.sock";
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}