-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathSetup.txt
More file actions
21 lines (16 loc) · 812 Bytes
/
Setup.txt
File metadata and controls
21 lines (16 loc) · 812 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
1. Bind SSL to PORT:
----------------------------------
RUN:
netsh http delete sslcert ipport=0.0.0.0:8090
netsh http add sslcert ipport=0.0.0.0:8090 certstorename=Root certhash=887ac312d2fbd465ae4fd03665d748131249ad36 appid={2f244ac1-9d8d-45d8-b46b-8ba79a326ebc}
where
appid={2f244ac1-9d8d-45d8-b46b-8ba79a326ebc} - random guid, use this
certhash=111fdaf48275953db528be89fac8f0324c735297 - hash of your SSL cert to use, you can find one in SSL cert properties
2. Register satellite as a service
----------------------------------
RUN:
sc stop "AspNetDeploy Satellite"
sc delete "AspNetDeploy Satellite"
sc create "AspNetDeploy Satellite" binpath= "D:\Services\AspNetDeploySatellite\Service\SatelliteServiceHost.exe"
3. Fill APP.CONFIG with valid data
----------------------------------