aboutsummaryrefslogtreecommitdiff
path: root/files/ja/glossary/site
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/glossary/site
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/ja/glossary/site')
-rw-r--r--files/ja/glossary/site/index.html63
1 files changed, 63 insertions, 0 deletions
diff --git a/files/ja/glossary/site/index.html b/files/ja/glossary/site/index.html
new file mode 100644
index 0000000000..3635b05486
--- /dev/null
+++ b/files/ja/glossary/site/index.html
@@ -0,0 +1,63 @@
+---
+title: Site (サイト)
+slug: Glossary/Site
+tags:
+ - Glossary
+ - Security
+ - WebMechanics
+ - 用語集
+translation_of: Glossary/Site
+---
+<p>ウェブコンテンツの一部であるい<em>サイト</em>は、オリジン内にあるホストの<em>登録可能なドメイン</em>によって決定されます。これは、<em>公開接尾辞リスト</em>を参照して、<em>公開接尾辞</em>として数えられるホストの部分を見つけることによって計算されます (e.g. <samp>com</samp>, <samp>org</samp>, <samp>co.uk</samp>)。</p>
+
+<p><em>サイト</em>の概念は、ウェブアプリケーションの <a href="/ja/docs/Web/HTTP/Cross-Origin_Resource_Policy_(CORP)">Cross-Origin Resource Policy</a> と同様に、 <a href="/ja/docs/Web/HTTP/Headers/Set-Cookie#Directives">SameSite クッキー</a>で使用されています。</p>
+
+<h2 id="Examples_of_the_same_site" name="Examples_of_the_same_site">同一サイトの例</h2>
+
+<table class="standard-table">
+ <tbody>
+ <tr>
+ <td style="width: 50%;"><code>https://developer.mozilla.org/en-US/docs/</code><br>
+ <code>https://support.mozilla.org/en-US/</code></td>
+ <td style="width: 50%;">登録可能なドメイン <em>mozilla.org</em> が同じなので同一サイト</td>
+ </tr>
+ <tr>
+ <td style="width: 50%;"><code>http://example.com:8080</code><br>
+ <code>https://example.com</code></td>
+ <td style="width: 50%;">スキームとポートは関係ないので同一サイト</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Examples_of_different_site" name="Examples_of_different_site">異なるサイトの例</h2>
+
+<table class="standard-table">
+ <tbody>
+ <tr>
+ <td style="width: 50%;"><code>https://developer.mozilla.org/ja/docs/</code><br>
+ <code>https://example.com</code></td>
+ <td style="width: 50%;">2つの URL の登録可能ドメインが異なるため、同一サイトではない</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('URL', '#host-same-site')}}</td>
+ <td>{{Spec2('URL')}}</td>
+ <td>初回定義</td>
+ </tr>
+ </tbody>
+</table>