View on GitHub

reading-notes

My learning journal for Code Fellows

API Deployment

Django Settings Best Practices

Different Django Configuration Approaches

What is SSH

Definition

SSH or Secure Shell Protocol is a remote administration protocol that allows users to access, control and modify their remote servers over the internet.

Using SSH

You access SSH through your shell, and then create an SSH command with three distinct parts: the ssh key, the user, and the host. the ssh command lets the system know you want to open a remote terminal. The user represents the account that you would like to access. The host refers to the computer that you would like to access, which can either be an IP address or a domain name.

When accessing the remote terminal, SSH uses three separate kinds of encryption. This allows a very secure connection between you and the remote terminal.