shitcoding moment
This commit is contained in:
parent
8e31bd6c02
commit
58475e433e
28 changed files with 703 additions and 258 deletions
|
|
@ -17,34 +17,62 @@
|
|||
};
|
||||
inbounds = [
|
||||
{
|
||||
tag = "VLESS TCP REALITY";
|
||||
tag = "VMESS WS Header NoTLS";
|
||||
listen = "0.0.0.0";
|
||||
port = port;
|
||||
protocol = "vless";
|
||||
port = 1080;
|
||||
protocol = "vmess";
|
||||
settings = {
|
||||
clients = [];
|
||||
decryption = "none";
|
||||
};
|
||||
streamSettings = {
|
||||
network = "tcp";
|
||||
tcpSettings = {};
|
||||
security = "reality";
|
||||
realitySettings = {
|
||||
show = false;
|
||||
dest = dest;
|
||||
xver = 0;
|
||||
serverNames = sni;
|
||||
privateKey = privateKey;
|
||||
shortIds = [
|
||||
shortId
|
||||
];
|
||||
network = "ws";
|
||||
wsSettings = {
|
||||
path = "/";
|
||||
headers = {
|
||||
Host = "cloudflare.com";
|
||||
};
|
||||
};
|
||||
security = "none";
|
||||
};
|
||||
sniffing = {
|
||||
enabled = true;
|
||||
destOverride = [ "http" "tls" "quic" ];
|
||||
enabled = true;
|
||||
destOverride = [
|
||||
"http"
|
||||
"tls"
|
||||
"quic"
|
||||
];
|
||||
};
|
||||
}
|
||||
# {
|
||||
# tag = "VLESS TCP REALITY";
|
||||
# listen = "0.0.0.0";
|
||||
# port = port;
|
||||
# protocol = "vless";
|
||||
# settings = {
|
||||
# clients = [];
|
||||
# decryption = "none";
|
||||
# };
|
||||
# streamSettings = {
|
||||
# network = "tcp";
|
||||
# tcpSettings = {};
|
||||
# security = "reality";
|
||||
# realitySettings = {
|
||||
# show = false;
|
||||
# dest = dest;
|
||||
# xver = 0;
|
||||
# serverNames = sni;
|
||||
# privateKey = privateKey;
|
||||
# shortIds = [
|
||||
# shortId
|
||||
# ];
|
||||
# };
|
||||
# };
|
||||
# sniffing = {
|
||||
# enabled = true;
|
||||
# destOverride = [ "http" "tls" "quic" ];
|
||||
# };
|
||||
# }
|
||||
];
|
||||
outbounds = [
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue