Where does the UI save it's configuration?
I want to add some parameters to hopefully make a wireguard tunnel work but some needed parameters are not exposed in the GUI.
Currently I get
ERROR: [udp] invalid header with addr type 0 on my ss-local when I try to connect wireguard on port 1086.
The suggested client config from Issue 785 of the shadowsocks-rust repo is below. I hope to make it work with it.
"server": "server_IP",
"server_port": 21638,
"password": "pass",
"method": "aes-256-gcm",
"locals": [
{
"mode": "udp_only",
"protocol": "tunnel",
"forward_address": "server_IP",
"forward_port": 60820,
"local_address": "127.0.0.1",
"local_port": 1080
}
]
}