docs: update formatting in section 7.7 to match cn doc ver

pull/731/head
Iaroslav Baslin 2025-08-03 17:49:22 +03:00
parent e20af63f66
commit 0f3864e853
1 changed files with 15 additions and 5 deletions

View File

@ -470,19 +470,29 @@ If your line really has a very high packet loss rate, the only reliable solution
If you are not sure whether your VPS supports it, please follow the command in step 3 and use the regular kernel `linux-image-amd64`. If you are not sure whether your VPS supports it, please follow the command in step 3 and use the regular kernel `linux-image-amd64`.
::: :::
![Update Debian kernel and enable `BBR`](./ch07-img06-bbr-proper.gif) 8. Confirm that `BBR` is enabled ![Update Debian kernel and enable `BBR`](./ch07-img06-bbr-proper.gif)
8. Confirm that `BBR` is enabled
If you want to confirm whether `BBR` is enabled correctly, you can use the following command: If you want to confirm whether `BBR` is enabled correctly, you can use the following command:
`lsmod | grep bbr` ```shell
lsmod | grep bbr
```
This should return the following result: This should return the following result:
`tcp_bbr` ```
tcp_bbr
```
If you want to confirm whether the `fq` algorithm is enabled correctly, you can use the following command: If you want to confirm whether the `fq` algorithm is enabled correctly, you can use the following command:
`lsmod | grep fq` ```shell
lsmod | grep fq
```
This should return the following result: This should return the following result:
`sch_fq` ```
sch_fq
```
## 7.8 Server Optimization 2: Enable HTTP to automatically redirect to HTTPS ## 7.8 Server Optimization 2: Enable HTTP to automatically redirect to HTTPS