How to keep your server secure

Make sure to read through this, it is incredibly important to make sure your server is secure.

Important: We will make sure that our backend is completely secure, however, it is the client's responsibility to make sure that their server is secure.

Run the following commands on your server. 1. Go to Windows Search, and search Powershell

2. Choose a port of your liking, the port has to be greater than 1000, make sure you remember the port.

3. Run the following commands (Change 3390 to the port you want, 3390 is just an example) Set-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp' -name "PortNumber" -Value 3390 New-NetFirewallRule -DisplayName 'RDPPORTLatest' -Profile 'Public' -Direction Inbound -Action Allow -Protocol TCP -LocalPort 3390 New-NetFirewallRule -DisplayName 'RDPPORTLatestpriv' -Profile 'Private' -Direction Inbound -Action Allow -Protocol TCP -LocalPort 3390 4) Restart your server and you are good to go.

5) Make sure you connect to your server by putting ip:port so for example if your IP is 192.168.0.1 and your port is 3390 you would use 192.168.0.1:3390 as the IP you would connect with.

Last updated