Skip to content

Commit

Permalink
fix default bind address in Python http.server: Update pages/_planet/…
Browse files Browse the repository at this point in the history
…2025-01-03-local-file-serving.md

Co-authored-by: taoky <[email protected]>
  • Loading branch information
ustcljh and taoky authored Jan 6, 2025
1 parent f1b8983 commit 38530d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/_planet/2025-01-03-local-file-serving.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ python3 -m http.server <port>
python3 -m http.server <port> --directory <path>
```

如果需要 bind 到特定的地址(对于本地服务而言,应该使用 `127.0.0.1`),可以使用下面的命令。`bind` 是指将一个网络地址(IP 和端口)与服务器软件中的套接字关联的过程,使得该服务器能接收指定地址上的网络数据。如果只需要本地访问,则可以使用本地回环地址 `127.0.0.1`
如果需要 bind 到特定的地址(对于本地服务而言,应该使用 `127.0.0.1`),可以使用下面的命令。`bind` 是指将一个网络地址(IP 和端口)与服务器软件中的套接字关联的过程,使得该服务器能接收指定地址上的网络数据。**Python 的 http.server 默认值为 `0.0.0.0`,代表所有人都可以访问**如果只需要本地访问,则可以使用本地回环地址 `127.0.0.1`

```
python3 -m http.server <port> --bind 127.0.0.1
Expand Down

0 comments on commit 38530d3

Please sign in to comment.