发布时间:2014-09-05 11:07:11作者:知识屋
做个笔记.
# nginx.conf
server {
listen 8080 ;
server_name localhost;
location / {
root /home/work/htdocs;
expires 1d;
autoindex on;
index index.php index.html;
}
location ~* /.php$ {
root /home/work/htdocs;
fastcgi_pass 127.0.0.1:30000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /home/work/htdocs/$fastcgi_script_name;
client_max_body_size 100m;
include fastcgi_params;
fastcgi_connect_timeout 1000s;
fastcgi_send_timeout 1000s;
fastcgi_read_timeout 1000s;
}
}
# nginx.sh ngix 启动脚本
#!/bin/sh
case "$1" in
'start')
sudo /usr/local/nginx/sbin/nginx -s start
;;
'stop')
sudo /usr/local/nginx/sbin/nginx -s stop
;;
'restart')
sudo /usr/local/nginx/sbin/nginx -s reload
;;
*)
echo "Usage: $0 {start|stop}"
exit 1
;;
esac
# spaw-php.sh php-cgi 启动脚本
#!/bin/sh
dir=`dirname $0`
PID_FILE=/home/work/htdocs/spaw-php.pid
PHP_FCGI="/home/work/php/bin/php-cgi -f /home/work/htdocs/php.ini"
case "$1" in
'start')
spawn-fcgi -C 3 -p 30000 -f "$PHP_FCGI" -P $PID_FILE
;;
'stop')
kill `cat $PID_FILE`
;;
'restart')
kill `cat $PID_FILE`
spawn-fcgi -C 3 -p 30000 -f "$PHP_FCGI" -P $PID_FILE
;;
*)
echo "Usage: $0 {start|stop}"
exit 1
;;
esac
如何对PHP文件进行加密方法 PHP实现加密的几种方式介绍
php生成圆角图片的方法 电脑中php怎么生成圆角图片教程
用PHP构建一个留言本方法步骤 php怎么实现留言板功能
php中三元运算符用法 php中的三元运算符使用说明
php文件如何怎么打开方式介绍 php文件用什么打开方法
PHP怎么插入数据库方法步骤 php编程怎么导入数据库教程
如何安装PHPstorm并配置方法教程 phpstorm安装后要进行哪些配置
PHP 获取远程文件大小的3种解决方法 如何用PHP获取远程大文件的大小
20个实用PHP实例代码 php接口开发实例代码详细介绍
如何架设PHP服务器方法步骤 怎么搭建php服务器简单教程