nginx php-fpm keeps downloading files
- by Sam Williams
vhost:
server {
listen *:8080;
location / {
root /var/www/default/pub;
index index.php;
# if file exists return it right away
if (-f $request_filename) {
break;
}
if (!-e $request_filename) {
…