From 4b5409890c18087dbc35dba823d7c43d24c61c93 Mon Sep 17 00:00:00 2001 From: oooo-ps Date: Fri, 27 Jun 2025 19:21:23 +0300 Subject: [PATCH] Updated SSH (markdown) --- SSH.md | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/SSH.md b/SSH.md index 44fefa2..fc5417a 100644 --- a/SSH.md +++ b/SSH.md @@ -1,8 +1,6 @@ -## Linux +The tips below provide configuration details for accessing remote files over SSH. -The tips below provide configuration details for accessing remote files over SSH and simply syncing your local content with the server. - -### Create system user +## System user 1. `useradd -m nexy` - create new system user with its home directory 2. `passwd nexy` - provide strong password @@ -10,7 +8,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 +18,7 @@ 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 +## 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.