-
-
Notifications
You must be signed in to change notification settings - Fork 749
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
Nitro doesn't work in Windows browser (Error 502). #7770
Comments
You'll need to add link to a minimal reproduction of the issue. I cannot reproduce this issue using the |
I also cannot reproduce it with Edge on Windows. |
Is your windows machine by any chance sealed from accessing the internet. If so, you will need to configure nitro to use the embedded version. |
@PascalSenn we should actually fallback to the embedded version if we detect a 502. |
How to do this? |
app.MapGraphQL().WithOptions(new()
{
Tool = { ServeMode = GraphQLToolServeMode.Embedded }
}); |
Thank you. It works.) |
Product
Nitro
Version
14.1.0
Link to minimal reproduction
http://localhost:5095/graphql
Steps to reproduce
I updated HotChocolate nuget package from version 12.7.0 to 14.1.0 in .net core web api, and after that Nitro does not work in Windows browser (I tried in different browsers, it gives error 502).
On Mac everything works correctly, Nitro opens and works
Steps:
dotnet new install HotChocolate.Templates
dotnet new graphql --name GettingStarted
dotnet run --no-hot-reload
http://localhost:5095/graphql
What is expected?
I want to see GraphQL IDE Nitro on Windows Pc
What is actually happening?
i get HTTP Error 502
Relevant log output
Additional context
No response
The text was updated successfully, but these errors were encountered: