We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
nginx
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)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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:
Originally posted by @DamianEdwards in #226 (comment)
The text was updated successfully, but these errors were encountered: