🥬

Nginxでデフォ?に入ってたモジュールメモ

2021/03/24に公開

僕の環境で多分勝手に入ってたモジュールのメモです
Ubuntuです

http_ssl_module

名前のままsslのHTTPSのやつ
http://mogile.web.fc2.com/nginx/http/ngx_http_ssl_module.html

http_stub_status_module

基本的なステータス系らしい
http://mogile.web.fc2.com/nginx/http/ngx_http_stub_status_module.html

http_realip_module

よくわかんなかった
ヘッダのアドレスから接続された風にするもの?
わかんない
リバプロで使ってる時にオリジンに接続元を教える用?
http://mogile.web.fc2.com/nginx/http/ngx_http_realip_module.html

http_auth_request_module

認証が挟めるみたい
認証用アドレスの返事が200かどうかで返すかどうからしい
http://mogile.web.fc2.com/nginx/http/ngx_http_auth_request_module.html

http_dav_module

WebDAVっていうHTTPのファイル共有?ってのがあるらしい
それようのなにからしい
http://mogile.web.fc2.com/nginx/http/ngx_http_dav_module.html

http_slice_module

返事を分割できる?
全然わからなかった
なんかテキストがaddition_moduleのになってるから英語の見たほうがいいかも
http://mogile.web.fc2.com/nginx/http/ngx_http_slice_module.html

http_addition_module

ボディーの前後になんか足せるみたい
指定するのはURLなのかな
返事のテキストが入るのかな?
http://mogile.web.fc2.com/nginx/http/ngx_http_addition_module.html

http_gunzip_module

gzipを解答してくれるみたい
コンテンツエンコードがgzipのとき?
http://mogile.web.fc2.com/nginx/http/ngx_http_gunzip_module.html

http_gzip_static_module

サーバーから渡す時にgzipで返せるみたい
これなかったらどうなるんだろうか
そのままgzファイル返らないの?
なんか返事をgzipにしたとき毎回圧縮するのを
ファイルあったらそっち送るみたいにするのかな?
キャッシュするってことかな?
http://mogile.web.fc2.com/nginx/http/ngx_http_gzip_static_module.html

http_image_filter_module

画像を返す時にリサイズとか圧縮とかしてくれるのかな
http://mogile.web.fc2.com/nginx/http/ngx_http_image_filter_module.html

http_sub_module

返事の中身の文字列置き換え
http://mogile.web.fc2.com/nginx/http/ngx_http_sub_module.html

http_xslt_module

XSLT?(XML?)関係の変換のなにからしい
http://mogile.web.fc2.com/nginx/http/ngx_http_xslt_module.html

stream_ssl_module

たぶんHTTPじゃないSSL用だと思う
http://mogile.web.fc2.com/nginx/stream/ngx_stream_ssl_module.html

mail_ssl_module

たぶんメール用のSSLだと思う
http://mogile.web.fc2.com/nginx/nginx1.11.8/mail/ngx_mail_ssl_module.html

以上メモでした

Discussion