Package: nginx Version: 1.14.0-0ubuntu1.10 Priority: optional Section: web Origin: Ubuntu Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> Original-Maintainer: Debian Nginx Maintainers <pkg-nginx-maintainers@lists.alioth.debian.org> Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 44.0 kB Depends: nginx-core (<< 1.14.0-0ubuntu1.10.1~) | nginx-full (<< 1.14.0-0ubuntu1.10.1~) | nginx-light (<< 1.14.0-0ubuntu1.10.1~) | nginx-extras (<< 1.14.0-0ubuntu1.10.1~), nginx-core (>= 1.14.0-0ubuntu1.10) | nginx-full (>= 1.14.0-0ubuntu1.10) | nginx-light (>= 1.14.0-0ubuntu1.10) | nginx-extras (>= 1.14.0-0ubuntu1.10) Homepage: http://nginx.net Supported: 5y Download-Size: 3,596 B APT-Sources: http://mirrors.cloud.aliyuncs.com/ubuntu bionic-updates/main amd64 Packages Description: small, powerful, scalable web/proxy server Nginx ("engine X") is a high-performance web andreverse proxy server created by Igor Sysoev. It can be used bothas a standalone web server andas a proxy to reduce the loadon back-end HTTP or mail servers. . This is a dependency package to install either nginx-full (bydefault), nginx-light or nginx-extras.
N: There is1 additional record. Please use the '-a' switch to see it
= :用于不含正则表达式的 uri 前,要求请求字符串与 uri 严格匹配,如果匹配成功,就停止继续向下搜索并立即处理该请求 ~:用于表示 uri 包含正则表达式,并且区分大小写 ~*:用于表示 uri 包含正则表达式,并且不区分大小写 ^~:用于不含正则表达式的 uri 前,要求 Nginx 服务器找到标识 uri 和请求。字符串匹配度最高的 location 后,立即使用此 location 处理请求,而不再使用 location块中的正则 uri 和请求字符串做匹配。