Skip to content

Commit

Permalink
Fix code block langage
Browse files Browse the repository at this point in the history
  • Loading branch information
ustcljh committed Jan 6, 2025
1 parent 0c88d59 commit c807527
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pages/_planet/2025-01-03-local-file-serving.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,21 +20,21 @@ USTCLUG 的一个重要服务是它的 [开源软件镜像](https://mirrors.ustc

如果你已经安装了 Python,则可以直接使用

```cmd
```shell
python3 -m http.server <port>
```

来以当前目录为根目录,`<port>` 为端口运行一个 HTTP 服务器。

如果需要指定别的目录 `<path>` 作为 HTTP 服务的根目录,可以使用

```cmd
```shell
python3 -m http.server <port> --directory <path>
```

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

```cmd
```shell
python3 -m http.server <port> --bind 127.0.0.1
```

Expand Down Expand Up @@ -85,7 +85,7 @@ path/ -> 建立这个目录

然后以管理员权限运行

```cmd
```shell
ipconfig /flushdns
```

Expand Down

0 comments on commit c807527

Please sign in to comment.