Configure the SolarWinds Platform Web Console to require SSL (deprecated)
This information is deprecated and only relevant for versions that have already reached end of life. See End of Life Policy for details.
- In a text editor, open the SolarWinds Platform Web Console configuration file,
web.config
, on your primary SolarWinds server.The default location of
web.config
isC:\Inetpub\SolarWinds\
. - In the
<system.web>
section, add the line:<httpCookies requireSSL="true" />
- Locate the line:
<forms loginUrl="~/Orion/Login.aspx" />
- Edit it to
<forms loginUrl="~/Orion/Login.aspx" requireSSL=”true” />
. - To enable the HTTPOnly flag for added security, locate the
<httpCookies>
tag, and edit it to the following:<httpCookies httpOnlyCookies="true" requireSSL="true" />
- Save and close
web.config
.