Posted On March 31, 2019

ScreenConnect and NGINX

kimconnect 0 comments
blog.KimConnect.com >> Windows >> ScreenConnect and NGINX
source:
 
Create TLS certificate folder
sudo mkdir /etc/nginx/tls
cd /etc/nginx/tls
 
Create server key
sudo openssl genrsa -out domainname.key 2048
 
Obtain free cert from https://startSSL.com
 
ScreenConnect edits:
web.config
<add key=”WebServerAddressableUri” value=”https://support.myurl.com/connect/” />

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Some Stories in the Backlog

1. Upgrade pods with 32" monitors - Make collaboration easier - Increase productivity   2.…

PowerShell: Install Apps On List of Computers

[string[]]$computers=@( 'SERVER01', 'SERVER02', 'SERVER03' ) [string]$chocoAppName='notepad2' [version]$minVersion='4.2.25.20160422' $results=[hashtable]@{} foreach ($computer in $computers){ $result=invoke-command -computer $computer…

How to Change a Disk Signature using Diskpart

Application: to potentially resolve issues with duplicate disk signature in a Windows Virtual Machine Symptom:…