Fabio Milheiro
Fabio Milheiro

Reputation: 8474

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

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

This needs to happen on other computers as well without the need to alter the host file.

How do I do that?

Upvotes: 2

Views: 631

Answers (1)

Keith
Keith

Reputation: 5381

If you are all within the same network, you can add an A Record to your domain controller. Beyond that, there's not much you can do when you're dealing with multiple endpoints. As far as actually performing that task, you may want to discuss on serverfault.

Upvotes: 2

Related Questions