From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- files/ja/glossary/origin/index.html | 81 +++++++++++++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 files/ja/glossary/origin/index.html (limited to 'files/ja/glossary/origin') 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 +--- +

ウェブコンテンツのオリジン (Origin) は、ウェブコンテンツにアクセスするために使われる {{Glossary("URL")}} のスキーム (プロトコル)、 ホスト (ドメイン)、 ポート によって定義されます。スキーム、ホスト、ポートがすべて一致した場合のみ、二つのオブジェクトは同じオリジンであると言えます。

+ +

操作によっては同じオリジンのコンテンツに限定されており、この制約は {{Glossary("CORS")}} を使用して緩和することができます。

+ +

同一オリジンの例

+ + + + + + + + + + + + +
http://example.com/app1/index.html
+ http://example.com/app2/index.html
スキーム (http) およびホスト (example.com) が同じなので同一オリジン
http://Example.com:80
+ http://example.com
サーバーは既定で80番ポートで HTTP コンテンツを配信するため、同一オリジン
+ +

異なるオリジンの例

+ + + + + + + + + + + + + + + + +
http://example.com/app1
+ https://example.com/app2
スキームが異なる
http://example.com
+ http://www.example.com
+ http://myapp.example.com
ホストが異なる
http://example.com
+ http://example.com:8080
ポートが異なる
+ +

仕様書

+ + + + + + + + + + + + + + + + + + +
仕様書状態備考
{{SpecName('HTML WHATWG', '#origin', 'origin')}}{{Spec2('HTML WHATWG')}} 
+ +

理解を深める

+ +

詳しくは同一オリジンポリシーをご覧ください。

+ +
{{QuickLinksWithSubpages("/ja/docs/Glossary")}}
-- cgit v1.2.3-54-g00ecf