All Projects → ProxyKit → Recipes

ProxyKit / Recipes

Licence: Apache-2.0 license
Recipes are code samples that help you create proxy solutions for a variety of scenarios.

Programming Languages

C#
18002 projects
HTML
75241 projects
CSS
56736 projects
javascript
184084 projects - #8 most used programming language

ProxyKit Recipes

Image

Recipes are code samples that help you create proxy solutions for your needs. If you have any ideas for a recipe, or can spot any improvements to the ones below, please send a pull request! Recipes that stand test of time may be promoted to an out-of-the-box feature in a future version of ProxyKit.

Recipes are code samples that help you create proxy solutions for your needs. If you have any ideas for a recipe, or can spot any improvements to the ones below, please send a pull request! Recipes that stand test of time may be promoted to an out-of-the-box feature in a future version of ProxyKit.

1. Simple Forwarding

Forward request to a single upstream host.

Recipes/01_Simple.cs

2. Proxy Paths

Hosting multiple proxies on separate paths.

Recipes/02_Paths.cs

3. Claims Based Tenant Routing

Routing to a specific upstream host based on a TenantId claim for an authenticated user.

Recipes/03_TenantRouting.cs

4. Authentication offloading with Identity Server

Using IdentityServer to handle authentication before forwarding to upstream host.

Recipes/04_IdSrv.cs

5. Weighted Round Robin Load Balancing

Weighted Round Robin load balancing to two upstream hosts.

Recipes/05_RoundRobin.cs

6. In-memory Testing

Testing behaviour or your ASP.NET Core application by running two instances behind round robin proxy. Really useful if your application has eventually consistent aspects.

Recipes/06_Testing.cs

7. Customise Upstream Requests

Customise the upstream request by adding a header.

Recipes/07_CustomiseUpstreamRequest.cs

8. Customise Upstream Responses

Customise the upstream response by removing a header.

Recipes/08_CustomiseUpstreamResponse.cs

9. Consul Service Discovery

Service discovery for an upstream host using Consul.

Recipes/09_ConsulServiceDisco.cs

10. Copy X-Forwarded Headers

Copies X-Forwarded-For, X-Forwarded-Host, X-Forwarded-Proto and X-Forwarded-PathBase headers from the incoming request. Typically only done when the proxy is in a chain of known proxies. Is it NOT recommended that you blindly accept these headers from the public Internet.

Recipes/10_CopyXForwarded.cs

11. Caching Upstream Responses with CacheCow

Using CacheCow.Client to cache responses from upstream servers using standard HTTP caching headers.

Recipes/11_CachingWithCacheCow.cs

12. Conditional Proxying

Using app.UseWhen() to conditionally forward the request based on asserting a value on HttpContext.

Recipes/12_ConditionalProxying.cs

13. Client Certificate

Using a client certificate in requests to upstream hosts.

Recipes/13_ClientCertificate.cs

14. Source IP Blocking

Block requests from sources whose IP addresses is not allowed.

Recipes/14_SourceIPBlocking.cs

15. WebSockets

How to proxy WebSocket connections.

Recipes/14_WebSockets.cs

16. SignalR

Proxying for SignalR whose protocol requires both HTTP and WebSocket forwarding to upstream hosts.

Recipes/16_SignalR.cs

17. SignalR with Path

Proxying for SignalR on a specific path.

Recipes/17_SignalROnPath.cs

18. Automatic Decompression

Automatic decompression of responses from upstream hosts allowing response body manipulation.

Recipes/18_AutomaticDecompression.cs

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].