| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- {
- "log": {
- "loglevel": "warning"
- },
- "routing": {
- "domainStrategy": "AsIs",
- "rules": [
- {
- "type": "field",
- "ip": [
- "geoip:private"
- ],
- "outboundTag": "block"
- }
- ]
- },
- "inbounds": [
- {
- "listen": "127.0.0.1",
- "port": 12345,
- "protocol": "shadowsocks",
- "settings": {
- "method": "chacha20-ietf-poly1305",
- "password": "{{ password }}"
- },
- "streamSettings": {
- "network": "grpc",
- "grpcSettings": {
- "serviceName": "michi"
- }
- }
- }
- ],
- "outbounds": [
- {
- "protocol": "freedom",
- "tag": "direct"
- },
- {
- "protocol": "blackhole",
- "tag": "block"
- }
- ]
- }
|