Move old apache project

HI again, guys. I have another trouble with own old projects basec on
large
htaccess rewriet rules.
That’s my configuration server { root /home/www/projects/dechko; index index.html index.htm index.ph - Pastebin.com in server block for
one
site, and everything work fine except when open url without “index.php”
there. Nginx return me “Access denied”, and i can’t understand why.

Posted at Nginx Forum:

Sorry, i find out :slight_smile: Add these missing params in php-fpm configuration
and
work like charm

fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param SCRIPT_NAME $fastcgi_script_name;

Posted at Nginx Forum: