File tree 2 files changed +36
-0
lines changed
2 files changed +36
-0
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ Features:
28
28
* You can change tunneling protocol (vless, TUIC, hysteria2)
29
29
* You can get valid TLS certificate with Letsencrypt
30
30
* You can block malware and adult contents
31
+ * Merges your custom advanced configuration
31
32
* Use Cloudflare WARP to hide your outbound traffic
32
33
* Supports Cloudflare warp+
33
34
* Install with a single command
@@ -339,3 +340,28 @@ So we need to execute this command:
339
340
```
340
341
bash <(curl -sL https://bit.ly/realityez) --transport=grpc --domain=www.wikipedia.com --enable-safenet=true --enable-warp=true --warp-license=26z9i0ld-WG0wy324-rA703nZ2
341
342
```
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
+ ```
Original file line number Diff line number Diff line change @@ -879,6 +879,7 @@ function generate_engine_config {
879
879
local tls_object=" "
880
880
local warp_object=" "
881
881
local reality_port=443
882
+ local temp_file
882
883
if [[ ${config[transport]} == ' tuic' ]]; then
883
884
type=' tuic'
884
885
elif [[ ${config[transport]} == ' hysteria2' ]]; then
@@ -1223,6 +1224,15 @@ EOF
1223
1224
}
1224
1225
EOF
1225
1226
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
1226
1236
}
1227
1237
1228
1238
function generate_config {
You can’t perform that action at this time.
0 commit comments