Nginx详解六 Nginx动静分离

worker_processes  1;   events {     worker_connections  5; }   http {     include       mime.types;     default_type  application/octet-stream;     sendfile        on;     keepalive_timeout  65;       server {         listen       80;         server_name  10.158.1.140;           location /www/ {             root   html;             index  index.html index.htm;         }           # 通过请求分离         location /image/ {             root   /data/;             autoindex on;         }         # 根据扩展名分离         location ~ .*.(jpg|png|gif|css|js|swf|bmp|jsp|PHP|asp)$ {             root   /data/;             autoindex on;         }         # 根据客户端标识进行分离         location / {             if ($http_user_agent ~* "iphone") {                 proxy_pass http://dynamic_pools;             }             if ($http_user_agent ~* "android") {                 proxy_pass http://stack_pools;             }         }     } }

相关文章

Nginx (engine x) 是一个高性能的HTTP和反向代理服务,也是一...
本地项目配置 1 复制 luffy/settings/dev.py为prop.py 修改l...
nginx不仅可以隐藏版本信息,还支持自定义web服务器信息 先看...
一 、此次漏洞分析 1 nginx HTTP/2漏洞 [nginx-announce] ng...
###进入nginx 目录cd /usr/local/nginx###递归显示 2 级目录...
在cmd命令窗口输入下面命令进行查看 tasklist /fi "ima...