>백엔드 개발 >PHP 튜토리얼 >일반적으로 사용되는 Nginx 공식 모듈 정보

일반적으로 사용되는 Nginx 공식 모듈 정보

不言
不言원래의
2018-07-13 16:08:171768검색

이 글에서는 주로 사용되는 Nginx의 공식 모듈을 소개하는데, 이는 특정 참조 가치가 있습니다. 이제 모든 사람과 공유합니다. 필요한 친구들이 참조할 수 있습니다.

Nginx에서 일반적으로 사용되는 공식 모듈

Nginx采用模块化的架构,Nginx中大部分功能都是通过模块方式提供的,比如HTTP模块、Mail模块等。

Nginx 공식 모듈 문서

1 .ngx_http_stub_status_module

컴파일 옵션

--with-http_stub_status_module

Function

Nginx의 현재 처리 연결과 같은 기본 상태 정보에 대한 액세스 제공

Syntax

Syntax:        stub_status;
Default:    —
Context:    server, location

Usage

  • nginx 구성 파일의 구성 아래 server

server {
    # 添加的配置
    location /nginx_status {
        stub_status;
    }
    
    ...其它代码省略...
}
  • 수정 후 구성 파일 다시 로드 nginx -s reloadnginx -s reload

  • 在浏览器中访问 http://<ip>/nginx_status,会返回如下内容

Active connections: 3 
server accepts handled requests
 7 7 16 
Reading: 0 Writing: 1 Waiting: 2
Active connections: Nginx当前活跃链接数
accepts: 接收客户端连接的总次数
handled: 处理客户端连接的总次数。一般来说,这个参数值与accepts相同,除非已经达到了一些资源限制(例如worker_connections限制)
requests: 客户端请求的总次数
Reading: 当前nginx正在读取请求头的连接数
Writing: 当前nginx正在写入响应的连接数
Reading: 当前正在等待请求的空闲客户端连接数。一般是在nginx开启长连接(keep alive)情况下出现。

2. ngx_http_random_index_module

编译选项

--with-http_random_index_module

作用

在主目录中选择一个随机文件作为主页

语法

Syntax:        random_index on | off;
Default:    random_index off;
Context:    location

用法

  • 在nginx配置文件中的 server 下配置

server {
    location / {
        root /usr/share/nginx/html;
        #添加这一行开启随机主页模块
        random_index on;
        #把指定的主页注释掉
        #index index.html index.htm;
    }
    
    ...其它代码省略...
}

3. ngx_http_sub_module

编译选项

--with-ngx_http_sub_module

作用

通过替换一个指定的字符串来修改响应

语法

指定被替换的字符和替代字符

Syntax:    sub_filter string replacement;
Default:   —
Context:    http, server, location

Last-Modified,用于校验服务端内容是否更改,主要用于缓存场景

Syntax:       sub_filter_last_modified on | off;
Default:   sub_filter_last_modified off;
Context:    http, server, location

默认只替换找到的第一个字符串,若替换文本中的所有匹配的字符串,则置为off

Syntax:       sub_filter_once on | off;
Default:    sub_filter_once on;
Context:    http, server, location

除了“text/html”之外,还可以用指定的MIME类型替换字符串。特殊值‘*’匹配任意MIME类型

Syntax:       sub_filter_types mime-type ...;
Default:    sub_filter_types text/html;
Context:    http, server, location

用法

  • 在nginx配置文件中的 server 下配置

server {
    location / {
        root   /usr/share/nginx/html;
        index  index.html;
        # 将首页的nginx替换为home
        sub_filter 'nginx' 'home';
        # 不止替换第一个,而是替换response中所有的nginx
        sub_filter_once off;
    }
    
    ...其它代码省略...
}
  • 修改后重新载入配置文件nginx -s reload

  • curl localhost

브라우저에서 http://<ip>/nginx_status를 방문하세요. , 다음 내용을 반환합니다

[vagrant/etc/nginx]$ curl localhost
<!DOCTYPE html>
<html>
<head>
<title>Welcome to home!</title>
<style>
    body {
        width: 35em;
        margin: 0 auto;
        font-family: Tahoma, Verdana, Arial, sans-serif;
    }
</style>
</head>
<body>
<h1>Welcome to home!</h1>
<p>If you see this page, the home web server is successfully installed and
working. Further configuration is required.</p>

<p>For online documentation and support please refer to
<a href="http://home.org/">home.org</a>.<br/>
Commercial support is available at
<a href="http://home.com/">home.com</a>.</p>

<p><em>Thank you for using home.</em></p>
</body>
</html>
활성 연결: Nginx의 현재 활성 연결 수accept: 수신된 총 클라이언트 연결 수 Writing: nginx가 현재 응답을 쓰고 있는 연결 수
2.ngx_http_random_index_module
컴파일 옵션🎜🎜홈 디렉토리에서 임의의 파일을 홈페이지로 선택🎜🎜🎜Syntax🎜🎜rrreee🎜🎜사용법 🎜 🎜🎜🎜🎜 구성 파일🎜🎜🎜rrreee🎜3.ngx_http_sub_module🎜🎜🎜Compilation option🎜🎜rrreee🎜🎜Function🎜🎜🎜지정된 문자열을 대체하여 응답을 수정🎜🎜🎜Syntax🎜 🎜🎜대체된 문자를 지정하고 대체 문자🎜rrreee🎜Last-Modified, 서버 내용이 변경되었는지 확인하는 데 사용되며 주로 캐싱 시나리오에 사용됩니다.🎜rrreee🎜기본적으로 발견된 첫 번째 문자열만 텍스트에서 일치하는 문자열이 모두 대체되면 설정됩니다. it to off🎜rrreee🎜"text/html" 외에도 문자열을 지정된 MIME 유형으로 바꿀 수도 있습니다. 특수 값 '*'는 모든 MIME 유형과 일치합니다🎜rrreee🎜🎜Usage🎜🎜🎜🎜🎜nginx 구성 파일의 서버 아래에 구성🎜🎜🎜rrreee🎜🎜🎜수정 후 구성 파일 다시 로드 nginx -s reload🎜🎜🎜🎜<code>curl localhost, 다음 내용을 반환하면 응답의 모든 nginx가 home🎜🎜🎜rrreee🎜으로 대체된 것을 확인할 수 있습니다. 위는 이 기사의 전체 내용입니다. 모든 분들의 학습에 도움이 되기를 바랍니다. 더 많은 관련 내용을 보려면 PHP 중국어 웹사이트를 주목해주세요! 🎜🎜관련 권장사항: 🎜🎜🎜php-fpm의 프로세스 번호 관리 정보🎜🎜🎜🎜Nginx에 모듈을 추가하는 방법🎜🎜🎜🎜🎜빠르게 Nginx를 구축하고 기본 매개변수를 구성하세요🎜🎜🎜

위 내용은 일반적으로 사용되는 Nginx 공식 모듈 정보의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.