...
...
...
...
...
...
...
...
...
...
Warning |
---|
Please note that some of these configuration changes may be reverted when upgrading the installed software. |
Supervisor 2.3 and up
Supervisor 2.3 changes how HTTPS is configured for Supervisor. The installer does not support configuring HTTPS automatically, however HTTPS can be configured manually:
...
In the example below, replace the CERT_HASH value with the Thumbprint value. Remove the extra spaces. Then paste the code block in an elevated Command Prompt and run.
Update: You also need to pay attention to the certificate store. It defaults to "MY", but for Let's Encrypted certificates it will be installed in Computer → WebHosting. This can be seen with this command:
Code Block | ||
---|---|---|
| ||
netsh http show sslcert |
Here you can see that the certificate we're intersted resides in certstore "WebHosting".
Code Block |
---|
SET CERT_HASH=C5211345EED22B07D23706E37E18C1D40D25465D SET APP_ID={bfa7f0ce-bdd8-4dd9-866c-f944beae7f93} SET CERT_STORE_NAME=MY netsh http add sslcert ipport=0.0.0.0:9777 appid=%APP_ID% certhash=%CERT_HASH% certstorename=%CERT_STORE_NAME% netsh http add sslcert ipport=0.0.0.0:9778 appid=%APP_ID% certhash=%CERT_HASH% certstorename=%CERT_STORE_NAME% netsh http add sslcert ipport=0.0.0.0:9779 appid=%APP_ID% certhash=%CERT_HASH% certstorename=%CERT_STORE_NAME% netsh http add sslcert ipport=0.0.0.0:9780 appid=%APP_ID% certhash=%CERT_HASH% certstorename=%CERT_STORE_NAME% netsh http add sslcert ipport=0.0.0.0:9781 appid=%APP_ID% certhash=%CERT_HASH% certstorename=%CERT_STORE_NAME% |
...