Voting

: six plus zero?
(Example: nine)

The Note You're Voting On

jshawcx at gmail dot com
10 years ago
use nginx and php-fpm you can config:

location / {
try_files $uri $uri/ /index.php$is_args$args;
}

location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
#fastcgi_pass unix:/tmp/php-cgi.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}

<< Back to user notes page

To Top