mirror of
https://github.com/fatedier/frp.git
synced 2025-06-18 01:28:21 +00:00
Compare commits
1 Commits
96c629eb96
...
beba8baf7d
Author | SHA1 | Date | |
---|---|---|---|
|
beba8baf7d |
24
Release.md
24
Release.md
@ -1 +1,25 @@
|
|||||||
|
### Features
|
||||||
|
|
||||||
|
* Support range ports mapping in TOML/YAML/JSON configuration file by using go template syntax.
|
||||||
|
|
||||||
|
For example:
|
||||||
|
|
||||||
|
```
|
||||||
|
{{- range $_, $v := parseNumberRangePair "6000-6006,6007" "6000-6006,6007" }}
|
||||||
|
[[proxies]]
|
||||||
|
name = "tcp-{{ $v.First }}"
|
||||||
|
type = "tcp"
|
||||||
|
localPort = {{ $v.First }}
|
||||||
|
remotePort = {{ $v.Second }}
|
||||||
|
{{- end }}
|
||||||
|
```
|
||||||
|
|
||||||
|
This will create 8 proxies such as `tcp-6000, tcp-6001, ... tcp-6007`.
|
||||||
|
|
||||||
|
* Health check supports custom request headers.
|
||||||
|
* 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.
|
||||||
|
|
||||||
|
### Fixes
|
||||||
|
|
||||||
|
* Fix the issue of incorrect interval time for rotating the log by day.
|
||||||
|
* Disable quic-go's ECN support by default. It may cause issues on certain operating systems.
|
||||||
|
@ -17,7 +17,7 @@ make -f ./Makefile.cross-compiles
|
|||||||
rm -rf ./release/packages
|
rm -rf ./release/packages
|
||||||
mkdir -p ./release/packages
|
mkdir -p ./release/packages
|
||||||
|
|
||||||
os_all='linux windows darwin freebsd android'
|
os_all='linux windows darwin freebsd'
|
||||||
arch_all='386 amd64 arm arm64 mips64 mips64le mips mipsle riscv64'
|
arch_all='386 amd64 arm arm64 mips64 mips64le mips mipsle riscv64'
|
||||||
|
|
||||||
cd ./release
|
cd ./release
|
||||||
|
Loading…
x
Reference in New Issue
Block a user