- 论坛徽章:
- 0
|
1. 获取root权限
sudo su -
2. 安装MySQL
aptitude install mysql-server mysql-client
3. 安装Nginx
aptitude install nginx
启动Nginx
/etc/init.d/nginx start
4. 安装PHP
aptitude install php5-cgi php5-mysql php5-curl php5-gd php5-idn php-pear php5-imagick php5-imap php5-mcrypt php5-memcache php5-mhash php5-ming php5-pspell php5-recode php5-snmp php5-sqlite php5-tidy php5-xmlrpc php5-xsl
编辑PHP配置文件
vi /etc/php5/cgi/php.ini
[...]
cgi.fix_pathinfo = 1
5. 为了得到spawn-fcgi我们需要安装lighttpd
aptitude install lighttpd
将lighttpd从启动项删除
update-rc.d -f lighttpd remove
新建php-fastcgi
vim /usr/bin/php-fastcgi
#!/bin/sh
/usr/bin/spawn-fcgi -a 127.0.0.1 -p 9000 -u www-data -f /usr/bin/php5-cgi
创建init脚本
vim /etc/init.d/php-fastcgi
脚本内容
#!/bin/bash
PHP_SCRIPT=/usr/bin/php-fastcgi
RETVAL=0
case "$1" in
start)
$PHP_SCRIPT
RETVAL=$?
;;
stop)
killall -9 php5-cgi
RETVAL=$?
;;
restart)
killall -9 php5-cgi
$PHP_SCRIPT
RETVAL=$?
;;
*)
echo "Usage: php-fastcgi {start|stop|restart}"
exit 1
;;
esac
exit $RETVAL
修改权限
chmod 755 /etc/init.d/php-fastcgi
启动脚本
/etc/init.d/php-fastcgi start
添加到启动项
update-rc.d php-fastcgi defaults
6. 修改Nginx配置文件
vim /etc/nginx/nginx.conf
[...]
worker_processes 5;
[...]
keepalive_timeout 2;
[...]
vim /etc/nginx/sites-available/default
[...]
server {
listen 80;
server_name _;
access_log /var/log/nginx/localhost.access.log;
location / {
root /var/www/nginx-default;
index index.php index.html index.htm;
}
location /doc {
root /usr/share;
autoindex on;
allow 127.0.0.1;
deny all;
}
location /images {
root /usr/share;
autoindex on;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /var/www/nginx-default;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
#proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /var/www/nginx-default$fastcgi_script_name;
include fastcgi_params;
}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
location ~ /\.ht {
deny all;
}
}
[...]
重启Nginx
/etc/init.d/nginx restart
7. 新建phpinfo.php用于测试
vim /var/www/nginx-default/phpinfo.php
?php
// Show all information, defaults to INFO_ALL
phpinfo();
// Show just the module information.
// phpinfo(8) yields identical results.
phpinfo(INFO_MODULES);
?>
本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u3/107440/showart_2112325.html |
|