Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Expand
titleHow to set host administration port numbersnumber
  1. Edit <installdir>/Configuration/appsettings.json file.
  2. Add following setting in configuration file and change host administration (5000) to free ports on your server. In this example we change host administration to 5001.

    Code Block
    {
      "HostAdmin": {
        "Kestrel": {
          "Endpoints": {
            "Http": {
              "Url": "http://*:5001"
            }
          }
        },
       }
    }

...