ホームページ >バックエンド開発 >PHPチュートリアル >Nginxでよく使われる公式モジュールについて
この記事では、Nginx のよく使われる公式モジュールを中心に紹介しますが、参考になると思いますので、皆さんに共有します。必要な友達は参考にしてください
Nginx采用模块化的架构,Nginx中大部分功能都是通过模块方式提供的,比如HTTP模块、Mail模块等。
Nginx 公式モジュール ドキュメント
--with-http_stub_status_module
Nginx に接続などの基本的なステータス情報へのアクセスを現在処理中です。
Syntax: stub_status; Default: — Context: server, location
server { # 添加的配置 location /nginx_status { stub_status; } ...其它代码省略... }
nginx -s reload
http:// にアクセスすると、次の内容が返されます
Active connections: 3 server accepts handled requests 7 7 16 Reading: 0 Writing: 1 Waiting: 2
アクティブな接続2. ngx_http_random_index_module: Nginx の現在のアクティブな接続数
accepts: 受信したクライアント接続の合計数
handled: 処理されたクライアント接続の合計数。一般に、このパラメータ値は、何らかのリソース制限 (worker_connections 制限など) に達していない限り、accept と同じです。
requests: クライアント リクエストの合計数
Reading: nginx が現在リクエスト ヘッダーを読み取っている接続の数
Writing: nginx が現在レスポンスを書き込んでいる接続の数
Reading: 数現在リクエストを待機しているアイドル状態のクライアントの数 接続数。これは通常、nginx が長い接続 (キープアライブ) をオンにしたときに発生します。
--with-http_random_index_module
Syntax: random_index on | off; Default: random_index off; Context: location
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
デフォルトでは、最初に見つかった文字列のみが置換されます。テキスト内の一致する文字列がすべて置換される場合は、オフに設定されます
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, locationUsage
server { location / { root /usr/share/nginx/html; index index.html; # 将首页的nginx替换为home sub_filter 'nginx' 'home'; # 不止替换第一个,而是替换response中所有的nginx sub_filter_once off; } ...其它代码省略... }
、次の内容を返すと、応答内のすべての nginx が home
[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>
関連する推奨事項:
php-fpm のプロセス番号管理について Nginx にモジュールを追加する方法 Nginx とその基本パラメータ構成をすばやくセットアップする以上がNginxでよく使われる公式モジュールについての詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。