I am trying to run a blazor application that I have made, and I would like to publish for people who are not on my computer. I have changed the launchsettings.json to the following
"commandName": "Project",
"launchBrowser": true,
"applicationUrl": "https://localhost:5001;http://localhost:5000;https://192.168.50.15:16000;",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
}
As I understand it I should be able to connect to this web page on my phone on the same network. However, when I go to 192.168.50.15:16000 on my phone I get a ERR_EMPTY_RESPONSE in google chrome. What am I doing wrong?