ブログの移行に当たってnginxでのリダイレクト設定をしていたのですが、そこでmapモジュールを使ったら便利だったので使い方を紹介していきたいと思います。
単純なnginxのリダイレクトについて
nginxのリダイレクト設定自体は結構簡単で、例えば古いドメインから新しいドメインに書き換える場合は以下のような感じで簡単にリダイレクト設定ができるわけです。
1
2
3
4
5
|
server {
listen 80;
server_name www.polidog.jp;
rewrite ^ $scheme://polidog.jp$request_uri permanent;
}
|
リダイレクト先のURLにある程度法則性がある場合は結構サクッとリダイレクトがかけますよね。
世の中めんどくさいリダイレクトを依頼される事がある
まあ正規表現でいけるようなリダイレクトの場合はいいんですよ。
ただそうじゃないことってのも夜中ありますよね。
様々な理由でまったく違うページにリダイレクトするとか、、、
そして、ディレクターから大量のリダイレクト表をもらうなんてことがあります。
そんな時に便利なのが ngx_http_map_module です。
HttpMapModuleとはなにか?
ngx_http_map_module
標準で入ってるモジュールであるngx_http_map_module
は、configure時にdisableにすることによって、無効化できるわけですが、yumとかaptだったら恐らく標準でenableになっているかと思います。
configureのオプションを確認するにはnginx -V
で確認することができます。
1
2
3
4
5
|
$ nginx -V | grep abceeeee
nginx version: nginx/1.0.15
built by gcc 4.4.7 20120313 (Red Hat 4.4.7-11) (GCC)
TLS SNI support enabled
configure arguments: --prefix=/usr/share/nginx --sbin-path=/usr/sbin/nginx --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --http-client-body-temp-path=/var/lib/nginx/tmp/client_body --http-proxy-temp-path=/var/lib/nginx/tmp/proxy --http-fastcgi-temp-path=/var/lib/nginx/tmp/fastcgi --http-uwsgi-temp-path=/var/lib/nginx/tmp/uwsgi --http-scgi-temp-path=/var/lib/nginx/tmp/scgi --pid-path=/var/run/nginx.pid --lock-path=/var/lock/subsys/nginx --user=nginx --group=nginx --with-file-aio --with-ipv6 --with-http_ssl_module --with-http_realip_module --with-http_addition_module --with-http_xslt_module --with-http_image_filter_module --with-http_geoip_module --with-http_sub_module --with-http_dav_module --with-http_flv_module --with-http_mp4_module --with-http_gzip_static_module --with-http_random_index_module --with-http_secure_link_module --with-http_degradation_module --with-http_stub_status_module --with-http_perl_module --with-mail --with-mail_ssl_module --with-debug --with-cc-opt='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic' --with-ld-opt=-Wl,-E
|
で、肝心の何をするモジュールかというと
Creates a new variable whose value depends on values of one or more of the source variables specified in the first parameter.
ということなので、
最初のパラメータで指定された変数の値とマッチする場合、新しい変数を作成します。
って感じの意味合いでいいのかなと思います。(自信ないけど・・・・
簡単にサンプルを見せると
1
2
3
4
5
6
7
|
map "test" $new {
"test" "test2"
}
if ($new = "test2") {
...
}
|
この場合だとtestという文字にマッチした場合は$new
という変数にtest2
という値がはいることになります。
ちなみにマッチしない場合は$new
には値がはいりません。
つまり条件判定で以下のようにかければ、マッチしているかどうかがわかるわけです。
1
2
3
|
if ($new) {
# マッチした場合の記述
}
|
uriを指定したリダイレクト設定の場合
nginxには$request_uri
という変数がありますね。
それとmapを組み合わせれば、リダイレクト表に合わせたリダイレクト設定ができます。
例えば、www.polidog.jp
からpolidog.jp
への記事をリダイレクトさせたい場合なんかは、こんな感じで設定します。
1
2
3
|
map $request_uri $new {
~^/2015/01/06/.* http://polidog.jp/2015/01/06/akeome/;
}
|
あとは$new
変数に値が入った場合リダイレクトする設定を書けばいいんで、だいたいこんな感じになりますね。
1
2
3
4
5
6
7
8
9
10
11
12
|
map $request_uri $new {
~^/2015/01/06/.* http://polidog.jp/2015/01/06/akeome/;
}
server {
listen 80;
server_name www.polidog.jp;
if ($new) {
rewrite ^ $new permanent;
}
}
|
includeを利用する
map {}
の中にどんどん記載していくのはいいんですが、nginxのconfに書き続けるのは若干微妙かなぁーと思います。
そんな時をはincludeを利用しましょう
1
2
3
4
5
6
7
8
9
10
11
12
|
map $request_uri $new {
include /etc/nginx/redirect_list.map
}
server {
listen 80;
server_name www.polidog.jp;
if ($new) {
rewrite ^ $new permanent;
}
}
|
で、/etc/nginx/redirect_list.map
にはこんな感じで記述します。
1
2
|
~^/2015/01/06/.* http://polidog.jp/2015/01/06/akeome/;
~^/2015/12/31/.* http://polidog.jp/2015/12/31/fruikaeri/;
|
まとめ
nginxとmapを使えば、大量のリダイレクト設定も簡単にできてしまいます。
ぜひ便利な機能なので使っていきましょう。