Shadowsock wrong config

Hi So i try to configure the shadowsocks-libev luci, but the config seem wrong as option look to been change..
So into /etc/config/shadowsocks-libev they told to swap the ss0 with the server.. but as being all at disable.. I go into shadow-Luci and in Remote servers tab: put the ip in the sss0 line and remove the disable check. I just put the password and set my ss server with the same port 9001 and cypher 256cfb. In the local instance section, i set all at enable / click edit and un check the disable. Or just 1 redir and 1 tunnel.. but option look strange. Then in startup, hit start on ss.

And as another post that mention to go read to different page.. the confing file is different or older from : https://github.com/openwrt/packages/blob/master/net/shadowsocks-libev/README.md#recipes
Here is config coming from an install, current package for v.21 rc2

config ss_local
        option disabled 1
        option server 'sss0'
        option local_address '0.0.0.0'
        option local_port '1080'
        option timeout '30'

config ss_tunnel
        option disabled 1
        option server 'sss0'
        option local_address '0.0.0.0'
        option local_port '1090'
        option tunnel_address 'example.com:80'
        option mode 'tcp_and_udp'
        option timeout '60'

config ss_redir hi
        option disabled 1
        option server 'sss0'
        option local_address '0.0.0.0'
        option local_port '1100'
        option mode 'tcp_and_udp'
        option timeout '60'
    option fast_open 1
        option verbose 1
        option reuse_port 1

config ss_redir hj
        option disabled 1
        option server 'sss0'
        option local_address '0.0.0.0'
        option local_port '1100'
        option mode 'tcp_and_udp'
        option timeout '60'
        option fast_open 1
        option verbose 1
        option reuse_port 1

config ss_rules 'ss_rules'
        option disabled 1
        option redir_tcp 'hi'
        option redir_udp 'hi'
        option src_default 'checkdst'
        option dst_default 'bypass'
        option local_default 'checkdst'
        list src_ips_forward '192.168.1.4'
        list dst_ips_forward '8.8.8.8'

config server 'sss0'
        option disabled 1
        option server '192.168.1.3'
        option server_port '9001'
        option password '********'
        option method 'aes-256-cfb'

config ss_server
        option disabled 1
        option server_port '9001'
        option password '********'
        option method 'aes-256-cfb'

The ss-tunnel is put as being 1090 (local port) . So i put

/etc/config/dhcp i add the 3 line in the config dnsmasq section :

list server '127.0.0.1#8053'   -- i change the 8053 to 1090
	option noresolv 1
	option localuse 1
netstat -lntp | grep -E '8053|1100'  = as in the old github.
 netstat -lntp | grep -E '1090|1100'
tcp        0      0 0.0.0.0:1090            0.0.0.0:*               LISTEN      6688/ss-tunnel
tcp        0      0 0.0.0.0:1100            0.0.0.0:*               LISTEN      6686/ss-redir
tcp        0      0 0.0.0.0:1100            0.0.0.0:*               LISTEN      6687/ss-redir

iptables-save | grep ss_rules = this return nothing.
as no connection is present. In the log i get :

n 18 23:36:36 2021 user.info : using tcp fast open
 daemon.info /usr/bin/ss-redir[6686]: initializing ciphers... aes-256-cfb
daemon.info /usr/bin/ss-redir[6686]: Stream ciphers are insecure, therefore deprecated, and should be almost always avoided.
usr/bin/ss-redir[6686]: listening at 0.0.0.0:1100
/usr/bin/ss-redir[6686]: tcp port reuse enabled
/usr/bin/ss-redir[6686]: UDP relay enabled
/usr/bin/ss-redir[6686]: udp port reuse enabled
 /usr/bin/ss-redir[6686]: running from root user
/usr/bin/ss-redir[6687]: udp port reuse enabled
/usr/bin/ss-redir[6687]: running from root user

to install in full it's with :

opkg install shadowsocks-libev-ss-local shadowsocks-libev-ss-redir
shadowsocks-libev-ss-rules shadowsocks-libev-ss-tunnel
opkg install shadowsocks-libev-config luci-app-shadowsocks-libev

So if any have a working config that could be great. The rules of directing traffic through ss-redir might do something.. but what to change from the default config ? It look simple, but well.. hehe Thanks in advance