mirror of
https://github.com/shtorm-7/sing-box-extended.git
synced 2026-07-19 22:08:07 +03:00
Add OpenVPN, TrustTunnel, Sudoku, inbound managers. Fixes
This commit is contained in:
17
examples/sudoku/client.json
Normal file
17
examples/sudoku/client.json
Normal file
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"inbounds": [
|
||||
{
|
||||
"type": "mixed",
|
||||
"listen": "127.0.0.1",
|
||||
"listen_port": 1080
|
||||
}
|
||||
],
|
||||
"outbounds": [
|
||||
{
|
||||
"type": "sudoku",
|
||||
"server": "your-server.com",
|
||||
"server_port": 443,
|
||||
"key": "your-secret-key"
|
||||
}
|
||||
]
|
||||
}
|
||||
29
examples/sudoku/client_tls.json
Normal file
29
examples/sudoku/client_tls.json
Normal file
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"inbounds": [
|
||||
{
|
||||
"type": "mixed",
|
||||
"listen": "127.0.0.1",
|
||||
"listen_port": 1080
|
||||
}
|
||||
],
|
||||
"outbounds": [
|
||||
{
|
||||
"type": "sudoku",
|
||||
"server": "your-server.com",
|
||||
"server_port": 443,
|
||||
"key": "your-secret-key",
|
||||
"tls": {
|
||||
"enabled": true,
|
||||
"fragment": true,
|
||||
"fragment_fallback_delay": "300ms"
|
||||
},
|
||||
"http_mask": {
|
||||
"enabled": true,
|
||||
"mode": "stream",
|
||||
"host": "cdn.example.com",
|
||||
"path_root": "secret",
|
||||
"multiplex": "auto"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
15
examples/sudoku/server.json
Normal file
15
examples/sudoku/server.json
Normal file
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"inbounds": [
|
||||
{
|
||||
"type": "sudoku",
|
||||
"listen": "::",
|
||||
"listen_port": 443,
|
||||
"key": "your-secret-key"
|
||||
}
|
||||
],
|
||||
"outbounds": [
|
||||
{
|
||||
"type": "direct"
|
||||
}
|
||||
]
|
||||
}
|
||||
22
examples/sudoku/server_advanced.json
Normal file
22
examples/sudoku/server_advanced.json
Normal file
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"inbounds": [
|
||||
{
|
||||
"type": "sudoku",
|
||||
"listen": "::",
|
||||
"listen_port": 443,
|
||||
"key": "your-secret-key",
|
||||
"aead_method": "aes-128-gcm",
|
||||
"table_type": "prefer_entropy",
|
||||
"padding_min": 10,
|
||||
"padding_max": 50,
|
||||
"http_mask_mode": "stream",
|
||||
"path_root": "secret",
|
||||
"fallback": "127.0.0.1:8080"
|
||||
}
|
||||
],
|
||||
"outbounds": [
|
||||
{
|
||||
"type": "direct"
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user