升级Nginx 0.8.14 到1.0.4 (二)
Nginx1.0.0 正式版本已经出来一段时间了
今天终于有时间对nginx服务器的进行了无缝升级了一下
一、下载、解压
wget http://nginx.org/download/nginx-1.0.4.tar.gz
tar zxvf nginx-1.0.4.tar.gz
二、查看已经安装的模块
nginx怎样配置反向代理
nginx配置反向代理一个完整的案例
server
{
listen 80;
# server_name vps.imcat.in;
server_name 192.168.79.129;
location / {
proxy_pass http://www.apoyl.com/;
更好的重启nginx 服务器
以前使用的重启命令 killall -HUP nginx
停止killall -9 nginx
启动/usr/local/nginx/sbin/nginx
现在使用的方式
修改nginx配置文件后,
先执行:/usr/local/nginx/sbin/nginx -t 检查配置是否正常,
nginx 502 Bad Gateway
nginx 502 Bad Gateway的错误,请检查你的FastCGI进程是否启动;FastCGI进程不够使用;执行超时;FastCGI缓冲不够;Proxy缓冲不够;https转发配置错误;php脚本执行时间过长
怎样优化FastCGI与Nginx的搭配
1、查看当前的PHP FastCGI进程数是否够用:netstat -anpo | grep “php-cgi” | wc -l如果实际使用的“FastCGI进程数”接近预设的“FastCGI进程数”,那么,说明“FastCGI进程数”不够用,需要增大。
nginx.conf详解
详细介绍了配置文件nginx的一些重要信息,更明白nginx各个参数的意思,方便配置文件的修改
#使用哪个用户启动nginx 前面是用户,后面是组
user www www;
#nginx工作的进程数量
worker_processes 2;
# [ debug | info | notice | warn | error | crit ] 错误日志的位置