`
stefan_li
  • 浏览: 5295 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
最近访客 更多访客>>
社区版块
存档分类
最新评论

在nginx中为什么要尽量避免使用regex location

 
阅读更多
这是nginx的作者Igor在邮件列表中的回答:

A:I'm wondering about the regex usage in location though - this is one of
the things I like very much about nginx. Can you please elaborate the reasons for avoiding them?


Q:The difference is how nginx processes location.

If you use only prefix or exact locations, then nginx looks up
the longest match nevertheless of order of locations in configuration file.
This allows you to have hundreds or thousands locations without worrying
how a new location will affect the existant configuration.

Regex locations depend on order, so during adding a new location
you have to look though whole configuration to see if the new location
will affect it.

A man thinks usually that he creates a small configuration with regexes
and it will work always fine. But configuration usually grows eventually
and at some point it become a difficult task to add new locations.

Rewrite rules aggravate this more.
分享到:
评论

相关推荐

    nginx中location中关于proxy_pass和rewrite的应用.rar

    在`location`块中,`proxy_pass`和`rewrite`可以一起使用,先执行`rewrite`,然后转发给`proxy_pass`。这种组合使得Nginx能够根据重写后的URL找到正确的上游服务器,并处理请求。例如: ``` location /api { ...

    nginx设置rewrite规则

    在LNMP集成环境中,如果使用的是预装的Nginx,例如在/usr/local/nginx/conf/目录下有一个名为"wordparss"的文件,这就是用来写入rewrite规则的地方。你可以在这个文件中按照Nginx的语法编写规则,它与Apache的`....

    nginx配置location总结location正则写法及rewrite规则写法

    - `if` 指令在 Nginx 配置中用于基于某些条件执行不同的逻辑,但应谨慎使用,因为它们可能引起不可预期的行为。 - Nginx 提供了一系列全局变量,如 `$request_uri`,`$host`,`$args` 等,可以用于 `if` 指令的...

    Nginx关于Rewrite执行顺序详解.docx

    如果一个URL被重写后再次匹配到同一个location块,且这个location块还有Rewrite规则,那么Nginx会在达到设置的最大循环次数(默认为10)时停止重写,并返回500 Internal Server Error错误。 四、使用技巧与注意事项...

    Nginx配置之location的匹配优先级浅析

    在实际配置中,合理安排`location`的顺序和类型可以显著提高Nginx处理请求的效率。例如,通常建议将精准匹配和`^~`类型的普通匹配放在前面,因为它们一旦匹配就会立即终止搜索,避免不必要的计算。正则匹配应谨慎...

    如何将 Nginx 配置为Web服务器的方法

    在本文中,我们将深入探讨如何配置Nginx作为Web服务器。Nginx是一款高性能的HTTP和反向代理服务器,以其高效的性能和灵活的配置而受到广泛使用。配置Nginx作为Web服务器的关键在于设置虚拟服务器(Virtual Servers)...

    详解nginx中location、rewrite用法总结

    **Nginx中的Location与Rewrite用法详解** 在Nginx服务器配置中,`location`和`rewrite`是两个非常关键的指令,用于处理HTTP请求的路由和URL重写。理解并熟练运用这两个指令对于优化网站性能和提供灵活的URL管理至关...

    nginx rewrite规则

    但需要注意的是,`if`语句在Nginx中的使用应当谨慎,因为它的执行时机可能引发性能问题。 **6. 与location的关系** `rewrite`规则通常在`location`块中使用,根据匹配到的URL执行不同的重写策略。`location`的匹配...

    nginx进阶vip - 第二课笔记1

    在本篇笔记中,我们将深入探讨Nginx的高级特性,包括如何管理和控制Nginx进程,以及如何配置虚拟主机和使用Location指令进行URL路由。首先,我们关注Nginx的信号管理: 1. **TERM** 和 **INT** 信号:这两个信号...

    详解nginx配置location总结及rewrite规则写法

    在Nginx的配置文件中,location指令用于定义不同的URI请求应该如何被处理,而rewrite规则用于实现URL的重写,这通常用于URL的优化、实现伪静态等功能。 location指令是Nginx配置中非常核心的部分,它可以基于请求的...

    PHP7.2+NGINX Linux环境搭建与脚本

    - 配置Nginx的虚拟主机以处理PHP请求:在`/usr/local/nginx/conf/nginx.conf`中添加一个server段,使用`location ~ \.php$`来指定PHP处理规则。 - 启动Nginx和PHP-FPM:`/usr/local/nginx/sbin/nginx` 和 `/usr/...

    Nginx实现多虚拟主机配置.docx

    在这个例子中,当访问 `/users/username` 时,Nginx会重写URI为 `/show?user=username`,然后匹配并处理`/show`的`location`。 总之,`rewrite`模块是Nginx中处理动态URL和实现URL路由的关键工具,通过巧妙地组合...

    详解nginx rewrite和根据url参数location

    可以在 `location` 块中使用正则表达式来捕获 URL 参数。例如,匹配所有包含 `id` 参数的请求: ```nginx location ~ ^/item/(\d+)$ { # 处理包含 id 参数的请求 } ``` 此处,`(\d+)` 是一个捕获组,可以使用...

    PHP(FastCGI)在Nginx的alias下出现404错误的解决方法

    在Nginx的官方wiki中如下描述 The alias directive cannot be used inside a regex-specified location. If you need to do this you must use a combination of rewrite and root. 在实际使用中alias下面的php返回...

    Nginx Rewrite使用场景及代码案例详解

    `break`标志用于停止处理当前location中的后续rewrite规则;而`last`则跳出当前location作用域。 **全局变量使用:** 在Nginx中,有一些内置的全局变量,例如`$host`、`$server_port`、`$request_uri`、`$document...

    thinkphp在低版本Nginx 下支持PATHINFO的方法分享

    要使Nginx支持PATHINFO,我们需要在Nginx的配置文件`nginx.conf`中添加或修改location块。找到这个文件的位置,通常是在`/usr/local/nginx/conf/nginx.conf`,或者使用`find / | grep nginx.conf`命令来查找。在`...

    Linux源码安装MySQL+MySQL主从+Nginx+Nginx负载均衡+redis+php+phpredis+tomcat

    1. 在Nginx配置文件中添加负载均衡配置,例如使用轮询策略: ```nginx upstream backend { server backend1.example.com; server backend2.example.com; server backend3.example.com; } location / { ...

    CentOS_下安装Nginx

    在CentOS系统中安装Nginx是一个常见的任务,Nginx是一个高性能的Web服务器和反向代理服务器,常用于处理静态文件和动态内容的分发。以下是在CentOS上安装Nginx及其与PHP和MySQL集成的详细步骤。 首先,确保你的系统...

    nginx rewrite规则怎么配置-.docx

    在Web服务器优化和URL管理中,Nginx的Rewrite规则扮演着重要角色。它允许我们根据特定条件重写请求的URL,从而实现动态URL到静态URL的转换、URL规范化、路径重定向等。Nginx的Rewrite规则可以在配置文件的不同位置...

Global site tag (gtag.js) - Google Analytics