Skip to content

Apache documentation #421

Answered by czupet
czupet asked this question in General
Sep 16, 2020 · 7 comments · 3 replies
Discussion options

You must be logged in to vote

Thanks for your help.
I figured it out. The problem was I had to tell Kestrel to accept requests from other IPs besides the localhost

public static IHostBuilder CreateHostBuilder(string[] args) =>
Host.CreateDefaultBuilder(args)
.ConfigureWebHostDefaults(webBuilder =>
{
webBuilder.UseUrls("http://0.0.0.0:5000").UseStartup();
});

Replies: 7 comments 3 replies

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
1 reply
@samsp-msft
Comment options

Comment options

You must be logged in to vote
1 reply
@Tratcher
Comment options

Comment options

You must be logged in to vote
0 replies
Answer selected by czupet
Comment options

You must be logged in to vote
1 reply
@Tratcher
Comment options

Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
3 participants