当前位置:  操作系统/服务器>linux
本页文章导读:
    ▪Nginx 400错误频发 HTTP头/Cookie过大问题的解决方法      参考nginx中的办法: 在nginx.conf中,将client_header_buffer_function() { return this.length; }和large_client_header_buffers都调大,可缓解此问题。 其中主要配置是client_header_buffer_function( ) { return this.length; }这一项,.........
    ▪Nginx 动静分离的配置方法      在负载较高时,可以考虑把nginx装一台服务器上,php+mysql装到另一台服务器。 环境描述:   192.168.253.129 nginx 192.168.253.131 php+mysql 一,在129上安装nginx 1,安装pcre,nginx根据正则表达式查询php.........
    ▪一个生产环境下的nginx.conf配置文件(多虚拟主机)      生产环境中nginx的配置文件nginx.conf:   代码示例:  user  www www;  worker_processes 8;  error_log  /data/logs/nginx_error.log  crit;  pid  /usr/local/webserver/nginx/nginx.pid;    #Specifies the value for maximum f.........

[1]Nginx 400错误频发 HTTP头/Cookie过大问题的解决方法
    来源: 互联网  发布时间: 2013-12-24

参考nginx中的办法:
在nginx.conf中,将client_header_buffer_function() { return this.length; }和large_client_header_buffers都调大,可缓解此问题。

其中主要配置是client_header_buffer_function( ) { return this.length; }这一项,默认是1k,所以header小于1k的话是不会出现问题的。

按现在配置:
 

client_header_buffer_function() { return this.length; } 16k;
large_client_header_buffers 4 64k;

参考文档:
http://wiki.nginx.org/NginxHttpCoreModule#client_header_buffer_size


    
[2]Nginx 动静分离的配置方法
    来源: 互联网  发布时间: 2013-12-24

在负载较高时,可以考虑把nginx装一台服务器上,php+mysql装到另一台服务器。

环境描述:
 

192.168.253.129 nginx
192.168.253.131 php+mysql

一,在129上安装nginx

1,安装pcre,nginx根据正则表达式查询php请求
 

代码示例:
#rpm -qa | grep pcre  //查询系统中有没有安装PCRE,一般装系统是默认装有,删掉系统自带的
#cp /lib64/libpcre.so.0 / //在删除系统自带的PCRE之前,要先备份一下libpcre.so.0这个文件,因为RPM包的关联性太强,在删除后没libpcre.so.0这个文件时装PCRE是装不上的
rpm -e --nodeps pcre-6.6-2.el5_1.7 //删除系统自带的PCRE
tar -zxf pcre-7.8.tar.gz
cd pcre-7.8
cp /libpcre.so.0 /lib64/  //把删除系统自带的PCRE之前备份的libpcre.so.0拷贝到/lib 目录下
./configure  //配置PCRE,因为PCRE是一个库,而不是像pache、php、postfix等这样的程序,所以安装时选择默认路径即可,这样会在后面安装其它东西时避免一些不必要的麻烦。
make & make install

2,安装nginx
 

代码示例:
tar -zxf nginx-0.7.30.tar.gz
cd nginx-0.7.30
./configure --prefix=/usr/local/nginx  //本环节只需指定一个路径
make && make install

二,在31上安装php+mysql
1,安装mysql
 

代码示例:

useradd mysql
tar zxvf mysql-5.0.40.tar.gz
cd mysql-5.0.40
./configure --prefix=/usr/local/mysql
make && make install

/usr/local/mysql/bin/mysql_install_db --user=mysql //初始化MySQL数据库
chown -R mysql /usr/local/mysql/var
/usr/local/mysql/bin/mysqld_safe &  //启动MySQL

/usr/local/mysql/bin/mysqladmin -u root password 123456  //设置MySQL密码
cp support-files/my-medium.cnf /etc/my.cnf
echo "/usr/local/mysql/bin/mysqld_safe &" >>/etc/rc.local

安装php
首先,把PHP和PHP-FPM下载到同一目录下,此次用的为php-5.3.0.tar.bz2和php-5.3.0-fpm-0.5.12.diff.gz,下载到了同一目录下
 

代码示例:
tar xvf php-5.3.0.tar.bz2
gzip -cd php-5.3.0-fpm-0.5.12.diff.gz | patch -d php-5.3.0 -p1  //将php-5.3.0-fpm-0.5.12.diff.gz以补丁形式加到php-5.3.0里面
cd php-5.3.0
./configure --prefix=/usr/local/php --enable-fastcgi --enable-fpm --with-mysql=/usr/local/mysql
make && make install
cp php.ini-dist /usr/local/php/etc/php.ini

三,在131上进行配置
修改php-fpm配置文件
1,把127.0.0.1改成本机ip <value name="listen_address">192.168.253.131:9000</value>
2,去掉注释,以nobody用户来运行php
 

代码示例:
Unix user of processes
<value name="user">nobody</value>
Unix group of processes
<value name="group">nobody</value>

3,修改客户端ip为192.168.253.129 ,只接受nginx的请求
 

<value name="allowed_clients">192.168.253.129</value>

创建php测试页:
 

代码示例:
Mkdir –p /www/html
Vim /www/html/index.php
<?php
Phpinfo();
?>

四,配置nginx在192.168.253.129
Vim /usr/local/nginx/conf/nginx/conf
打开CGI部分的注释,修改ip成192.168.253.131 ,并修改php文件的路径为/www/html
 

代码示例:
location ~ \.php$ {
   root           html;
   fastcgi_pass   192.168.253.131:9000;
   fastcgi_index  index.php;
   fastcgi_param  SCRIPT_FILENAME  /www/html$fastcgi_script_name;
   include        fastcgi_params;
}

测试:
http://192.168.253.129/index.php
浏览器中显示存放在131下的测试页面index.php中的内容。

您可能感兴趣的文章:
nginx缓存html静态文件 解析php及反向代理IIS的配置
nginx对静态文件cache的处理机制分析
如何让nginx只缓存静态文件
Nginx 设置静态文件缓存时间
nginx缓存本地静态文件
nginx缓存静态文件的配置方法
nginx rewrite 伪静态配置参数详解
nginx 预压缩(gzip)静态文件
nginx rewrite 伪静态配置参数和使用例子


    
[3]一个生产环境下的nginx.conf配置文件(多虚拟主机)
    来源: 互联网  发布时间: 2013-12-24

生产环境中nginx的配置文件nginx.conf:
 

代码示例:
 user  www www;
 worker_processes 8;
 error_log  /data/logs/nginx_error.log  crit;
 pid  /usr/local/webserver/nginx/nginx.pid;
 
 #Specifies the value for maximum file descriptors that can be opened by this process. 
 worker_rlimit_nofile 65535;
 events 
 {
   use epoll;
   worker_connections 65535;
 }
 
 http 
 {
   include    mime.types;
   default_type  application/octet-stream;
   #charset  gb2312;
   server_names_hash_bucket_size 128;
   client_header_buffer_size 32k;
   large_client_header_buffers 4 32k;
   client_max_body_size 8m;
    
   sendfile on;
   tcp_nopush  on;
   keepalive_timeout 60;
   tcp_nodelay on;
 
   fastcgi_connect_timeout 300;
   fastcgi_send_timeout 300;
   fastcgi_read_timeout 300;
   fastcgi_buffer_size 64k;
   fastcgi_buffers 4 64k;
   fastcgi_busy_buffers_size 128k;
   fastcgi_temp_file_write_size 128k;
 
   gzip on;
   gzip_min_length  1k;
   gzip_buffers  4 16k;
   gzip_http_version 1.0;
   gzip_comp_level 2;
   gzip_types    text/plain application/x-javascript text/css application/xml;
   gzip_vary on;
 
   #limit_zone  crawler  $binary_remote_addr  10m;
   server 
   {
  listen 80 default;
  server_name _;
  index index.html index.htm index.php;
  root /data/htdocs/www;
  #server_name_in_redirect off;
  
  location ~ .*\.(php|php5)?$
  {
    #fastcgi_pass  unix:/tmp/php-cgi.sock;
    fastcgi_pass  127.0.0.1:9000;
    fastcgi_index index.php;
    include fcgi.conf;
  }
 
  location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
  {
    expires   30d;
  }
 
  location ~ .*\.(js|css)?$
  {
    expires   1h;
  }
 
  }
 
   server
   {
  listen    80;
  server_name  www.;
  index index.html index.htm index.php;
  root  /data/htdocs/www/adongweb;
 
  #limit_conn   crawler  20; 
  location ~ .*\.(php|php5)?$
  {   
    #fastcgi_pass  unix:/tmp/php-cgi.sock;
    fastcgi_pass  127.0.0.1:9000;
    fastcgi_index index.php;
    include fcgi.conf;
  }
  
  location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
  {
    expires   30d;
  }
 
  location ~ .*\.(js|css)?$
  {
    expires   1h;
  } 
 
  log_format  access  '$remote_addr - $remote_user [$time_local] "$request" '
      '$status $body_bytes_sent "$http_referer" '
      '"$http_user_agent" $http_x_forwarded_for';
  access_log  /data/logs/access.log  access;
    }
 
   server
   {
  listen    80;
  server_name  www.longfeistudio.com;
  index index.html index.htm index.php;
  root  /data/htdocs/www/ImageVue;
 
  #limit_conn   crawler  20;
   
  location ~ .*\.(php|php5)?$
  {
    #fastcgi_pass  unix:/tmp/php-cgi.sock;
    fastcgi_pass  127.0.0.1:9000;
    fastcgi_index index.php;
    include fcgi.conf;
  }
   
  location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
  {
    expires   30d;
  }
 
  location ~ .*\.(js|css)?$
  {
    expires   1h;
  }
 
  access_log  off;
    }
 
   server
   {
  listen    80;
  server_name  www.hongyanbike.com;
  index index.html index.htm index.php;
  root  /data/htdocs/www/xhui/hybike;
 
  location ~ .*\.(php|php5)?$
  {   
    #fastcgi_pass  unix:/tmp/php-cgi.sock;
    fastcgi_pass  127.0.0.1:9000;
    fastcgi_index index.php;
    include fcgi.conf;
  }
  
  location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
  {
    expires   30d;
  }
 
  location ~ .*\.(js|css)?$
  {
    expires   1h;
  }
 
  access_log  off;
   }
 
 server
   {
  listen    80;
  server_name  www.very365.com mm.very365.com very365.com; 
  index index.html index.htm index.php;
  root  /data/htdocs/www/very365;
   location /
   {  
   rewrite ^/(.*)/product/([0-9]+)/$ /seoproduct\.php\?spell=$1&productid=$2;
   rewrite ^/brand/(.*)/page/([0-9]+)/$ /seobrand\.php\?spell=$1&page=$2;
   rewrite ^/brand/(.*)/$ /seobrand\.php\?spell=$1;
 
  }
  location ~ .*\.(php|php5)?$
  {
    #fastcgi_pass  unix:/tmp/php-cgi.sock;
    fastcgi_pass  127.0.0.1:9000;
    fastcgi_index index.php;
    include fcgi.conf;
    fastcgi_param SCRIPT_FILENAME /data/htdocs/www/very365$fastcgi_script_name;
    fastcgi_param  SCRIPT_NAME  /data/htdocs/www/very365$fastcgi_script_name;
  }
 
  location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
  {
    expires   30d;
  }
 
  location ~ .*\.(js|css)?$
  {
    expires   1h;
  }
 
  access_log  off;
 
   }
 server
   {
  listen    80;
  server_name  www.wqueen.cn wqueen.cn;
 
 
  index index.html index.htm index.php;
  root  /data/htdocs/www/wqueen/bbs;
 
  location ~ .*\.(php|php5)?$
  {
    #fastcgi_pass  unix:/tmp/php-cgi.sock;
    fastcgi_pass  127.0.0.1:9000;
    fastcgi_index index.php;
    include fcgi.conf;
  }
 
  location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
  {
    expires   30d;
  }
 
  location ~ .*\.(js|css)?$
  {
    expires   1h;
  }
 
  access_log  off;
  }
 server
   {
  listen    80;
  server_name  baobei.wqueen.cn;
  index index.html index.htm index.php;
  root  /data/htdocs/www/baobei;
 
  location ~ .*\.(php|php5)?$
  {
    #fastcgi_pass  unix:/tmp/php-cgi.sock;
    fastcgi_pass  127.0.0.1:9000;
    fastcgi_index index.php;
    include fcgi.conf;
  }
 
  location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
  {
    expires   30d;
  }
 
  location ~ .*\.(js|css)?$
  {
    expires   1h;
  }
 
  access_log  off;
  }
 }

    
最新技术文章:
▪linux系统中的列出敏感用户的脚本代码
▪a10 config backup for aXAPI
▪一键备份gitolite服务器的Shell脚本
▪nagios 分发文件实现代码
▪阿里云云服务器Linux系统更新yum源Shell脚本
▪一个监控LINUX目录和文件变化的Shell脚本分享
▪Linux下实现SSH免密码登录和实现秘钥的管理、...
▪Shell正则表达式之grep、sed、awk实操笔记
▪3个备份系统文件并邮件发送的Shell脚本分享
▪CentOS 6.3下给PHP添加mssql扩展模块教程
▪监控网站是否可以正常打开的Shell脚本分享
▪shell脚本编程之if语句学习笔记
▪shell脚本编程之循环语句学习笔记
▪shell脚本编程之case语句学习笔记
▪Shell脚本实现的阳历转农历代码分享
▪Shell脚本实现复制文件到多台服务器的代码分...
编程语言 iis7站长之家
▪Shell脚本实现检测文件是否被修改过代码分享
▪Shell脚本数组用法小结
▪Shell脚本批量重命名文件后缀的3种实现
▪C语言实现的ls命令源码分享
▪Linux下查找后门程序 CentOS 查后门程序的shell脚...
▪Shell 函数参数
▪linux shell 自定义函数方法(定义、返回值、变...
▪Shell实现判断进程是否存在并重新启动脚本分...
▪Shell脚本break和continue命令简明教程
▪Shell脚本函数定义和函数参数
▪让代码整洁、过程清晰的BASH Shell编程技巧
▪shell常用重定向实例讲解
▪awk中RS、ORS、FS、OFS的区别和联系小结
 


站内导航:


特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

©2012-2021,,E-mail:www_#163.com(请将#改为@)

浙ICP备11055608号-3