blob: f15382f5be2aa1f9511f1ef60e6a71b6d6b82850 (
plain)
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
|
---
title: Via
slug: Web/HTTP/Headers/Via
translation_of: Web/HTTP/Headers/Via
---
<div>{{HTTPSidebar}}</div>
<p>一般ヘッダーの<code><strong>Via</strong></code> は、フォワードプロキシとリバースプロキシの両方のプロキシによって追加され、リクエストヘッダーとレスポンスヘッダーに表示されます。 メッセージ転送の追跡、要求ループの回避、および要求/応答チェーンに沿った送信者のプロトコル機能の識別に使用されます。</p>
<table class="properties">
<tbody>
<tr>
<th scope="row">ヘッダー種別</th>
<td>{{Glossary("General header")}}</td>
</tr>
<tr>
<th scope="row">{{Glossary("Forbidden header name")}}</th>
<td>yes</td>
</tr>
</tbody>
</table>
<h2 id="構文">構文</h2>
<pre class="syntaxbox">Via: [ <protocol-name> "/" ] <protocol-version> <host> [ ":" <port> ]
or
Via: [ <protocol-name> "/" ] <protocol-version> <pseudonym>
</pre>
<h2 id="ディレクティブ">ディレクティブ</h2>
<dl>
<dt><protocol-name></dt>
<dd>オプション。"HTTP"など、使用するプロトコル名。</dd>
<dt><protocol-version></dt>
<dd>"1.1"など、使用されているプロトコルのバージョン。</dd>
<dt><host> and <port></dt>
<dd>パブリックプロキシのURLとポート。</dd>
<dt><pseudonym></dt>
<dd>内部プロキシの名前/エイリアス。</dd>
</dl>
<h2 id="例">例</h2>
<pre>Via: 1.1 vegur
Via: HTTP/1.1 GWA
Via: 1.0 fred, 1.1 p.example.net
</pre>
<h2 id="仕様書">仕様書</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">Specification</th>
<th scope="col">Title</th>
</tr>
<tr>
<td>{{RFC("7230", "Via", "5.7.1")}}</td>
<td>Hypertext Transfer Protocol (HTTP/1.1): Message Syntax and Routing</td>
</tr>
</tbody>
</table>
<h2 id="ブラウザの互換">ブラウザの互換</h2>
<p>{{Compat("http.headers.Via")}}</p>
<h2 id="関連情報">関連情報</h2>
<ul>
<li>{{HTTPHeader("X-Forwarded-For")}}</li>
<li><a href="https://github.com/heroku/vegur">Heroku's proxy library Vegur</a></li>
</ul>
|