当前位置:  操作系统/服务器>linux
本页文章导读:
    ▪安装nginx1.2.0配置简单负载      安装nginx1.2.0 下载nginx源码包 http://nginx.org/download/nginx-1.2.0.tar.gz 安装pcre支持 yum install pcre-devel 安装nginx cd /opt/ tar zxvf nginx-1.2.0.tar.gz cd nginx-1.2.0 ./configure --with-http_stub_status_module --prefix=/usr.........
    ▪nginx配置多站点的实例代码      nginx下配置多站点其实跟apahce差不多。 打开nginx的主配置文件nginx.conf,在最后面添加: include /etc/nginx/vhosts/*; vhostsl里面存放着不同站点的配置,把我的例子贴上来供大家参考:   代码如下: se.........
    ▪Nginx下配置zend framework      nginx下配置zend framework,可以在Linux环境下增加一段虚拟服务器的设置,设置nginx.conf如下:    代码如下: server {         listen 80;         server_name audit.local;         root /app/audit/pub.........

[1]安装nginx1.2.0配置简单负载
    来源: 互联网  发布时间: 2013-12-24

安装nginx1.2.0

下载nginx源码包
http://nginx.org/download/nginx-1.2.0.tar.gz

安装pcre支持
yum install pcre-devel

安装nginx
cd /opt/
tar zxvf nginx-1.2.0.tar.gz
cd nginx-1.2.0
./configure --with-http_stub_status_module --prefix=/usr/local/nginx
make && make install
安装完成

cd /usr/local/nginx/sbin/
./nginx
启动 nginx
lsof -i:80

防火墙添加80端口 重启防火墙

访问 http://192.168.1.1
welcome to nginx !

实现简单负载

修改 /usr/local/nginx/conf/nginx.conf
修改内容如下:
 

代码如下:

http {
    include       mime.types;
    default_type  application/octet-stream;

    upstream test{
        server  192.168.1.2:80        weight=3 max_fails=3 fail_timeout=20s;
        server  192.168.1.3:80        weight=3 max_fails=4 fail_timeout=20s;
        server  192.168.1.4:80        weight=3 max_fails=1 fail_timeout=20s;
}

 server {
        listen       80;
        server_name  www.test.com     192.168.1.1;

        index  index.html index.htm;
        location / {
        proxy_pass http://test;
        proxy_next_upstream http_500 http_502 http_503 error timeout invalid_header;
        include  /usr/local/nginx/conf/proxy.conf;
}
        }

添加 /usr/local/nginx/conf/proxy.conf
内容如下:
 

代码如下:
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
client_body_buffer_size 128k;
proxy_connect_timeout 90;
proxy_send_timeout 90;
proxy_read_timeout 90;
proxy_buffer_size 4k;
proxy_buffers 4 32k;
proxy_busy_buffers_size 64k;
proxy_temp_file_write_size 64k;

保存退出!

重启nginx。
修改本地hosts文件内容:
192.168.1.1   www.test.com

测试:
访问 http://www.test.com 或 http://192.168.1.1


    
[2]nginx配置多站点的实例代码
    来源: 互联网  发布时间: 2013-12-24

nginx下配置多站点其实跟apahce差不多。
打开nginx的主配置文件nginx.conf,在最后面添加:
include /etc/nginx/vhosts/*;

vhostsl里面存放着不同站点的配置,把我的例子贴上来供大家参考:
 

代码如下:

server {
  listen  80;
  server_name  i.cteabox.com;

location / {
  root   /var/www/tea/blog;
  index  index.php index.html index.htm;
  if (-d $request_filename){
    rewrite ^/(.*)([^/])$ $1$2/ permanent;
  }
  if (-f $request_filename/index.html){
    rewrite (.*) $1/index.html break;
 }
 if (-f $request_filename/index.php){
    rewrite (.*) $1/index.php;
 }
 if (!-f $request_filename){
    rewrite (.*) /index.php;
 }
}

 error_page   500 502 503 504  /50x.html;
   location = /50x.html {
   root  /var/www/tea/blog;
}

 # 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/tea/blog$fastcgi_script_name;
    include        fastcgi_params;
  }

 location ~ /\.ht {
   deny  all;
  }
}

以上代码中包括了nginx的rewirte配置。


    
[3]Nginx下配置zend framework
    来源: 互联网  发布时间: 2013-12-24

nginx下配置zend framework,可以在Linux环境下增加一段虚拟服务器的设置,设置nginx.conf如下:
  

代码如下:
server {
        listen 80;
        server_name audit.local;
        root /app/audit/public;
        access_log  /app/audit/logs/audit.access.log main;
        error_log   /app/audit/logs/audit.error.log;
        location / {
            index  index.php;
        # If file not found, redirect to Zend handling, we can remove the (if) here and go directly rewrite
            if (!-f $request_filename){
                rewrite ^/(.+)$ /index.php?$1& last;
            }
        }
        location ~* ^.+\.(js|ico|gif|jpg|jpeg|pdf|png|css)$ {
          access_log   off;
          expires      7d;
        }
        location ~ .*\.php?$ {
            fastcgi_pass   127.0.0.1:36;
            fastcgi_index  index.php;
            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
            include        fastcgi_params;
        }
        error_page  404   http://audit.local/error;
   }

    
最新技术文章:
▪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脚本实现复制文件到多台服务器的代码分...
▪Shell脚本实现批量下载网络图片代码分享
▪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