Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/configuration/dns/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
icon: material/alert-decagram
---

# DNS

!!! quote "Changes in sing-box 1.12.0"

:material-decagram: [servers](#servers)
Expand All @@ -10,8 +12,6 @@ icon: material/alert-decagram

:material-plus: [cache_capacity](#cache_capacity)

# DNS

### Structure

```json
Expand Down
4 changes: 2 additions & 2 deletions docs/configuration/dns/index.zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
icon: material/alert-decagram
---

# DNS

!!! quote "sing-box 1.12.0 中的更改"

:material-decagram: [servers](#servers)
Expand All @@ -10,8 +12,6 @@ icon: material/alert-decagram

:material-plus: [cache_capacity](#cache_capacity)

# DNS

### 结构

```json
Expand Down
4 changes: 2 additions & 2 deletions docs/configuration/dns/server/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
icon: material/alert-decagram
---

# DNS Server

!!! quote "Changes in sing-box 1.12.0"

:material-plus: [type](#type)

# DNS Server

### Structure

```json
Expand Down
4 changes: 2 additions & 2 deletions docs/configuration/dns/server/index.zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
icon: material/alert-decagram
---

# DNS Server

!!! quote "sing-box 1.12.0 中的更改"

:material-plus: [type](#type)

# DNS Server

### 结构

```json
Expand Down
7 changes: 5 additions & 2 deletions docs/manual/proxy/client.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ flowchart TB
"inbounds": [
{
"type": "tun",
"address": ["172.19.0.1/30"],
"address": "172.19.0.1/30",
"auto_route": true,
// "auto_redirect": true, // On linux
"strict_route": true
Expand Down Expand Up @@ -162,7 +162,10 @@ flowchart TB
"inbounds": [
{
"type": "tun",
"address": ["172.19.0.1/30", "fdfe:dcba:9876::1/126"],
"address": [
"172.19.0.1/30",
"fdfe:dcba:9876::1/126"
],
"auto_route": true,
// "auto_redirect": true, // On linux
"strict_route": true
Expand Down
7 changes: 3 additions & 4 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,22 +13,21 @@ theme:
palette:
- media: "(prefers-color-scheme)"
toggle:
icon: material/link
icon: material/brightness-6
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: white
toggle:
icon: material/toggle-switch
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
toggle:
icon: material/toggle-switch-off
icon: material/brightness-4
name: Switch to system preference
features:
# - navigation.instant
- navigation.tracking
- navigation.tabs
- navigation.indexes
Expand Down