Nginxを設定して、proxy_passを使用してリクエストを複数のバックエンドサービスに転送しようとしています。
それらのいくつかはサブフォルダーの下でのアクセスをサポートしていません。そのため、同じポートからそれらすべてにアクセスできるようにするために追加されたサブフォルダーを削除するために、書き換えを追加する必要があります。
書き換えを改善するためのヒントはありますか?
カール出力;
:~$ curl -I -k https://example.net/internal
HTTP/1.1 404 Not Found
Server: nginx/1.0.5
Date: Thu, 19 Jan 2012 22:30:46 GMT
Content-Type: text/html; charset=utf-8
Connection: keep-alive
Content-Length: 145
:~$ curl -I -k https://example.net/internal/
HTTP/1.1 200 OK
Server: nginx/1.0.5
Date: Thu, 19 Jan 2012 22:31:12 GMT
Content-Type: text/html
Connection: keep-alive
Content-Length: 1285
Accept-Ranges: bytes
Last-Modified: Wed, 18 Jan 2012 01:35:21 GMT
設定ファイル;
proxy.conf
location /internal {
rewrite ^/internal/(.*) /$1 break;
proxy_pass http://localhost:8081/internal;
include proxy.inc;
}
.... more entries ....
サイト対応/メイン
server {
listen 443;
server_name example.com;
server_name_in_redirect off;
include proxy.conf;
ssl on;
}
proxy.inc
proxy_connect_timeout 59s;
proxy_send_timeout 600;
proxy_read_timeout 600;
proxy_buffer_size 64k;
proxy_buffers 16 32k;
proxy_pass_header Set-Cookie;
proxy_redirect off;
proxy_hide_header Vary;
proxy_busy_buffers_size 64k;
proxy_temp_file_write_size 64k;
proxy_set_header Accept-Encoding '';
proxy_ignore_headers Cache-Control Expires;
proxy_set_header Referer $http_referer;
proxy_set_header Host $Host;
proxy_set_header Cookie $http_cookie;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-Host $Host;
proxy_set_header X-Forwarded-Server $Host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Ssl on;
proxy_set_header X-Forwarded-Proto https;
rewrite
をより醜くして、その文字列(/internal
)意図しない一致を許可せずに..(傾向がある場合は、((?:/.*|))
ここで、スラッシュは、または類似の獣ですが)醜いものは、保守性が低くなります。
私はちょうどこれを行うと言いがちです:
location /internal {
rewrite ^/internal$ https://example.net/internal/ permanent;
rewrite ^/internal/(.*) /$1 break;
proxy_pass http://localhost:8081/internal;
include proxy.inc;
}