From 1efc90f2e7e24c76ba5d436533a33c4cc33fccd3 Mon Sep 17 00:00:00 2001 From: alv2017 Date: Fri, 7 Mar 2025 22:02:14 +0200 Subject: [PATCH 1/3] Documentation update: --- docs/en/docs/tutorial/cors.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/en/docs/tutorial/cors.md b/docs/en/docs/tutorial/cors.md index cf31cfcf5..5739cf297 100644 --- a/docs/en/docs/tutorial/cors.md +++ b/docs/en/docs/tutorial/cors.md @@ -2,6 +2,10 @@ CORS or "Cross-Origin Resource Sharing" refers to the situations when a frontend running in a browser has JavaScript code that communicates with a backend, and the backend is in a different "origin" than the frontend. +For security reasons a front-end application running in a browser can only request resources (such as APIs, stylesheets, and images) from the same origin the application was loaded from, unless the response from other origins includes the right CORS headers. + +CORS is a security standard implemented by browsers. It enables scripts running in a browser securely access resources located outside the browser domain. + ## Origin An origin is the combination of protocol (`http`, `https`), domain (`myapp.com`, `localhost`, `localhost.tiangolo.com`), and port (`80`, `443`, `8080`). From 38e7dc13c22ad84daa33aad439e1a605447d511e Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Fri, 7 Mar 2025 20:05:56 +0000 Subject: [PATCH 2/3] =?UTF-8?q?=F0=9F=8E=A8=20[pre-commit.ci]=20Auto=20for?= =?UTF-8?q?mat=20from=20pre-commit.com=20hooks?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/en/docs/tutorial/cors.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/docs/tutorial/cors.md b/docs/en/docs/tutorial/cors.md index 5739cf297..770431b7c 100644 --- a/docs/en/docs/tutorial/cors.md +++ b/docs/en/docs/tutorial/cors.md @@ -4,7 +4,7 @@ For security reasons a front-end application running in a browser can only request resources (such as APIs, stylesheets, and images) from the same origin the application was loaded from, unless the response from other origins includes the right CORS headers. -CORS is a security standard implemented by browsers. It enables scripts running in a browser securely access resources located outside the browser domain. +CORS is a security standard implemented by browsers. It enables scripts running in a browser securely access resources located outside the browser domain. ## Origin From e51a7169dade0dc5716fdd31d0adf14faab4d260 Mon Sep 17 00:00:00 2001 From: alv2017 Date: Thu, 13 Mar 2025 20:17:35 +0200 Subject: [PATCH 3/3] Applying correction proposed by the reviewer --- docs/en/docs/tutorial/cors.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/docs/tutorial/cors.md b/docs/en/docs/tutorial/cors.md index 770431b7c..412d1a861 100644 --- a/docs/en/docs/tutorial/cors.md +++ b/docs/en/docs/tutorial/cors.md @@ -4,7 +4,7 @@ For security reasons a front-end application running in a browser can only request resources (such as APIs, stylesheets, and images) from the same origin the application was loaded from, unless the response from other origins includes the right CORS headers. -CORS is a security standard implemented by browsers. It enables scripts running in a browser securely access resources located outside the browser domain. +CORS is a security standard implemented by browsers. It enables scripts running in a browser to securely access resources located outside the browser domain. ## Origin