matomo-org / matomo-nginx

Nginx configuration for running Matomo
408 stars 121 forks source link

Correct typo regarding commenting "try_files" #59

Closed axelsimon closed 4 years ago

axelsimon commented 4 years ago

Just realised commenting fastcgi_pass is a bad idea. I got confused, my setup is that i define:

upstream php-handler {
  server unix:/var/run/php/php7.3-fpm.sock;
}

to be able to call to it with a name. But fastcgi_pass still needs to be defined (in my case with fastcgi_pass = php-handler). Updating this PR to only take the typo.

Findus23 commented 4 years ago

Hi,

You are right. I always mix up uncommenting and commenting out a line.