Skip to content

Commit ea590be

Browse files
authored
Merge pull request aleskxyz#131 from aleskxyz:custom-config
Custom Config
2 parents d16de7e + 09dcbc3 commit ea590be

File tree

2 files changed

+36
-0
lines changed

2 files changed

+36
-0
lines changed

README.md

+26
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ Features:
2828
* You can change tunneling protocol (vless, TUIC, hysteria2)
2929
* You can get valid TLS certificate with Letsencrypt
3030
* You can block malware and adult contents
31+
* Merges your custom advanced configuration
3132
* Use Cloudflare WARP to hide your outbound traffic
3233
* Supports Cloudflare warp+
3334
* Install with a single command
@@ -339,3 +340,28 @@ So we need to execute this command:
339340
```
340341
bash <(curl -sL https://bit.ly/realityez) --transport=grpc --domain=www.wikipedia.com --enable-safenet=true --enable-warp=true --warp-license=26z9i0ld-WG0wy324-rA703nZ2
341342
```
343+
## Custom Configuration
344+
Use this feature only if you know exactly what you are doing!
345+
346+
You can override the configuration generated by the script and add your own custom configuration to it.
347+
348+
Write your custom configuration in one of these files based on the engine that you are using:
349+
350+
```
351+
/opt/reality-ezpz/sing-box.patch
352+
```
353+
or
354+
```
355+
/opt/reality-ezpz/xray.patch
356+
```
357+
And run script to apply your changes.
358+
359+
For example if you want to increase the debug level of sing-box engine, you can create `/opt/reality-ezpz/sing-box.patch` with this content:
360+
```
361+
{
362+
"log": {
363+
"level": "debug",
364+
"timestamp": true
365+
}
366+
}
367+
```

reality-ezpz.sh

+10
Original file line numberDiff line numberDiff line change
@@ -879,6 +879,7 @@ function generate_engine_config {
879879
local tls_object=""
880880
local warp_object=""
881881
local reality_port=443
882+
local temp_file
882883
if [[ ${config[transport]} == 'tuic' ]]; then
883884
type='tuic'
884885
elif [[ ${config[transport]} == 'hysteria2' ]]; then
@@ -1223,6 +1224,15 @@ EOF
12231224
}
12241225
EOF
12251226
fi
1227+
if [[ -r ${config_path}/${config[core]}.patch ]]; then
1228+
if ! jq empty ${config_path}/${config[core]}.patch; then
1229+
echo "${config[core]}.patch is not a valid json file. Fix it or remove it!"
1230+
exit 1
1231+
fi
1232+
temp_file=$(mktemp)
1233+
jq -s add ${path[engine]} ${config_path}/${config[core]}.patch > ${temp_file}
1234+
mv ${temp_file} ${path[engine]}
1235+
fi
12261236
}
12271237

12281238
function generate_config {

0 commit comments

Comments
 (0)