aboutsummaryrefslogtreecommitdiff
path: root/files/ja/glossary/origin/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ja/glossary/origin/index.html')
-rw-r--r--files/ja/glossary/origin/index.html81
1 files changed, 81 insertions, 0 deletions
diff --git a/files/ja/glossary/origin/index.html b/files/ja/glossary/origin/index.html
new file mode 100644
index 0000000000..beccc3eacf
--- /dev/null
+++ b/files/ja/glossary/origin/index.html
@@ -0,0 +1,81 @@
+---
+title: Origin (オリジン)
+slug: Glossary/Origin
+tags:
+ - Glossary
+ - WebMechanics
+ - オリジン
+ - セキュリティ
+ - 用語集
+translation_of: Glossary/Origin
+---
+<p>ウェブコンテンツの<ruby><strong>オリジン</strong><rp> (</rp><rt>Origin</rt><rp>) </rp></ruby>は、ウェブコンテンツにアクセスするために使われる {{Glossary("URL")}} の<em>スキーム</em> (プロトコル)、 <em>ホスト</em> (ドメイン)、 <em>ポート</em> によって定義されます。スキーム、ホスト、ポートがすべて一致した場合のみ、二つのオブジェクトは同じオリジンであると言えます。</p>
+
+<p>操作によっては同じオリジンのコンテンツに限定されており、この制約は {{Glossary("CORS")}} を使用して緩和することができます。</p>
+
+<h2 id="Examples_of_same_origin" name="Examples_of_same_origin">同一オリジンの例</h2>
+
+<table class="standard-table">
+ <tbody>
+ <tr>
+ <td style="width: 50%;"><code>http://example.com/app1/index.html</code><br>
+ <code>http://example.com/app2/index.html</code></td>
+ <td style="width: 50%;">スキーム (<code>http</code>) およびホスト (<code>example.com</code>) が同じなので同一オリジン</td>
+ </tr>
+ <tr>
+ <td style="width: 50%;"><code>http://Example.com:80</code><br>
+ <code>http://example.com</code></td>
+ <td style="width: 50%;">サーバーは既定で80番ポートで HTTP コンテンツを配信するため、同一オリジン</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Examples_of_different_origin" name="Examples_of_different_origin">異なるオリジンの例</h2>
+
+<table class="standard-table">
+ <tbody>
+ <tr>
+ <td style="width: 50%;"><code>http://example.com/app1</code><br>
+ <code>https://example.com/app2</code></td>
+ <td>スキームが異なる</td>
+ </tr>
+ <tr>
+ <td style="width: 50%;"><code>http://example.com</code><br>
+ <code>http://www.example.com</code><br>
+ <code>http://myapp.example.com</code></td>
+ <td style="width: 50%;">ホストが異なる</td>
+ </tr>
+ <tr>
+ <td style="width: 50%;"><code>http://example.com</code><br>
+ <code>http://example.com:8080</code></td>
+ <td style="width: 50%;">ポートが異なる</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Specifications" name="Specifications">仕様書</h2>
+
+<table class="standard-table">
+ <thead>
+ <tr>
+ <th scope="col">仕様書</th>
+ <th scope="col">状態</th>
+ <th scope="col">備考</th>
+ </tr>
+ </thead>
+ <thead>
+ </thead>
+ <tbody>
+ <tr>
+ <td>{{SpecName('HTML WHATWG', '#origin', 'origin')}}</td>
+ <td>{{Spec2('HTML WHATWG')}}</td>
+ <td> </td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Learn_more" name="Learn_more">理解を深める</h2>
+
+<p>詳しくは<a href="/ja/docs/Web/Security/Same-origin_policy">同一オリジンポリシー</a>をご覧ください。</p>
+
+<div>{{QuickLinksWithSubpages("/ja/docs/Glossary")}}</div>