Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

YARP app to replace nginx bits in JS example #228

Open
IEvangelist opened this issue Apr 24, 2024 · 0 comments
Open

YARP app to replace nginx bits in JS example #228

IEvangelist opened this issue Apr 24, 2024 · 0 comments

Comments

@IEvangelist
Copy link
Member

IEvangelist commented Apr 24, 2024

Does YARP support a simple proxy config, where I can intercept /api HTTP requests, and redirect them to the configured weather API url?

Yes: https://microsoft.github.io/reverse-proxy/articles/config-files.html

Perhaps we could add a YARP project to the solution and use it as the host for all the JS apps. In theory, the YARP project can be as simple as:

var builder = WebApplication.CreateBuilder(args);
builder.Services.AddReverseProxy()
    .LoadFromConfig(builder.Configuration.GetSection("ReverseProxy"));
var app = builder.Build();
app.MapReverseProxy();
app.Run();

Originally posted by @DamianEdwards in #226 (comment)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant