ようやくというかなんというか、このブログを Nginx のリバースプロキシに対応させました。
今回はそのソースコードのメモがメインの記事。未来の自分のための記事です。
WordPress を1つだけインストールする場合の書き方
proxy_cache_key
のあたり、WordPress の Nginx Cache Controller プラグインとの相性もあるようで、いろいろ試してみた残骸も残しておきます。
コード中、いろいろ調べて参考サイトから取り入れたコードもあるので、それは参考サイトとして後述します。
1 2 3 4 5 6 |
(省略) #gzip on; server_tokens off; proxy_cache_path /var/cache/nginx/cache/example levels=1:2 keys_zone=zone1:4m inactive=7d max_size=50m; include /etc/nginx/conf.d/*.conf; (省略) |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 |
############### example.jp ############### upstream backend { server 127.0.0.1:8080; } server { listen 80; server_name example.jp; add_header X-Cache $upstream_cache_status; add_header Cache-Control max-age=0; access_log /var/log/nginx/example.jp_80.access.log main; root /usr/share/nginx/example.jp; index index.php index.html; proxy_set_header Host $host; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; location = /favicon.ico { log_not_found off; } location /wp-admin { proxy_pass http://backend; } location /wp-login.php { proxy_pass http://backend; } # location = / { # rewrite ^(.+)$ /index.php; # } location = /wp-admin { rewrite ^(.+)$ /wp-admin/index.php; } location / { set $mobile ""; proxy_pass http://backend; proxy_no_cache $do_not_cache; proxy_cache_bypass $do_not_cache; proxy_cache zone1; if ($http_user_agent ~* '(iPhone|iPod|incognito|webmate|Android|dream|CUPCAKE|froyo|BlackBerry|webOS|s8000|bada|IEMobile|Googlebot-Mobile|AdsBot-Google)') { set $mobile '@mobile'; } if ($http_user_agent ~* '(DoCoMo|UP.Browser|SoftBank|WILLCOM)') { set $do_not_cache 1; } # (*1)クッキーにより、ログイン中、コメント書き込み中、記事書き込み中の判断をします。 if ($http_cookie ~ ^.*(comment_author_|wordpress_logged_in|wp-postpass_).*$) { set $do_not_cache 1; } # (*1)Wordpressの専用ディレクトリはキャッシュなし。 if ($request_uri ~ "^/wp-admin/.*"){ set $do_not_cache 1; } if ($request_uri ~ "^/wp-content/.*"){ set $do_not_cache 1; } if ($request_uri ~ "^/wp-includes/.*"){ set $do_not_cache 1; } # (*1)Wordpressのcronはキャッシュなし。 if ($request_uri ~ "^/wp-cron.php.*"){ set $do_not_cache 1; } # (*1)Wordpressのloginはキャッシュなし。 if ($request_uri ~ "^/wp-login.php.*"){ set $do_not_cache 1; } # proxy_cache_key $scheme://$proxy_host$uri$is_args$args$mobile; #proxy_cache_key $scheme$proxy_host$uri$is_args$args$mobile; #proxy_cache_key $scheme://$host$request_uri$is_args$args$mobile; ##proxy_cache_key "$scheme://$host$request_uri$mobile"; #proxy_cache_key "$scheme://$host$request_uri"; #proxy_cache_key $scheme$proxy_host$uri$is_args$args; proxy_cache_key "$scheme$proxy_host$uri$is_args$args$mobile"; proxy_cache_valid 200 1d; } } server { listen 8080; server_name example.jp; access_log /var/log/nginx/example.jp_8080.access.log main; root /usr/share/nginx/example.jp; index index.php index.html; add_header X-Cache $upstream_cache_status; # fastcgi_ignore_headers Cache-Control Expires Set-Cookie; proxy_set_header Host $host; set_real_ip_from 127.0.0.1; real_ip_header X-Forwarded-For; location / { root /usr/share/nginx/example.jp; index index.php index.html index.htm; try_files $uri $uri/ /index.php?$args; } location ~ \.php { root /usr/share/nginx/example.jp; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME /usr/share/nginx/example.jp/$fastcgi_script_name; include fastcgi_params; fastcgi_pass_header "X-Accel-Redirect"; fastcgi_pass_header "X-Accel-Expires"; } } |
マルチサイト対応(ヴァーチャルホスト対応)の書き方
実際は sub1.example.jp の挙動しか確認できていないので注意。
example.jp と sub2.example.jp は sub1.example.jp を元に更に編集が必要。
なお、backend2 から始まっているのは上記シングルサイトの設定を残したまま続けたからで、本来であれば “backend” “127.0.0.1:8080” を使って構わない。
1 2 3 4 |
proxy_cache_path /var/cache/nginx/cache/example levels=1:2 keys_zone=zone2:4m inactive=7d max_size=50m; proxy_cache_path /var/cache/nginx/cache/sub1 levels=1:2 keys_zone=zone3:4m inactive=7d max_size=50m; proxy_cache_path /var/cache/nginx/cache/sub2 levels=1:2 keys_zone=zone4:4m inactive=7d max_size=50m; include /etc/nginx/conf.d/*.conf; |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 |
############### example.jp ############### upstream backend2 { server 127.0.0.1:(プライベートポート番号); } server { listen 80; server_name example.jp; add_header X-Cache $upstream_cache_status; access_log /var/log/nginx/example.jp_80.access.log main; root /usr/share/nginx/example.jp; index index.php index.html; proxy_set_header Host $host; location = /favicon.ico { log_not_found off; } location /wp-admin { proxy_pass http://backend2; } location /wp-login.php { #proxy_set_header Host example.jp; proxy_pass http://backend2; } # location = / { # rewrite ^(.+)$ /index.php; # } location = /wp-admin { rewrite ^(.+)$ /wp-admin/index.php; } location / { set $mobile ""; # proxy_set_header Host example.jp; proxy_pass http://backend2; proxy_no_cache $do_not_cache; proxy_cache_bypass $do_not_cache; proxy_cache zone2; if ($http_user_agent ~* '(iPhone|iPod|incognito|webmate|Android|dream|CUPCAKE|froyo|BlackBerry|webOS|s8000|bada|IEMobile|Googlebot-Mobile|AdsBot-Google)') { set $mobile '@mobile'; } if ($http_user_agent ~* '(DoCoMo|UP.Browser|SoftBank|WILLCOM)') { set $do_not_cache 1; } proxy_cache_key $scheme$proxy_host$uri$is_args$args$mobile; #proxy_cache_key $scheme://$host$request_uri$is_args$args$mobile; #proxy_cache_key "$scheme://$host$request_uri$mobile"; #proxy_cache_key "$scheme://$host$request_uri"; #proxy_cache_key $scheme$proxy_host$uri$is_args$args; proxy_cache_valid 200 1d; } } server { listen (プライベートポート番号); server_name example.jp; access_log /var/log/nginx/example.jp_8080.access.log main; root /usr/share/ngin/example.jp; index index.php index.html; add_header X-Cache $upstream_cache_status; # fastcgi_ignore_headers Cache-Control Expires Set-Cookie; proxy_set_header Host $host; location / { root /usr/share/nginx/example.jp; index index.php index.html index.htm; try_files $uri $uri/ /index.php?$args; } location ~ \.php { root /usr/share/nginx/example.jp; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME /usr/share/nginx/example.jp/$fastcgi_script_name; include fastcgi_params; fastcgi_pass_header "X-Accel-Redirect"; fastcgi_pass_header "X-Accel-Expires"; } } ############### sub1.example.jp ############### upstream backend3 { server 127.0.0.1:(プライベートポート番号); } server { listen 80; server_name sub1.example.jp; add_header X-Cache $upstream_cache_status; access_log /var/log/nginx/sub1.example.jp_80.access.log main; root /usr/share/nginx/example.jp; index index.php index.html; proxy_set_header Host $host; location = /favicon.ico { log_not_found off; } location /wp-admin { proxy_pass http://backend3; } location /wp-login.php { proxy_pass http://backend3; } # location = / { # rewrite ^(.+)$ /index.php; # } location = /wp-admin { rewrite ^(.+)$ /wp-admin/index.php; } location / { set $mobile ""; proxy_pass http://backend3; proxy_no_cache $do_not_cache; proxy_cache_bypass $do_not_cache; proxy_cache zone3; if ($http_user_agent ~* '(iPhone|iPod|incognito|webmate|Android|dream|CUPCAKE|froyo|BlackBerry|webOS|s8000|bada|IEMobile|Googlebot-Mobile|AdsBot-Google)') { set $mobile '@mobile'; } if ($http_user_agent ~* '(DoCoMo|UP.Browser|SoftBank|WILLCOM)') { set $do_not_cache 1; } # (*1)クッキーにより、ログイン中、コメント書き込み中、記事書き込み中の判断をします。 if ($http_cookie ~ ^.*(comment_author_|wordpress_logged_in|wp-postpass_).*$) { set $do_not_cache 1; } # (*1)Wordpressの専用ディレクトリはキャッシュなし。 if ($request_uri ~ "^/wp-admin/.*"){ set $do_not_cache 1; } if ($request_uri ~ "^/wp-content/.*"){ set $do_not_cache 1; } if ($request_uri ~ "^/wp-includes/.*"){ set $do_not_cache 1; } # (*1)Wordpressのcronはキャッシュなし。 if ($request_uri ~ "^/wp-cron.php.*"){ set $do_not_cache 1; } # (*1)Wordpressのloginはキャッシュなし。 if ($request_uri ~ "^/wp-login.php.*"){ set $do_not_cache 1; } # proxy_cache_key $scheme://$proxy_host$uri$is_args$args$mobile; #proxy_cache_key $scheme$proxy_host$uri$is_args$args$mobile; #proxy_cache_key $scheme://$host$request_uri$is_args$args$mobile; proxy_cache_key "$scheme://$host$request_uri$mobile"; #proxy_cache_key "$scheme://$host$request_uri"; #proxy_cache_key $scheme$proxy_host$uri$is_args$args; proxy_cache_valid 200 1d; } } server { listen (プライベートポート番号); server_name sub1.example.jp; access_log /var/log/nginx/sub1.example.jp_8080.access.log main; root /usr/share/nginx/example.jp; index index.php index.html; add_header X-Cache $upstream_cache_status; # fastcgi_ignore_headers Cache-Control Expires Set-Cookie; proxy_set_header Host $host; location / { root /usr/share/nginx/example.jp; index index.php index.html index.htm; try_files $uri $uri/ /index.php?$args; } location ~ \.php$ { root /usr/share/nginx/example.jp; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME /usr/share/nginx/example.jp/$fastcgi_script_name; include fastcgi_params; fastcgi_pass_header "X-Accel-Redirect"; fastcgi_pass_header "X-Accel-Expires"; } } ############### sub2.example.jp ############### upstream backend4 { server 127.0.0.1:(プライベートポート番号); } server { listen 80; server_name sub2.example.jp; add_header X-Cache $upstream_cache_status; access_log /var/log/nginx/sub2.example.jp_80.access.log main; root /usr/share/nginx/example.jp; index index.php index.html; proxy_set_header Host $host; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; location = /favicon.ico { log_not_found off; } location /wp-admin { proxy_pass http://backend4; } location /wp-login.php { proxy_pass http://backend4; } # location = / { # rewrite ^(.+)$ /index.php; # } location = /wp-admin { rewrite ^(.+)$ /wp-admin/index.php; } location / { set $mobile ""; proxy_pass http://backend4; proxy_no_cache $do_not_cache; proxy_cache_bypass $do_not_cache; proxy_cache zone4; if ($http_user_agent ~* '(iPhone|iPod|incognito|webmate|Android|dream|CUPCAKE|froyo|BlackBerry|webOS|s8000|bada|IEMobile|Googlebot-Mobile|AdsBot-Google)') { set $mobile '@mobile'; } if ($http_user_agent ~* '(DoCoMo|UP.Browser|SoftBank|WILLCOM)') { set $do_not_cache 1; } proxy_cache_key $scheme://$host$request_uri$is_args$args$mobile; #proxy_cache_key "$scheme://$host$request_uri$mobile"; #proxy_cache_key "$scheme://$host$request_uri"; #proxy_cache_key $scheme$proxy_host$uri$is_args$args; proxy_cache_valid 200 1d; } } server { listen (プライベートポート番号); server_name sub2.example.jp; access_log /var/log/nginx/sub2.example.jp_8080.access.log main; root /usr/share/nginx/example.jp; index index.php index.html; add_header X-Cache $upstream_cache_status; # fastcgi_ignore_headers Cache-Control Expires Set-Cookie; proxy_set_header Host $host; set_real_ip_from 127.0.0.1; real_ip_header X-Forwarded-For; location / { root /usr/share/nginx/example.jp; index index.php index.html index.htm; try_files $uri $uri/ /index.php?$args; } location ~ \.php$ { root /usr/share/nginx/example.jp; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME /usr/share/nginx/example.jp/$fastcgi_script_name; include fastcgi_params; fastcgi_pass_header "X-Accel-Redirect"; fastcgi_pass_header "X-Accel-Expires"; } } |
今後の課題
1つは、WordPressのコメント投稿者のIPアドレスがサーバのローカルIPになってしまうのでそれを本来のグローバルIPに戻すこと。プラグイン「狂骨」のIPアドレスも同様。一応、グローバルIPにするための説明が書かれているサイトもあったけど、試してみても変化がなかったので今度じっくりやってみることに。
→何度か見かけていたページのコードのコピペでできた。これ見落としてたのは、疲れてたからだろうか…。(加筆:2018.03.23 18:40 / 修正:2020.05.30 リンク先が変わっていたので変更)
Nginx リバースプロキシで正しいIPアドレスを取得 – HomeMadeGarbage
それと、このブログはさくらのクラウドからAWS(t2.micro)に移転したのだけど、移行後2、3日は500エラーやデータベース接続確立エラーとなることが頻発したので、今は安定しているようだけどもうしばらく様子を見て状況に応じてインスタンスの変更やGCPの検討も、視野に入れる。
リバースプロキシ、ヴァーチャルホストのSSL対応
参考サイト
Nginx + WordPress proxy cache篇
Nginx で WordPress を使う時の注意点 | レンタルサーバー・自宅サーバー設定・構築のヒント
WordPressプラグインNginx Cache ControllerでPC用キャッシュとスマホ用キャッシュの両方を削除する設定メモ
Nginx Cache Controller を使うためにヘッダーについて勉強!設定編集いたしました♪ – oki2a24
nginxでリバースプロキシキャッシュして、キャッシュを削除する機能を付ける – Qiita
Nginxでリバースプロキシを使いつつVirtual Hostを設定してみた | NUCOWORKS BLOG
TCPやUDPにおけるポート番号の一覧 – Wikipedia