Configure the SolarWinds Platform Web Console to require SSL (deprecated)
This information is deprecated as of SolarWinds Platform version 2017.1, which includes NPM 12.1, SAM 6.4, NCM 7.6, and VMAN 7.1.
- 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
.