ローカル マシンで実行されている nginx のプロキシ サーバー構成が機能しています。これは docker で実行されており、ゴースト ブログのローカル インスタンスを提供している node.js インスタンスも同様です。
古いブログ エンジンから移行したばかりなので、URL が変更されたため、新しい URL スキームに 301 (永続的) リダイレクトを返すように nginx を構成したいと考えています。rewrite
両方を使用してみproxy_redirect
ましたが、どちらの場合も 401 エラーが発生します。これが私のdefault.confです
# If we receive X-Forwarded-Proto, pass it through; otherwise, pass along the
# scheme used to connect to this server
map $http_x_forwarded_proto $proxy_x_forwarded_proto {
default $http_x_forwarded_proto;
'' $scheme;
}
# If we receive Upgrade, set Connection to "upgrade"; otherwise, delete any
# Connection header that may have been passed to this server
map $http_upgrade $proxy_connection {
default upgrade;
'' close;
}
gzip_types text/plain text/css application/javascript application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript;
log_format vhost '$host $remote_addr - $remote_user [$time_local] '
'"$request" $status $body_bytes_sent '
'"$http_referer" "$http_user_agent"';
access_log off;
# HTTP 1.1 support
proxy_http_version 1.1;
proxy_buffering off;
proxy_set_header Host $http_host;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $proxy_connection;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $proxy_x_forwarded_proto;
server {
server_name _; # This is just an invalid value which will never trigger on a real hostname.
listen 80;
access_log /var/log/nginx/access.log vhost;
return 503;
}
upstream localhost {
server 172.17.0.3:2368;
}
server {
server_name localhost;
listen 80;
access_log /var/log/nginx/access.log vhost;
location / {
# rewrite "^/archive/(\d{4}/\d{2}/\d{2}/.+)\.(?:aspx|html)$" /$1 break;
proxy_pass http://localhost;
# proxy_redirect "-*/archive/(\d{4}/\d{2}/\d{2}/.+)\.(?:aspx|html)" /$1;
}
}
rewrite または proxy_redirect ディレクティブのコメントを外しても、何も起こりません。リクエストは node.js に転送され、404 が返されます。
次のように複数の場所ディレクティブを使用する場合:
location /archive/ {
rewrite "^/archive/(\d{4}/\d{2}/\d{2}/.+)\.(?:aspx|html)$" /$1 break;
}
location / {
proxy_pass http://localhost;
}
nginx から 404 を受け取り、リクエストが node.js に送信されません。