Open nomoresat opened 8 months ago
Currently it is recommended to use Custom Configuration Hook to manipulate specific outbounds directly.
For example to change fragmentation settings:
return function(config) {
for (let i = 0; i < length(config["outbounds"]); i++) {
if (config["outbounds"][i]["tag"] === "direct") {
config["outbounds"][i]["settings"]["fragment"] = {
"packets": "tlshello",
"length": "100-200",
"interval": "10-20" // unit in ms
};
break;
};
};
return config;
};
Pardon my stupidity, but where and how do I add it?
Pardon my stupidity, but where and how do I add it?
But there's no fragmentation parameter
Pardon my stupidity, but where and how do I add it?
When I paste the data you provided, it says invalid synaxis ![Uploading Снимок экрана (2).png…]()
It seems you're using a very outdated version. Follow the instructions to install a newer version.
The instructions are pretty complicated for a beginner, couldn't figure it out(
It seems you're using a very outdated version. Follow the instructions to install a newer version.
The instructions are pretty complicated for a beginner, couldn't figure it out(
Just find someone else's fork there:
https://github.com/yichya/luci-app-xray/forks?include=active&page=1&period=2y&sort_by=last_updated
Unfortunately, only old versions are in forks.
The instructions are pretty complicated for a beginner, couldn't figure it out(
Just find someone else's fork there:
https://github.com/yichya/luci-app-xray/forks?include=active&page=1&period=2y&sort_by=last_updated
I built the latest package using actions, version 3.4.1r1 was released and it does not have a custom configuration hook.
How can I add and use custom configuration as a direct config.json (e.g. to use fragmentation)