
Security News
npm Adopts OIDC for Trusted Publishing in CI/CD Workflows
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
A lightweight and simple reverse proxy middleware for ASP.NET Core applications. Enables routing and forwarding HTTP requests to configured destinations with support for request/response streaming.
A lightweight reverse proxy middleware for ASP.NET Core applications that allows forwarding requests to different destinations based on route configurations.
Install via NuGet Package Manager:
dotnet add package SimpleReverseProxy
Program.cs
or Startup.cs
:services.AddReverseProxy(Configuration.GetSection("ReverseProxy"));
app.UseSimpleReverseProxy();
appsettings.json
:{
"ReverseProxy": {
"Sources": [
{
"DestinationId": "api1",
"Routes": [ "users", "products" ]
},
{
"DestinationId": "api2",
"Routes": [ "orders", "payments" ]
}
],
"Destinations": [
{
"DestinationId": "api1",
"Url": "https://api1.example.com"
},
{
"DestinationId": "api2",
"Url": "https://api2.example.com"
}
]
}
}
With this configuration:
/users
and /products
will be forwarded to https://api1.example.com
/orders
and /payments
will be forwarded to https://api2.example.com
MIT
FAQs
A lightweight and simple reverse proxy middleware for ASP.NET Core applications. Enables routing and forwarding HTTP requests to configured destinations with support for request/response streaming.
We found that simplereverseproxy demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.