Configure Hosting Path Base
The path base can be configured in appsettings.json
located in the Authority Server installation directory.
The path base must be prefixed with a forward slash (/
) otherwise the application will fail to start.
For example,
{
"HostingOptions": {
"BasePath": "/authority"
}
}
In the above example the path base of requests will be /authority
. Meaning the default base address for the website will be http://localhost:32380/authority
.