-
-
Notifications
You must be signed in to change notification settings - Fork 13.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2955 from fatedier/dev
bump version to v0.43.0
- Loading branch information
Showing
30 changed files
with
652 additions
and
424 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
### New | ||
|
||
* Added new parameter `config_dir` in frpc to run multiple client instances in one process. | ||
|
||
### Fix | ||
|
||
* Equal sign in environment variables causes parsing error. | ||
* Added `route_by_http_user` in `http` and `tcpmux` proxy to support route to different clients by HTTP basic auth user. | ||
* `CONNECT` method can be forwarded in `http` type proxy. | ||
* Added `tcpmux_passthrough` in `tcpmux` proxy. If true, `CONNECT` request will be forwarded to frpc. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,12 @@ | ||
FROM alpine:3 AS temp | ||
FROM golang:1.18 AS building | ||
|
||
COPY bin/frpc /tmp | ||
|
||
RUN chmod -R 777 /tmp/frpc | ||
COPY . /building | ||
WORKDIR /building | ||
|
||
RUN make frpc | ||
|
||
FROM alpine:3 | ||
|
||
WORKDIR /app | ||
|
||
COPY --from=temp /tmp/frpc /usr/bin | ||
COPY --from=building /building/bin/frpc /usr/bin/frpc | ||
|
||
ENTRYPOINT ["/usr/bin/frpc"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,12 @@ | ||
FROM alpine:3 AS temp | ||
FROM golang:1.18 AS building | ||
|
||
COPY bin/frps /tmp | ||
|
||
RUN chmod -R 777 /tmp/frps | ||
COPY . /building | ||
WORKDIR /building | ||
|
||
RUN make frps | ||
|
||
FROM alpine:3 | ||
|
||
WORKDIR /app | ||
|
||
COPY --from=temp /tmp/frps /usr/bin | ||
COPY --from=building /building/bin/frps /usr/bin/frps | ||
|
||
ENTRYPOINT ["/usr/bin/frps"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.