19
12

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

curlで異なるFQDNにhttpsアクセスする方法

Last updated at Posted at 2018-02-15

やりたいこと

curlを使って、test.example.com(10.0.0.2) というサーバーに対して https://www.example.com  としてアクセスしたい

回答 1

/etc/hostsかきかえる(よくある)

でも、書き換えたの忘れてあとでハマるのでオススメではないです。

回答 2

--resolve オプションを利用する。

例:

curl -H 'Host:www.example.com' --resolve 'www.excample.com:443:10.0.0.2'  https://www.example.com/

敗北した方法

ホストヘッダのみ書き換える

curl -H 'Host:www.example.com'  https://test.example.com/

バーチャルホストにアクセスする場合に有効ですが、HTTPの処理の前にTLSの処理があるので証明書不一致でエラーになります。

19
12
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
19
12

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?