nginx配置location总结

上代码,多的不说了,配了很多,终于起效了。
server {
    listen       80;
    server_name  www.szahq.com;

    # 第一个必选规则
    location = / {
      proxy_pass http://localhost:8080/f/index-1.html;
      proxy_redirect default;
      proxy_set_header   Host    $host;  
      proxy_set_header   X-Real-IP   $remote_addr;  
      proxy_set_header   X-Forwarded-For $proxy_add_x_forwarded_for;  
		}
    location /f/ {
      proxy_pass http://localhost:8080;
      proxy_redirect default;
      proxy_set_header   Host    $host;  
      proxy_set_header   X-Real-IP   $remote_addr;  
      proxy_set_header   X-Forwarded-For $proxy_add_x_forwarded_for;  
    }
    location /a/ {
      proxy_pass http://localhost:8080;
      proxy_redirect default;
      proxy_set_header   Host    $host;  
      proxy_set_header   X-Real-IP   $remote_addr;  
      proxy_set_header   X-Forwarded-For $proxy_add_x_forwarded_for;  
    }
    
    location ~* \.(ico|jpe?g|gif|png|bmp|swf|flv)$ {
                  root   /usr/local/tomcat/apache-tomcat-9.0.0.M27/webapps/szahq;
		  expires 30d;
		  #log_not_found off;
		  access_log off;
		}
    location ~* \.(js|css)$ {
		  root   /usr/local/tomcat/apache-tomcat-9.0.0.M27/webapps/szahq;
		  expires 7d;
		  log_not_found off;
		  access_log off;
		} 


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

对nginx 来说,实现的方法很简单,只要在location段中,使用 expires 就可以了
格式
expires 30s; //表示把数据缓存30秒
expires 30m;//表示把数据缓存30分
expires 10h;//表示把数据缓存10小时
expires 1d;//表示把数据缓存1

location正则写法
location  = / {
  # 精确匹配 / ,主机名后面不能带任何字符串
  [ configuration A ] 
}

location  / {
  # 因为所有的地址都以 / 开头,所以这条规则将匹配到所有请求
  # 但是正则和最长字符串会优先匹配
  [ configuration B ] 
}

location /documents/ {
  # 匹配任何以 /documents/ 开头的地址,匹配符合以后,还要继续往下搜索
  # 只有后面的正则表达式没有匹配到时,这一条才会采用这一条
  [ configuration C ] 
}

location ~ /documents/Abc {
  # 匹配任何以 /documents/ 开头的地址,匹配符合以后,还要继续往下搜索
  # 只有后面的正则表达式没有匹配到时,这一条才会采用这一条
  [ configuration CC ] 
}

location ^~ /images/ {
  # 匹配任何以 /images/ 开头的地址,匹配符合以后,停止往下搜索正则,采用这一条。
  [ configuration D ] 
}

location ~* \.(gif|jpg|jpeg)$ {
  # 匹配所有以 gif,jpg或jpeg 结尾的请求
  # 然而,所有请求 /images/ 下的图片会被 config D 处理,因为 ^~ 到达不了这一条正则
  [ configuration E ] 
}

location /images/ {
  # 字符匹配到 /images/,继续往下,会发现 ^~ 存在
  [ configuration F ] 
}

location /images/abc {
  # 最长字符匹配到 /images/abc,继续往下,会发现 ^~ 存在
  # F与G的放置顺序是没有关系的
  [ configuration G ] 
}

location ~ /images/abc/ {
  # 只有去掉 config D 才有效:先最长匹配 config G 开头的地址,继续往下搜索,匹配到这一条正则,采用
    [ configuration H ] 
}

location ~* /js/.*/\.js


已=开头表示精确匹配
如 A 中只匹配根目录结尾的请求,后面不能带任何字符串。
^~ 开头表示uri以某个常规字符串开头,不是正则匹配
~ 开头表示区分大小写的正则匹配;
~* 开头表示不区分大小写的正则匹配
/ 通用匹配, 如果没有其它匹配,任何请求都会匹配到
顺序 no优先级:
(location =) > (location 完整路径) > (location ^~ 路径) > (location ~,~* 正则顺序) > (location 部分起始路径) > (/)

上面的匹配结果
按照上面的location写法,以下的匹配示例成立:

/ -> config A
精确完全匹配,即使/index.html也匹配不了
/downloads/download.html -> config B
匹配B以后,往下没有任何匹配,采用B
/images/1.gif -> configuration D
匹配到F,往下匹配到D,停止往下
/images/abc/def -> config D
最长匹配到G,往下匹配D,停止往下
你可以看到 任何以/images/开头的都会匹配到D并停止,FG写在这里是没有任何意义的,H是永远轮不到的,这里只是为了说明匹配顺序
/documents/document.html -> config C
匹配到C,往下没有任何匹配,采用C
/documents/1.jpg -> configuration E
匹配到C,往下正则匹配到E
/documents/Abc.jpg -> config CC
最长匹配到C,往下正则顺序匹配到CC,不会往下到E
实际使用建议
所以实际使用中,个人觉得至少有三个匹配规则定义,如下:
#直接匹配网站根,通过域名访问网站首页比较频繁,使用这个会加速处理,官网如是说。
#这里是直接转发给后端应用服务器了,也可以是一个静态首页
# 第一个必选规则
location = / {
    proxy_pass http://tomcat:8080/index
}
# 第二个必选规则是处理静态文件请求,这是nginx作为http服务器的强项
# 有两种配置模式,目录匹配或后缀匹配,任选其一或搭配使用
location ^~ /static/ {
    root /webroot/static/;
}
location ~* \.(gif|jpg|jpeg|png|css|js|ico)$ {
    root /webroot/res/;
}
#第三个规则就是通用规则,用来转发动态请求到后端应用服务器
#非静态文件请求就默认是动态请求,自己根据实际把握
#毕竟目前的一些框架的流行,带.php,.jsp后缀的情况很少了
location / {
    proxy_pass http://tomcat:8080/
}



下面是 nginx.conf 配置信息
user root;
worker_processes  2;

error_log  /var/log/nginx/error.log warn;
pid        /var/run/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       /etc/nginx/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  /var/log/nginx/access.log  main;

    sendfile        on;
    
    tcp_nopush     on;

    keepalive_timeout  65;

    gzip  on;
    gzip_min_length 2k;
    gzip_buffers    4 32k;
    gzip_http_version 1.1;
    gzip_comp_level 6;
    gzip_types text/plain text/css text/javascript application/json application/javascript application/x-javascript application/xml;
    gzip_vary on;
    
		client_header_buffer_size 4k;
		open_file_cache max=102400 inactive=20s;
		open_file_cache_valid 30s;
		open_file_cache_min_uses 1;
		client_header_timeout 15;
		client_body_timeout 15;
		reset_timedout_connection on;
		send_timeout 15;
		server_tokens off;
		client_max_body_size 10m;
		
    include /etc/nginx/conf.d/*.conf;
}

猜你喜欢

转载自wangbanmin.iteye.com/blog/2395110
今日推荐