...
Code Block |
---|
title | List current bindings |
---|
theme | Midnight |
---|
language | powershell |
---|
|
netsh http show sslcert
|
Code Block |
---|
title | Example output |
---|
theme | RDark |
---|
language | none |
---|
|
SSL Certificate bindings:
-------------------------
IP:port : 192.168.0.179:443
Certificate Hash : 00112233445566778899aabbccddeeff00112233
Application ID : {aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee}
Certificate Store Name : MY
Verify Client Certificate Revocation : Enabled
Verify Revocation Using Cached Client Certificate Only : Disabled
Usage Check : Enabled
Revocation Freshness Time : 0
URL Retrieval Timeout : 0
Ctl Identifier :
Ctl Store Name :
DS Mapper Usage : Disabled
Negotiate Client Certificate : Disabled
|
...
Code Block |
---|
title | Removing an existing binding |
---|
theme | RDark |
---|
language | none |
---|
|
netsh http delete sslcert ipport=192.168.0.179:443
|
...
Code Block |
---|
title | Adding a new binding |
---|
theme | RDark |
---|
language | none |
---|
|
netsh http add sslcert ipport=192.168.0.179:443 certhash=0011223344556677889900112233445566778899 appid={ecc39c98-e826-4009-9401-2a5c6e7babbc}
|
...
Code Block |
---|
title | settings.xml |
---|
theme | RDark |
---|
language | html/xml |
---|
|
...
<web>
<bindAddress>192.168.0.179</bindAddress>
<protocol>https</protocol>
<port>443</port>
<username>xxxxxxxxxx</username>
<password>xxxxxxxxxx</password>
</web>
... |
As with any manual change to the configuration file, the Echo application should be restarted for your changes to take effect.
...