...
Export the certificate from IIS:
a. From your Start menu, open “Internet Information Services (IIS) Manager”
b. Click on the server name in the "Connections" pane (located left-hand side)
c. In the middle pane, double-click "Server Certificates" (under IIS section)
d. Select the certificate you want to export
e. Click "Export" in the "Actions" pane (located on the right-hand side)
f. Follow the wizard to export the certificate as a .pfx file (Note: remember the passphrase you specified to protect the cert)
g. Export the PFX to your GEO Jobe product’s main folder
(Note: if you don’t have an export option you may need to re-import the certificate to IIS with the allow export option)
Open the command prompt and navigate to the Admin Tools 2.0 main directory and insert:
Code Block |
---|
index pfx <INSERT PASSPHRASE HERE> |
...
Restart the Admin Tools server, and open the browser using the HTTPS location.
Finalizing Configuration for your HTTPS Certificate (for All Options Above)
It is important to properly specify what configuration type that is being used for your Admin Tools certificate and nullify or providing empty values to other certificate properties. Improper specification of the certification type may cause complications when running Admin Tools.
Under nodeconfig.json, specify which HTTPS certificate type you will use for your environment (under
certs
) and property in certs to null or empty:
Code Block |
---|
Example below: Using .pfx for your HTTPS certificate
"certs": {
"certificate": "", <-- Empty value
"key": "", <-- Empty value
"pfx": "<pfx filepath>/cert.pfx", <-- pfx filepath example
"pfximport": "" <-- Empty value
}, |
If using
certificate
andkey
, ensure that both contain filepath values while pfx and pfximport are left blank. If usingpfximport
, provide filename and leave the other property values blank.
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}" /> |
Info |
---|
If you encounter any issues completing these steps, please contact support@geo-jobe.com for assistance. |
...