diff --git a/docs/en/docs/contributing.md b/docs/en/docs/contributing.md
index a08991a15..12387106c 100644
--- a/docs/en/docs/contributing.md
+++ b/docs/en/docs/contributing.md
@@ -201,14 +201,14 @@ During local development, there is a script that builds the site and checks for
```console
$ python ./scripts/docs.py live
-[INFO] Serving on http://0.0.0.0:8008
+[INFO] Serving on http://127.0.0.1:8008
[INFO] Start watching changes
[INFO] Start detecting changes
```
-It will serve the documentation on `http://0.0.0.0:8008`.
+It will serve the documentation on `http://127.0.0.1:8008`.
That way, you can edit the documentation/source files and see the changes live.
@@ -280,14 +280,14 @@ Now run the live server for the docs in Spanish:
// Use the command "live" and pass the language code as a CLI argument
$ python ./scripts/docs.py live es
-[INFO] Serving on http://0.0.0.0:8008
+[INFO] Serving on http://127.0.0.1:8008
[INFO] Start watching changes
[INFO] Start detecting changes
```
-Now you can go to http://0.0.0.0:8008 and see your changes live.
+Now you can go to http://127.0.0.1:8008 and see your changes live.
If you look at the FastAPI docs website, you will see that every language has all the pages. But some are not translated and have a notification about the the translation is missing.
diff --git a/scripts/docs.py b/scripts/docs.py
index 490f05264..03bf3ca81 100644
--- a/scripts/docs.py
+++ b/scripts/docs.py
@@ -245,7 +245,7 @@ def serve():
os.chdir("site")
server_address = ("", 8008)
server = HTTPServer(server_address, SimpleHTTPRequestHandler)
- typer.echo(f"Serving at: http://0.0.0.0:8008")
+ typer.echo(f"Serving at: http://127.0.0.1:8008")
server.serve_forever()
@@ -268,7 +268,7 @@ def live(
lang = "en"
lang_path: Path = docs_path / lang
os.chdir(lang_path)
- mkdocs.commands.serve.serve(dev_addr="0.0.0.0:8008")
+ mkdocs.commands.serve.serve(dev_addr="127.0.0.1:8008")
def update_config(lang: str):