Use fake domain locally in Visual Studio without modifying the host file directly

I have an application that works here http: // localhost: 10205 / , but I need it to run locally as http://somethingelse.com/ .

This should happen on other computers without having to modify the host file.

How to do it?

+2
source share
1 answer

If you are all on the same network, you can add an A record to the domain controller. Other than this, you cannot do much when dealing with multiple endpoints. As for the actual implementation of this task, you can discuss it on the server.

+2
source

All Articles