Actinium icon indicating copy to clipboard operation
Actinium copied to clipboard

无法连接。Websocket+TLS。服务器的证书签在一个三级域名上。

Open hehongbo opened this issue 8 years ago • 0 comments

用上Websocket以后,actinium无法使用。 转换配置文件后,能看到数据收发,发送大于接收,无法代理任何页面。 证书签在一个三级域名上,公签证书,不是自己签的。不知道跟三级域名有无联系。 但是同一配置文件,v2ray-macos可以使用。在actinium的配置文件上,把address解析成IP填上,也能正常使用.... 想不通原因。

配置文件 { "inbound": { "port": 1080, "protocol": "socks", "settings": { "auth": "noauth", "udp": false, "ip": "127.0.0.1" } }, "outbound": { "protocol": "vmess", "settings": { "vnext": [ { "address": "domain", "port": 443, "users": [ { "id": "00000000-0000-0000-0000-000000000000", "alterId": 64 } ] } ] }, "streamSettings":{ "network": "ws", "security": "tls", "tlsSettings": { "serverName": "domain" }, "wsSettings": { "path":"/my_path" } } }, "outboundDetour": [ { "protocol": "freedom", "settings": {}, "tag": "direct" } ], "routing": { "strategy": "rules", "settings": { "rules": [ { "type": "chinasites", "outboundTag": "direct" }, { "type": "field", "ip": [ "0.0.0.0/8", "10.0.0.0/8", "100.64.0.0/10", "127.0.0.0/8", "169.254.0.0/16", "172.16.0.0/12", "192.0.0.0/24", "192.0.2.0/24", "192.168.0.0/16", "198.18.0.0/15", "198.51.100.0/24", "203.0.113.0/24", "::1/128", "fc00::/7", "fe80::/10" ], "outboundTag": "direct" }, { "type": "chinaip", "outboundTag": "direct" } ] } } }

hehongbo avatar Jan 17 '18 17:01 hehongbo