From ee570bf9dbcaf119e62b533736c85a921da2705c Mon Sep 17 00:00:00 2001 From: pulsarice Date: Tue, 16 Apr 2024 03:41:25 +0330 Subject: [PATCH] Correct loopback example "tag" was written instead of "inboundTag" in the example which caused much frustration for me when I was trying to configure my server using the example provided. I corrected it to spare others from having the same problem. --- docs/en/config/outbounds/loopback.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/en/config/outbounds/loopback.md b/docs/en/config/outbounds/loopback.md index 6405e258b..257a00b03 100644 --- a/docs/en/config/outbounds/loopback.md +++ b/docs/en/config/outbounds/loopback.md @@ -27,7 +27,7 @@ If you need to do some more detailed routing for traffics that have been routed "protocol": "loopback", "tag": "need-to-split", "settings": { - "tag": "traffic-input" // This tag will be used as the inboundTag inside the RuleObject + "inboundTag": "traffic-input" // This tag will be used as the inboundTag inside the RuleObject } }, { @@ -54,4 +54,4 @@ If you need to do some more detailed routing for traffics that have been routed ] } } -``` \ No newline at end of file +```