1
0
mirror of https://github.com/umputun/reproxy.git synced 2024-11-24 08:12:31 +02:00
Commit Graph

352 Commits

Author SHA1 Message Date
Negasus
22bea287e4 return error on wrong ssl.type value 2022-02-15 02:59:44 -06:00
dependabot[bot]
a3d0c10302 Bump follow-redirects from 1.13.3 to 1.14.8 in /site
Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.13.3 to 1.14.8.
- [Release notes](https://github.com/follow-redirects/follow-redirects/releases)
- [Commits](https://github.com/follow-redirects/follow-redirects/compare/v1.13.3...v1.14.8)

---
updated-dependencies:
- dependency-name: follow-redirects
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-02-14 11:21:46 -06:00
Umputun
19bd58df41 optimize side build, add --platform=$BUILDPLATFORM 2022-02-13 14:30:07 -06:00
Umputun
abc955a247 clarify default routing for docker provider 2022-02-13 14:23:55 -06:00
Umputun
6b0953f0a6 update deps 2022-02-09 23:19:50 -06:00
dependabot[bot]
cfe149c689 Bump postcss from 8.2.10 to 8.2.13 in /site
Bumps [postcss](https://github.com/postcss/postcss) from 8.2.10 to 8.2.13.
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/postcss/postcss/compare/8.2.10...8.2.13)

---
updated-dependencies:
- dependency-name: postcss
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-01-21 22:05:06 -06:00
dependabot[bot]
b464c343f6 Bump nanoid from 3.1.22 to 3.2.0 in /site
Bumps [nanoid](https://github.com/ai/nanoid) from 3.1.22 to 3.2.0.
- [Release notes](https://github.com/ai/nanoid/releases)
- [Changelog](https://github.com/ai/nanoid/blob/main/CHANGELOG.md)
- [Commits](https://github.com/ai/nanoid/compare/3.1.22...3.2.0)

---
updated-dependencies:
- dependency-name: nanoid
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-01-21 22:02:41 -06:00
Umputun
05069cbfaa revendor with fixed rest lib 2022-01-06 01:48:10 -06:00
Umputun
e2a40bc7a6 update rest library for proper 404 content type 2022-01-06 01:07:50 -06:00
Umputun
a963516783 switch from legacy FS functions to new constructor 2022-01-06 00:16:18 -06:00
Umputun
1315f04ddf bump deps 2022-01-06 00:16:18 -06:00
Umputun
64f57df860 add support of custom 404 page for assets server 2022-01-06 00:16:18 -06:00
Alexey Nesterov
2e8733b152 Correctly handle URL escaped paths
Consider proxy configuration `*,/test/(.*),https://dest/$1`.

When reproxy accepts a request with URL encoded path, i.e.
'/test/a%205%25%20b/' which the encoded form of '/test/a 5% b',
it is using request.URL.Path which is already URL decoded by Golang.

This causes an error in proxy.go while it is trying to validate the
destination with `url.Parse(match.Destination)` as, strictly speaking,
destination URL is not a valid URL anymore, it is `https://target-dest/a 5% b`.

With this fix, the original escaped URL stays as is, correctly passes
the validation and then it is up to destination server to URL decode and
correctly handle the URL.
2021-12-06 11:00:07 -06:00
Umputun
075f66825a update linter and address all lint warns 2021-11-09 12:47:41 -06:00
Umputun
8c59be3612 implement simple on/off basic-auth for all resources
lint: err shadowing

extract htpasswd file load and add tests
2021-11-09 12:47:41 -06:00
Alexey Nesterov
184d5ba87c Support regex in host / server
Main consideration is backward compatibility. example.com should be treated as an exact
match, where possible. So current order is: exact host, regex host, * or "".

Regex matches are cached for better performance, cache is invalidated once mappings are refreshed.
2021-11-04 12:00:17 -05:00
Vasilii Blazhnov
1783f540f8 Removed non-existent files from .golangci.yml 2021-10-09 18:32:21 -05:00
Umputun
e1caebaa60 typos 2021-09-12 13:07:42 -05:00
Umputun
24610af68b update docs with new section about headers 2021-09-12 13:01:19 -05:00
Umputun
e60d4f5d1a fix link to dockerhub in the badge 2021-09-12 12:42:08 -05:00
Umputun
f036f7a8c7 revendor 2021-09-11 14:46:46 -05:00
Umputun
5a3d0db5d9 mod tidy for go 1.17 2021-09-11 14:46:05 -05:00
Umputun
76fa56777f add ability to drop incoming headers #108
In some cases proxy should sanitize incoming headers. --drop-header and $DROP_HEADERS set list of headers (keys) and those headers removed from the request.
2021-09-11 14:38:56 -05:00
Umputun
f908fa6fe5 update deps and revendor 2021-09-11 14:24:09 -05:00
Umputun
c7a2308267 add OverrideHeadersIn and OverrideHeadersOut support
This is an attempt to address #108

Instead of dedicated support of header`s removal it allows to return a flag indicating plugin's full control over headers. With this flag set, the conductor won't mix response headers with originals but rather will count on a plugin to provide all the headers.
2021-09-07 01:53:54 -05:00
Umputun
506ded3ad4 add a warning on missing configuration file for file provider 2021-08-28 12:25:07 -05:00
Umputun
f610a631e4 add docs about base image and spa mode 2021-08-28 12:16:38 -05:00
Pavel Mineev
55480a9148 center badges in readme 2021-08-13 02:01:59 -05:00
Umputun
d364904dd8 fix flaky tests 2021-08-12 22:31:15 -05:00
dependabot[bot]
935e492461
Bump path-parse from 1.0.6 to 1.0.7 in /site (#105) 2021-08-12 20:08:04 -05:00
Umputun
ee0014e215 trigger site updates on README.md changes 2021-08-11 20:37:51 -05:00
Umputun
2b3ed6f166 remove working dir rewrite 2021-08-11 20:27:50 -05:00
Umputun
362756dd08 fix ci for site dockerfile location 2021-08-11 20:25:03 -05:00
Umputun
2ac1f09c1d change site deployment to container with reproxy inside 2021-08-11 20:21:24 -05:00
Umputun
646b6dd8b2 typo 2021-07-18 15:30:07 -05:00
Umputun
1024305a5f adopt nfpms config for goreleaser changes 2021-07-10 03:37:24 -05:00
Umputun
3a230955f0 add info about limiter and more quick examples 2021-07-09 16:49:09 -05:00
Umputun
803a076b79 fix incorrect detection of header's dbl quotes 2021-07-09 15:20:45 -05:00
Umputun
9218ad8bac simplify unnecessary complicated TestCheckHealth 2021-07-08 17:08:35 -05:00
Umputun
cd41237fa5 lint: simplify empty string check 2021-07-08 16:40:14 -05:00
Umputun
56e040b80b allow longer time to start proxy in limiter test 2021-07-08 16:32:24 -05:00
Umputun
cbe7f6f84d drop leading and trailing dbl-quotes from the headers #100 2021-07-08 16:27:42 -05:00
Umputun
207a467960
Header comma (#101)
* allow comma inside of header env list #100

* set proxy header to manually split version
2021-07-08 02:31:27 -05:00
Umputun
71039681e2
Merge pull request #97
* revendor with latest rest lib

* simplify with passThroughHandler

* add deps for throttling
2021-07-03 01:23:50 -05:00
John
a9c7db27b6 fix broken link to plugin example in README 2021-06-30 10:50:22 -05:00
Umputun
2eb78e0e47 fix typo in mock file name 2021-06-29 20:35:50 -05:00
Umputun
ef649f10dc add a custom static example 2021-06-27 12:59:15 -05:00
Umputun
2d974153f0 add container security text 2021-06-26 12:34:33 -05:00
Umputun
5dcb303615 fix comment typo 2021-06-26 12:12:47 -05:00
Umputun
0a2047fc74 update go-pkgz/rest deps 2021-06-20 18:46:46 -05:00