admin 发表于 2012-8-24 14:22:31

tomato、dd-wrt安装nginx+php

DD-WRT下用的源是http://ipkg.nslu2-linux.org/feeds/optware/ddwrt/cross/stable/
1.ipkg install nginx php spawn-fcgi php-fcgi

2.修改nginx配置文件
vi /opt/etc/nginx/nginx.conf

修改以下内容
userroot

server {
    #端口
    listen8081;
    #网站根目录
    root   /mnt/www;
    location / {
      #默认主页
      indexindex.html index.htm index.php;
    }
    location ~.php$ {
      include      fastcgi_params;
      fastcgi_pass   127.0.0.1:9000;
      fastcgi_indexindex.php;
      fastcgi_paramSCRIPT_FILENAME$document_root$fastcgi_script_name;
    }


3.新建一个php测试文件
vi /mnt/www/index.php

输入以下内容
<?php phpinfo(); ?>
保存退出

4.增加一个nginx+php的启动脚本
vi /mnt/nginx.sh

输入以下内容
#!/bin/sh

killall nginx
killall php-fcgi
sleep 2
spawn-fcgi -a 127.0.0.1 -p 9000 -C 1 -f /opt/bin/php-fcgi
/opt/etc/init.d/S80nginx start

保存退出,增加执行权限
chmod +x /mnt/nginx.sh

启动nginx和php
/mnt/nginx.sh

现在打开 http://路由ip:8081 应该可以看到php相关信息了



PS.如果遇到php报No input file specified错误,更改/opt/etc/php.ini这个文件,查找
doc_root =
将=号后面的路径删除即可!
页: [1]
查看完整版本: tomato、dd-wrt安装nginx+php