Services loaded OMS Server share the same base url as specified in appSettings.config.
Url access control
It may be necessary to give the running user access to listen on a specific url. This can be done with a command similar to:
netsh http add urlacl url=http://*:$PORT/ user=$domain\$name
appSettings.config.
Code Block |
---|
<!-- This is base url that all services will be created on --> <add key="BaseUrl" value="<http://test-app-01:8080/"> /> |
...