You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Support range ports mapping in TOML/YAML/JSON configuration file by using go template syntax.
4
-
5
-
For example:
6
-
7
-
```
8
-
{{- range $_, $v := parseNumberRangePair "6000-6006,6007" "6000-6006,6007" }}
9
-
[[proxies]]
10
-
name = "tcp-{{ $v.First }}"
11
-
type = "tcp"
12
-
localPort = {{ $v.First }}
13
-
remotePort = {{ $v.Second }}
14
-
{{- end }}
15
-
```
16
-
17
-
This will create 8 proxies such as `tcp-6000, tcp-6001, ... tcp-6007`.
18
-
19
-
* Health check supports custom request headers.
20
-
* Enable compatibility mode for the Android system to solve the issues of incorrect log time caused by time zone problems and default DNS resolution failures.
3
+
*`https2http` and `https2https` plugin now supports `X-Forwared-For` header.
21
4
22
5
### Fixes
23
6
24
-
* Fix the issue of incorrect interval time for rotating the log by day.
25
-
* Disable quic-go's ECN support by default. It may cause issues on certain operating systems.
7
+
*`X-Forwared-For` header is now correctly set in the request to the backend server for proxy type http.
0 commit comments