当前位置:  操作系统/服务器>linux
本页文章导读:
    ▪Ngnix与Squid实现301重定向的例子      一、nginx rewrite重定向 实现www.test1.com/*  自动跳转到www.test2.com/* 配置代码:   代码示例: server { listen 80; server_name test1.com; index index.html index.shtml index.php; root /data/webroot/bitauto; if ($host ~* (.........
    ▪nginx运行无扩展名或非PHP扩展名文件的配置方法      要实现如上的功能,只需将nginx.conf文件中的默认   代码示例: location ~ .php$ { ….. }   上的正则表达式 更改为:   代码示例: location ~ (|.php)$ { … }   就可以了。 同理,也可以运行非.php.........
    ▪nginx缓存与memecache缓存简介      1、nginx缓存 1)、nginx缓存机制 两种缓存机制:fastcgi_cache和proxy_cache 二者间的区别: proxy_cache作用是缓存后端服务器的内容,可能是任何内容,包括静态的和动态的 fastcgi_cache作用是缓存fas.........

[1]Ngnix与Squid实现301重定向的例子
    来源: 互联网  发布时间: 2013-12-24

一、nginx rewrite重定向
实现www.test1.com/*  自动跳转到www.test2.com/*
配置代码:
 

代码示例:
server
{
listen 80;
server_name test1.com;
index index.html index.shtml index.php;
root /data/webroot/bitauto;
if ($host ~* (.*)\.test1\.com) {
   set $sub_name $1;
   rewrite ^/(.*)$ http://$sub_name.test2.com/$1 permanent;
}

二、squid 重定向
1)、主要配置文件
/usr/local/squid/etc/jesred.conf (设置一些配置选项)
/usr/local/squid/etc/jesred.acl (配置哪些来源的ip可以被jesred rewrite,一般设置为 0.0.0.0/0,而通过squid自身控制rewrite条件)
/usr/local/squid/etc/jesred.rules (实际的rewrite规则)

2、squid.conf片断:
 

代码示例:
url_rewrite_program usr/local/squid/etc/libexec/jesred
url_rewrite_children 20
url_rewrite_host_header off

3、说明
默认,jesred(或是其它的些rewrite工具)是作隐式的(透明地)url rewrite,即 从 url1 -> url2时,HTTP Ret Code还是会200,
客户端觉查不到有跳转的发生;
如果需要返回显示的跳转,HTTP RetCode 301或是302,即需要对rewrite规则进行小的修改
 

代码示例:
regexi ^http://(.*).163.com/(.*\.wma)\?.*       http://\1.163.com/\2  #此为隐式跳转
regexi ^http://(.*).163.com/(.*\.wma)\?.*       302:http://\1.163.com/\2  #此为显式跳转

4.测试
www.test1.com/* 自动跳转到www.test2.com/*
编辑:
 

代码示例:
/usr/local/squid/etc/jesred.rules
regexi ^http://www\.test1\.com/(.*)$ 301:http://www.test2.com/\1

以上为大家介绍了在nginx与squid配置301跳转(重定向)的简单实现方法,希望对大家有所帮助。


    
[2]nginx运行无扩展名或非PHP扩展名文件的配置方法
    来源: 互联网  发布时间: 2013-12-24

要实现如上的功能,只需将nginx.conf文件中的默认
 

代码示例:
location ~ .php$ {
…..
}
 

上的正则表达式 更改为:
 

代码示例:
location ~ (|.php)$ {

}
 

就可以了。

同理,也可以运行非.php扩展名的PHP文件,如 abc.html, abc.asp, abc.net, abc.jsp 等扩展名的PHP文件。
 
以上代码在php-5.2.17与nginx-0.8.54中调试通过。

附,nginx支持php的配置方法:
nginx安装及配置支持php的教程(2)
nginx安装及配置支持php的教程(1)

附,nginx.conf文件:
 

代码示例:

user  nobody;
worker_processes  1;

error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

pid        logs/nginx.pid;
events {
    worker_connections  1024;
}

http {
    include       mime.types;
    default_type  application/octet-stream;
    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
    #                  '$status $body_bytes_sent "$http_referer" '
    #                 '"$http_user_agent" "$http_x_forwarded_for"';
    #access_log  logs/access.log  main;
    server_names_hash_bucket_size 64;

    sendfile on;
    tcp_nopush     on;
    keepalive_timeout 60;
    tcp_nodelay on;
    fastcgi_connect_timeout 120;
    fastcgi_send_timeout 120;
    fastcgi_read_timeout 120;
    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 8k;
    gzip_http_version 1.1;
    gzip_comp_level 2;
    gzip_types       text/plain application/x-javascript text/css application/xml;
    gzip_vary on;

    autoindex on;

    server {
        listen       8000;
        server_name  www.;
        charset utf-8;
        location / {
            root   /opt/lzw/webapps;
            index  index.php index.html index.htm;
        }

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

        location ~ (|.php)$ {
            root           /opt/lzw/webapps;
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index  index.php;
            fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
            include        fastcgi_params;
        }
    }
}


    
[3]nginx缓存与memecache缓存简介
    来源: 互联网  发布时间: 2013-12-24

1、nginx缓存

1)、nginx缓存机制
两种缓存机制:fastcgi_cache和proxy_cache
二者间的区别:
proxy_cache作用是缓存后端服务器的内容,可能是任何内容,包括静态的和动态的
fastcgi_cache作用是缓存fastcgi生成的内容,很多情况是php生成的动态内容
proxy_cache缓存减少了nginx与后端通信的次数,节省了传输时间和后端带宽
fastcgi_cache缓存减少了nginx与php的通信次数,更减轻了php和数据库的压力。
 
2)、proxy_cache缓存设置
 

代码示例:

#注:proxy_temp_path和proxy_cache_path指定的路径必须在同一分区
proxy_temp_path   /data0/proxy_temp_dir;
#设置Web缓存区名称为cache_one,内存缓存空间大小为200MB,1天没有被访问的内容自动清除,硬盘缓存空间大小为30GB。
proxy_cache_path  /data0/proxy_cache_dir  levels=1:2   keys_zone=cache_one:200m inactive=1d max_size=30g;
server
  {
    listen       80;
    server_name  www.yourdomain.com 192.168.8.42;
    index index.html index.htm;
    root  /data0/htdocs/www; 

    location /
    {
         #如果后端的服务器返回502、504、执行超时等错误,自动将请求转发到upstream负载均衡池中的另一台服务器,实现故障转移。
         proxy_next_upstream http_502 http_504 error timeout invalid_header;
         proxy_cache cache_one;
         #对不同的HTTP状态码设置不同的缓存时间
         proxy_cache_valid  200 304 12h;
         #以域名、URI、参数组合成Web缓存的Key值,Nginx根据Key值哈希,存储缓存内容到二级缓存目录内
         proxy_cache_key $host$uri$is_args$args;
         proxy_set_header Host  $host;
         proxy_set_header X-Forwarded-For  $remote_addr;
         proxy_pass http://backend_server;
         expires      1d;
    }
   
    #用于清除缓存,假设一个URL为http://192.168.8.42/test.txt,通过访问http://192.168.8.42/purge/test.txt就可以清除该URL的缓存。
    location ~ /purge(/.*)
    {
     #设置只允许指定的IP或IP段才可以清除URL缓存。
     allow            127.0.0.1;
     allow            192.168.0.0/16;
     deny            all;
     proxy_cache_purge    cache_one   $host$1$is_args$args;
    }   

    #扩展名以.php、.jsp、.cgi结尾的动态应用程序不缓存。
    location ~ .*\.(php|jsp|cgi)?$
    {
         proxy_set_header Host  $host;
         proxy_set_header X-Forwarded-For  $remote_addr;
         proxy_pass http://backend_server;
    }

    access_log  off;
  }
}
 

 
3)、fastcgi_cache缓存设置
 

代码示例:
#定义缓存存放的文件夹
fastcgi_cache_path   /tt/cache  levels=1:2 keys_zone=NAME:2880m inactive=2d max_size=10G;
#定义缓存不同的url请求
fastcgi_cache_key "$scheme$request_method$host$uri$arg_filename$arg_x$arg_y";
server {
        listen       8080;
        server_name  www.example.com;
        location / {
            root   /www;
            index  index.html index.htm index.php;
        }
 
        location ~ (|.php)$ {
            root           /www;
            fastcgi_pass   127.0.0.1:9000;
           
            fastcgi_cache   NAME;
            fastcgi_cache_valid 200 48h;
            fastcgi_cache_min_uses  1;
            fastcgi_cache_use_stale error  timeout invalid_header http_500;
           
            fastcgi_index  index.php;
            fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
            include        fastcgi.conf;
            #设置缓存的过程中发现无法获取cookie,经查需要定义这句话
            fastcgi_pass_header Set-Cookie;
        }
 
        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  /httplogs/access.log  access;
}
 

总的来说  nginx的proxy_cache和fastcgi_cache的缓存配置差不多。

2、memcache缓存
我们知道,mysql的内存缓存可以在my.cnf中指定大小:内存表和临时表不同,临时表也是存放内存中,临时表最大的内存需要通过tmp_table_size=128M设定。当数据查过临时表的最大值设定时,自动转为磁盘表,此时因需要进行IO操作,性能会大大下降,而内存表不会,内存满了后,会提示数据满错误。
例:
 

代码示例:
create table test
(
    id int unsigned not null auto_increment primary key
    state char(10),
    type char(20),
    date char(30)
)engine=memory default charset=utf8

内存表的特性:
1.内存表的表定义存放在磁盘上,扩展名为.frm,所以重启不会丢失
2.内存表的数据是存放在内存中,重启会丢失数据
3.内存表使用一个固定的长度格式
4.内存表不支持blob或text列,比如varchar与text字段就不会被支持
5.内存表支持auto_increment列和对可包含null值的列的索引
6.内存表不支持事物
7.内存表是表锁,当修改频繁时,性能可能会下降。
 
memcache缓存,相对而言mysql的内存表限制较多。
memcache的用途
1.提高系统的并发能力
2.减轻数据库的负担
注:memcache linux系统32位只支持4G内存,同时memcache最长保存时间为30天。

以上为大家简要介绍了一下nginx的缓存与memcache的缓存,希望对大家有所帮助。


    
最新技术文章:
▪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