#ssh Articles


  • Mon 20 April 2020
  • web

Remote debugging a Django project in VS Code

In this tutorial you will learn how to use VS Code for remote debugging. I'll show you how to debug a Django application running on a remote SSH server or in a Docker container.

Configure SFTP access to your Ubuntu server through SSH

Sometimes you have to give your users a way to manage files on your server. A typical scenario is a web server where your users manage their websites by themselves. The classical approach in this scenario was to use FTP to give file management capabilities to your users, but it …