...
Restart your Admin Tools 2.0 service
Then, load
https://localhost:9181
orhttps://yourwebdomain:9181
Finalizing Configuration for PFX Certificate Configuration
In web.config file, Adjusted line 33 to set https for secure connection:
Code Block |
---|
// On line 33 of web.config...
<action type="Rewrite" url="https://localhost:9181/{R:1}" /> |
Under nodeconfig.json, set the value for
certificate
andkey
property in certs to null or empty:
Code Block |
---|
"certs": {
"certificate": "", <-- Follow example here
"key": "", <-- Follow example here
"pfx": "<pfx filepath>/cert.pfx"
}, |
...
Option 2: Using a key and pem file
...