标签:document dns def dex spi mys 直接 php文件 .com
树莓派安装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就可以了
标签:document dns def dex spi mys 直接 php文件 .com
原文地址:http://www.cnblogs.com/yqyouqing/p/7747328.html