Update _index.en.md

This commit is contained in:
Mr-Update 2023-10-01 13:57:32 +02:00 committed by GitHub
parent 5a3d160c5b
commit 56c75cf858
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -58,8 +58,7 @@ A simple way to check is using telnet. To test in the Linux terminal type `telne
Your mail server may not be using port 25. Please make sure you are using the correct ports. Your mail server may not be using port 25. Please make sure you are using the correct ports.
## Can I deploy RustDesk using PowerShell or similar? ## Can I deploy RustDesk using PowerShell or similar?
Sure, you can find scripts to aid deployment here https://rustdesk.com/docs/en/self-host/client-deployment/ Sure, you can find scripts to aid deployment [here](https://rustdesk.com/docs/en/self-host/client-deployment/).
## I have installed RustDesk Server Pro manually but the API web console isn't behind SSL, how can I secure this? ## I have installed RustDesk Server Pro manually but the API web console isn't behind SSL, how can I secure this?
Use a proxy like Nginx, the simple install script has one, it's really simple. [This is how we do it](https://github.com/rustdesk/rustdesk-server-pro/blob/493ad90daf8815c3052ff4d0d4aa9cc07e411efa/install.sh#L252). Use a proxy like Nginx, the simple install script has one, it's really simple. [This is how we do it](https://github.com/rustdesk/rustdesk-server-pro/blob/493ad90daf8815c3052ff4d0d4aa9cc07e411efa/install.sh#L252).
@ -130,11 +129,11 @@ $rdver = ((Get-ItemProperty "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Un
if ($rdver -eq "1.2.2") if ($rdver -eq "1.2.2")
{ {
write-output "RustDesk $rdver is the newest version." write-output "RustDesk $rdver is the newest version."
exit exit
} }
If (!(Test-Path C:\Temp)) { if (!(Test-Path C:\Temp))
{
New-Item -ItemType Directory -Force -Path C:\Temp > null New-Item -ItemType Directory -Force -Path C:\Temp > null
} }