Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md11
-rw-r--r--config/version2
-rw-r--r--web/service/xray.go2
3 files changed, 8 insertions, 7 deletions
diff --git a/README.md b/README.md
index b554353d..6809bc2a 100644
--- a/README.md
+++ b/README.md
@@ -25,10 +25,10 @@ bash <(curl -Ls https://raw.githubusercontent.com/mhsanaei/3x-ui/master/install.
## Install Custom Version
-To install your desired version, add the version to the end of the installation command. e.g., ver `v2.1.2`:
+To install your desired version, add the version to the end of the installation command. e.g., ver `v2.1.3`:
```
-bash <(curl -Ls https://raw.githubusercontent.com/mhsanaei/3x-ui/master/install.sh) v2.1.2
+bash <(curl -Ls https://raw.githubusercontent.com/mhsanaei/3x-ui/master/install.sh) v2.1.3
```
## SSL Certificate
@@ -281,13 +281,14 @@ If you want to use routing to WARP before v2.1.0 follow steps as below:
2. Select `IP Limit Management`.
3. Choose the appropriate options based on your needs.
- - make sure you have access.log on your Xray Configuration
+ - make sure you have ./access.log on your Xray Configuration after v2.1.3 we have an option for it
```sh
"log": {
- "loglevel": "warning",
"access": "./access.log",
- "error": "./error.log"
+ "dnsLog": false,
+ "error": "./error.log",
+ "loglevel": "warning"
},
```
diff --git a/config/version b/config/version
index 8f9174b4..abae0d9a 100644
--- a/config/version
+++ b/config/version
@@ -1 +1 @@
-2.1.2 \ No newline at end of file
+2.1.3 \ No newline at end of file
diff --git a/web/service/xray.go b/web/service/xray.go
index 82d1cc3f..7cd1612c 100644
--- a/web/service/xray.go
+++ b/web/service/xray.go
@@ -95,7 +95,7 @@ func (s *XrayService) GetXrayConfig() (*xray.Config, error) {
if !clientTraffic.Enable {
clients = RemoveIndex(clients, index-indexDecrease)
indexDecrease++
- logger.Info("Remove Inbound User", c["email"], "due the expire or traffic limit")
+ logger.Info("Remove Inbound User ", c["email"], " due the expire or traffic limit")
}