1. 程式人生 > >樹莓派php+nginx的安裝和php調用c++程序

樹莓派php+nginx的安裝和php調用c++程序

pre rpc php fault nginx etc 問題 css 程序

樹莓派安裝php+nginx流程:

1、安裝php環境:

sudo apt-get install nginx php5-fpm php5-cgi php5-cli php5-curl php5-gd php5-mcrypt php5-mysql php5-memcache php5-gd php5-sqlite php5-cgi php5-xmlrpc mysql-server mysql-client

如果不需要mysql環境,去掉最後兩個 mysql-server mysql-client

當時遇到問題是沒有軟件包,即使更新也不行,後來參考下面這個博客更新了鏡像源:

http://www.ixsz.com/?p=710

2、修改站點配置文件:

sudo gedit /etc/nginx/sites-available/default

修改為以下內容:

server
{ listen
80; server_name raspiweb.dyndns.org; root /var/www/; access_log /var/log/nginx/localhost.access.log; #error_page 404 /404.html; if (!-e $request_filename) { rewrite ^(.*)$ /index.php$1 last; } location
/ { index index.html index.htm index.php default.html default.htm default.php; } location ~* ^.+.(jpg|jpeg|gif|css|png|js|ico|xml)$ { access_log off; expires 1d; } location ~ .*\.php(\/.*)*$ { fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:
/var/run/php5-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include /etc/nginx/fastcgi_params;
}
}

需要說明的是,站點目錄為/var/www/,重點關註這一句:

fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;

php調用c++的demo:
http://www.cnblogs.com/freeweb/p/5645699.html

註意php調用c++的demo中的test可執行文件,html文件,php文件需要放在上面的root指定的路徑中,即/var/www/;

並且也不能直接打開html文件,需要在瀏覽器中輸入localhost/form.html就可以了

樹莓派php+nginx的安裝和php調用c++程序