Displaying 3 results from an estimated 3 matches for "fastcgi_index".
2014 Oct 29
3
Right way to install phpMyAdmin through Nginx and PHP-FPM
...location ~ /(libraries|setup/frames|setup/libs) {
deny all;
return 404;
}
location ~ \.php$ {
include /etc/nginx/fastcgi_params;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $root$fastcgi_script_name;
}
access_log /var/log/nginx/phpmyadmin/access.log;
error_log /var/log/nginx/phpmyadmin/error.log;
}
But any time I restart Nginx service I got this error:...
2006 Aug 25
0
nginx+fastcgi+rails
...ev.ru/nginx/ ] in english (or
maybe engrish ;) ) on my wiki [
http://zh.stikipad.com/notes/show/nginx ].
And my question: have somebody working config for nginx+fastcgi+rails
(dispatch.fcgi)?
Something like:
-------------- >8 --------------
location / {
fastcgi_pass localhost:9000;
fastcgi_index dispatch.fcgi;
fastcgi_param SCRIPT_FILENAME /home/rails/public/$fastcgi_script_name;
}
-------------- >8 --------------
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group....
2012 Dec 06
2
pasenger does not start puppet master under nginx
...# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on
127.0.0.1:9000
#
location ~ \.php$ {
root html;
fastcgi_pass unix:/var/run/php-fpm/php-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME
$document_root$fastcgi_script_name;
fastcgi_param SCRIPT_NAME $fastcgi_script_name;
include fastcgi_params;
}
# deny access to .htaccess files, if Apache''s documen...