From 26f250541034515ef739202f72f9b183d9df5015 Mon Sep 17 00:00:00 2001 From: oooo-ps Date: Fri, 27 Jun 2025 19:52:00 +0300 Subject: [PATCH] Updated SSH (markdown) --- SSH.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/SSH.md b/SSH.md index f83a6aa..402b056 100644 --- a/SSH.md +++ b/SSH.md @@ -1,8 +1,10 @@ The tips below provide configuration details for accessing remote files over SSH. -## Linux +## Server -### System user +### Linux + +#### System user 1. `useradd -m nexy` - create new system user with its home directory 2. `passwd nexy` - provide strong password @@ -10,7 +12,7 @@ The tips below provide configuration details for accessing remote files over SSH 4. `cd` - navigate to the home folder 5. `mkdir /home/nexy/public` - create location for the public fies -### Firewall +#### Firewall Don't forget to open the SSH port to access your server remotely: @@ -20,7 +22,9 @@ sudo ufw allow 22 * replace `22` with your custom port (if it's not default) * use additional filters to allow access from specified hosts. -## VSCode +## Client + +### VSCode This example is useful for syncing text files on save. Make sure you have this [SSH extension](https://marketplace.visualstudio.com/items?itemName=Natizyskunk.sftp) installed to continue.