]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
📝 Fix typo in `docs/en/docs/advanced/behind-a-proxy.md` (#5681)
authorLeonardo Marinho de Melo Júnior <41721777+Leommjr@users.noreply.github.com>
Thu, 13 Apr 2023 18:44:09 +0000 (15:44 -0300)
committerGitHub <noreply@github.com>
Thu, 13 Apr 2023 18:44:09 +0000 (18:44 +0000)
Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
docs/en/docs/advanced/behind-a-proxy.md

index 766a218aa344c78aa08941417b194dd89fbf2277..03198851a394d7114a8673fae4b46ee3691d767c 100644 (file)
@@ -251,7 +251,7 @@ We get the same response:
 
 but this time at the URL with the prefix path provided by the proxy: `/api/v1`.
 
-Of course, the idea here is that everyone would access the app through the proxy, so the version with the path prefix `/app/v1` is the "correct" one.
+Of course, the idea here is that everyone would access the app through the proxy, so the version with the path prefix `/api/v1` is the "correct" one.
 
 And the version without the path prefix (`http://127.0.0.1:8000/app`), provided by Uvicorn directly, would be exclusively for the _proxy_ (Traefik) to access it.