{"id":40631,"date":"2022-06-13T12:30:53","date_gmt":"2022-06-13T17:30:53","guid":{"rendered":"https:\/\/www.rosehosting.com\/blog\/?p=40631"},"modified":"2022-10-05T02:21:20","modified_gmt":"2022-10-05T07:21:20","slug":"install-vsftpd-with-ssl-tls-on-ubuntu-20-04","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/install-vsftpd-with-ssl-tls-on-ubuntu-20-04\/","title":{"rendered":"Install Vsftpd with SSL\/TLS on Ubuntu 20.04"},"content":{"rendered":"
<\/div>\r\n

\"how<\/p>\r\n

Vsftpd ( Very Secure File Transfer Protocol Daemon ) is the default FTP server for Ubuntu, CentOS, Fedora, and RHEL Linux distributions. Vsftpd is a stable, fast, and secure FTP server used for file transfers from the client to remote servers and vice versa.<\/p>\r\n\r\n\r\n\r\n

Vsftpd among other features has IPv6 and TLS support, we can use also use SFTP ( SSH File Transfer Protocol ) to run FTP over SSH, but for this tutorial, you will learn how to secure FTP with SSL\/TLS. SSL\/TLS support is built into many internet communications frameworks and the certificate visibility offers higher trust for authentication.<\/p>\r\n

<\/p>\r\n\r\n\r\n\r\n

We will start by updating the Ubuntu 20.04 packages with the command:<\/p>\r\n\r\n\r\n\r\n

$ sudo apt update<\/code><\/pre>\r\n\r\n\r\n\r\n

Then we can proceed to install vsftpd:<\/p>\r\n\r\n\r\n\r\n

$ sudo apt install vsftpd<\/code><\/pre>\r\n\r\n\r\n\r\n

Next, we can check the vsftp version with vsftpd -v and we can also check if the vsftpd service is running with:<\/p>\r\n\r\n\r\n\r\n

$ systemctl status vsftpd<\/code><\/pre>\r\n\r\n\r\n\r\n

We can configure vsftpd from the configuration file that can be found in \/etc\/vsftpd.conf<\/p>\r\n\r\n\r\n\r\n

Make sure you create a copy of the original file before we start editing the configuration file.<\/p>\r\n\r\n\r\n\r\n

Now we can open the configuration file with:<\/p>\r\n\r\n\r\n\r\n

$ sudo nano \/etc\/vsftpd.conf<\/code><\/pre>\r\n\r\n\r\n\r\n

You can notice the following configuration which is enabled by default:<\/p>\r\n\r\n\r\n\r\n

# Allow anonymous FTP? (Disabled by default).\r\nanonymous_enable=NO\r\n#\r\n# Uncomment this to allow local users to log in.\r\nlocal_enable=YES<\/code><\/pre>\r\n\r\n\r\n\r\n

If we want to allow users to add, change, or remove files and directories we will need to uncomment the line #write_enable=YES<\/strong> by removing the #<\/strong> symbol.<\/p>\r\n\r\n\r\n\r\n

Next, you can create a list of users that will have access by adding the following lines in the configuration:<\/p>\r\n\r\n\r\n\r\n

userlist_enable=YES\r\nuserlist_file=\/etc\/vsftpd.userlist\r\nuserlist_deny=NO<\/code><\/pre>\r\n\r\n\r\n\r\n

\/etc\/vsftpd.userlist will be the file to which we can add users that we want to give access.<\/p>\r\n\r\n\r\n\r\n

You can add the users with the command:<\/p>\r\n\r\n\r\n\r\n

echo \"user\" | sudo tee -a \/etc\/vsftpd.userlist<\/code><\/pre>\r\n\r\n\r\n\r\n

Or you can simply open the file with your favorite file editor and add the name of the users each in a new line.<\/p>\r\n\r\n\r\n\r\n

You can also enable Chroot Jail for the users in the configuration file so the users cannot access the filesystem outside of its home directory with uncommenting the line:<\/p>\r\n\r\n\r\n\r\n

chroot_local_user=YES<\/code><\/pre>\r\n\r\n\r\n\r\n

 <\/p>\r\n\r\n\r\n\r\n

Securing Transmissions using SSL\/TLS<\/h2>\r\n\r\n\r\n\r\n

FTP is not encrypting the data including the user credentials during the FTP session. That\u2019s why to increase security you should use SFTP or enable TLS\/SSL for encrypted transfer. If you have a domain pointing to your server you can also use a free SSL Certificate from Let\u2019s Encrypt. With an SSL certificate installed you will also be to see the certificate information before connecting, to verify that you are connecting to the right server.<\/p>\r\n\r\n\r\n\r\n

You can use the following command to generate a self-signed certificate that is valid for 1 year:<\/p>\r\n\r\n\r\n\r\n

sudo openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout \/etc\/ssl\/private\/vsftpd.pem -out \/etc\/ssl\/private\/vsftpd.pem<\/code><\/pre>\r\n\r\n\r\n\r\n

You can answer the questions accordingly or just skip the questions using enter for default values.<\/p>\r\n\r\n\r\n\r\n

This will generate the certificate and private key in the \/etc\/ssl\/private\/ directory.<\/p>\r\n\r\n\r\n\r\n

Now you will need to change the \/etc\/vsftpd.conf configuration file to the location of the certificate and the private key. Open the \/etc\/vsftpd.conf with your favorite editor and change the values to the right location and make sure to enable SSL also.


<\/p>\r\n\r\n\r\n\r\n

...\r\nrsa_cert_file=\/etc\/ssl\/private\/vsftpd.pem\r\nrsa_private_key_file=\/etc\/ssl\/private\/vsftpd.pem\r\nssl_enable=YES\r\n...<\/code><\/pre>\r\n\r\n\r\n\r\n

Save the file and restart the vsftpd service for the changes to take effect with:<\/p>\r\n\r\n\r\n\r\n

systemctl restart vsftpd<\/code><\/pre>\r\n\r\n\r\n\r\n

Now using an FTP client you can connect securely to your FTP server, in this tutorial we will be using the Filezilla FTP client.<\/p>\r\n\r\n\r\n\r\n

To create the FTP connection, open the Site Manager and use the following options to connect to your server.<\/p>\r\n\r\n\r\n\r\n

\"install<\/figure>\r\n\r\n\r\n\r\n

For the Host <\/strong>value use the IP address of your FTP server and make sure that you choose the \u201cRequire explicit FTP over TLS<\/strong>\u201d option for Encryption.<\/p>\r\n\r\n\r\n\r\n

After you click on Connect<\/strong>, you will see the certificate information and you can check the \u201cAlways trust this certificate in future sessions<\/strong>\u201d if you don\u2019t want to receive this message in future sessions.<\/p>\r\n\r\n\r\n\r\n

\"install<\/figure>\r\n\r\n\r\n\r\n

 <\/p>\r\n

Click OK <\/strong>and you will notice in the Status <\/strong>screen that TLS connection is established and you are successfully connected to your FTP server.<\/p>\r\n

 <\/p>\r\n\r\n\r\n\r\n

\"installing<\/figure>\r\n

 <\/p>\r\n\r\n\r\n\r\n

Of course, if you are one of our Ubuntu Hosting<\/a> customers, you don\u2019t have to install Vsftpd with SSL\/TLS on your Ubuntu 20.04 VPS \u2013 simply ask our admins, sit back, and relax. Our admins will install Vsftpd with SSL\/TLS on Ubuntu 20.04 for you immediately.<\/p>\r\n\r\n\r\n\r\n

PS. If you liked this post about how to install Vsftpd with SSL\/TLS on Ubuntu 20.04 VPS, please share it with your friends on social networks or simply leave a comment in the comments section. Thanks.<\/p>\r\n","protected":false},"excerpt":{"rendered":"

Vsftpd ( Very Secure File Transfer Protocol Daemon ) is the default FTP server for Ubuntu, CentOS, Fedora, and RHEL … <\/p>\n

Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":41574,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[13,1698],"tags":[74,2016,59,202],"yoast_head":"\nInstall Vsftpd with SSL\/TLS on Ubuntu 20.04 - RoseHosting<\/title>\n<meta name=\"description\" content=\"Install Vsftpd with SSL\/TLS on Ubuntu 20.04 - RoseHosting\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.rosehosting.com\/blog\/install-vsftpd-with-ssl-tls-on-ubuntu-20-04\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Install Vsftpd with SSL\/TLS on Ubuntu 20.04 - RoseHosting\" \/>\n<meta property=\"og:description\" content=\"Install Vsftpd with SSL\/TLS on Ubuntu 20.04 - RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/install-vsftpd-with-ssl-tls-on-ubuntu-20-04\/\" \/>\n<meta property=\"og:site_name\" content=\"RoseHosting\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/RoseHosting\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/rosehosting.helpdesk\" \/>\n<meta property=\"article:published_time\" content=\"2022-06-13T17:30:53+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-10-05T07:21:20+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/05\/how-to-install-vsftpd-with-ssl-tls-on-ubuntu-20.04.jpg?v=1653307676\" \/>\n\t<meta property=\"og:image:width\" content=\"742\" \/>\n\t<meta property=\"og:image:height\" content=\"372\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Jeff Wilson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:site\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jeff Wilson\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-vsftpd-with-ssl-tls-on-ubuntu-20-04\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-vsftpd-with-ssl-tls-on-ubuntu-20-04\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"Install Vsftpd with SSL\/TLS on Ubuntu 20.04\",\"datePublished\":\"2022-06-13T17:30:53+00:00\",\"dateModified\":\"2022-10-05T07:21:20+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-vsftpd-with-ssl-tls-on-ubuntu-20-04\/\"},\"wordCount\":731,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-vsftpd-with-ssl-tls-on-ubuntu-20-04\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/05\/how-to-install-vsftpd-with-ssl-tls-on-ubuntu-20.04.jpg\",\"keywords\":[\"ssl\",\"tls\",\"ubuntu\",\"vsftpd\"],\"articleSection\":[\"Tutorials\",\"Ubuntu\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/install-vsftpd-with-ssl-tls-on-ubuntu-20-04\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-vsftpd-with-ssl-tls-on-ubuntu-20-04\/\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/install-vsftpd-with-ssl-tls-on-ubuntu-20-04\/\",\"name\":\"Install Vsftpd with SSL\/TLS on Ubuntu 20.04 - RoseHosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-vsftpd-with-ssl-tls-on-ubuntu-20-04\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-vsftpd-with-ssl-tls-on-ubuntu-20-04\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/05\/how-to-install-vsftpd-with-ssl-tls-on-ubuntu-20.04.jpg\",\"datePublished\":\"2022-06-13T17:30:53+00:00\",\"dateModified\":\"2022-10-05T07:21:20+00:00\",\"description\":\"Install Vsftpd with SSL\/TLS on Ubuntu 20.04 - RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-vsftpd-with-ssl-tls-on-ubuntu-20-04\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/install-vsftpd-with-ssl-tls-on-ubuntu-20-04\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-vsftpd-with-ssl-tls-on-ubuntu-20-04\/#primaryimage\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/05\/how-to-install-vsftpd-with-ssl-tls-on-ubuntu-20.04.jpg\",\"contentUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/05\/how-to-install-vsftpd-with-ssl-tls-on-ubuntu-20.04.jpg\",\"width\":742,\"height\":372,\"caption\":\"how to install vsftpd with ssl\/tls on ubuntu 20.04\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-vsftpd-with-ssl-tls-on-ubuntu-20-04\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.rosehosting.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Install Vsftpd with SSL\/TLS on Ubuntu 20.04\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#website\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/\",\"name\":\"RoseHosting\",\"description\":\"Premium Linux Tutorials Since 2001\",\"publisher\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.rosehosting.com\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\",\"name\":\"RoseHosting\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png\",\"contentUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png\",\"width\":192,\"height\":192,\"caption\":\"RoseHosting\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/RoseHosting\",\"https:\/\/x.com\/rosehosting\",\"https:\/\/www.linkedin.com\/in\/rosehosting\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713\",\"name\":\"Jeff Wilson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g\",\"caption\":\"Jeff Wilson\"},\"description\":\"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.\",\"sameAs\":[\"https:\/\/www.rosehosting.com\",\"https:\/\/www.facebook.com\/rosehosting.helpdesk\"],\"url\":\"https:\/\/www.rosehosting.com\/blog\/author\/jwilson\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Install Vsftpd with SSL\/TLS on Ubuntu 20.04 - RoseHosting","description":"Install Vsftpd with SSL\/TLS on Ubuntu 20.04 - RoseHosting","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.rosehosting.com\/blog\/install-vsftpd-with-ssl-tls-on-ubuntu-20-04\/","og_locale":"en_US","og_type":"article","og_title":"Install Vsftpd with SSL\/TLS on Ubuntu 20.04 - RoseHosting","og_description":"Install Vsftpd with SSL\/TLS on Ubuntu 20.04 - RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/install-vsftpd-with-ssl-tls-on-ubuntu-20-04\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2022-06-13T17:30:53+00:00","article_modified_time":"2022-10-05T07:21:20+00:00","og_image":[{"width":742,"height":372,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/05\/how-to-install-vsftpd-with-ssl-tls-on-ubuntu-20.04.jpg?v=1653307676","type":"image\/jpeg"}],"author":"Jeff Wilson","twitter_card":"summary_large_image","twitter_creator":"@rosehosting","twitter_site":"@rosehosting","twitter_misc":{"Written by":"Jeff Wilson","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.rosehosting.com\/blog\/install-vsftpd-with-ssl-tls-on-ubuntu-20-04\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-vsftpd-with-ssl-tls-on-ubuntu-20-04\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"Install Vsftpd with SSL\/TLS on Ubuntu 20.04","datePublished":"2022-06-13T17:30:53+00:00","dateModified":"2022-10-05T07:21:20+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-vsftpd-with-ssl-tls-on-ubuntu-20-04\/"},"wordCount":731,"commentCount":0,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-vsftpd-with-ssl-tls-on-ubuntu-20-04\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/05\/how-to-install-vsftpd-with-ssl-tls-on-ubuntu-20.04.jpg","keywords":["ssl","tls","ubuntu","vsftpd"],"articleSection":["Tutorials","Ubuntu"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/install-vsftpd-with-ssl-tls-on-ubuntu-20-04\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/install-vsftpd-with-ssl-tls-on-ubuntu-20-04\/","url":"https:\/\/www.rosehosting.com\/blog\/install-vsftpd-with-ssl-tls-on-ubuntu-20-04\/","name":"Install Vsftpd with SSL\/TLS on Ubuntu 20.04 - RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-vsftpd-with-ssl-tls-on-ubuntu-20-04\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-vsftpd-with-ssl-tls-on-ubuntu-20-04\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/05\/how-to-install-vsftpd-with-ssl-tls-on-ubuntu-20.04.jpg","datePublished":"2022-06-13T17:30:53+00:00","dateModified":"2022-10-05T07:21:20+00:00","description":"Install Vsftpd with SSL\/TLS on Ubuntu 20.04 - RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-vsftpd-with-ssl-tls-on-ubuntu-20-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/install-vsftpd-with-ssl-tls-on-ubuntu-20-04\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/install-vsftpd-with-ssl-tls-on-ubuntu-20-04\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/05\/how-to-install-vsftpd-with-ssl-tls-on-ubuntu-20.04.jpg","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/05\/how-to-install-vsftpd-with-ssl-tls-on-ubuntu-20.04.jpg","width":742,"height":372,"caption":"how to install vsftpd with ssl\/tls on ubuntu 20.04"},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/install-vsftpd-with-ssl-tls-on-ubuntu-20-04\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Install Vsftpd with SSL\/TLS on Ubuntu 20.04"}]},{"@type":"WebSite","@id":"https:\/\/www.rosehosting.com\/blog\/#website","url":"https:\/\/www.rosehosting.com\/blog\/","name":"RoseHosting","description":"Premium Linux Tutorials Since 2001","publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.rosehosting.com\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.rosehosting.com\/blog\/#organization","name":"RoseHosting","url":"https:\/\/www.rosehosting.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","width":192,"height":192,"caption":"RoseHosting"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/RoseHosting","https:\/\/x.com\/rosehosting","https:\/\/www.linkedin.com\/in\/rosehosting\/"]},{"@type":"Person","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713","name":"Jeff Wilson","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g","caption":"Jeff Wilson"},"description":"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.","sameAs":["https:\/\/www.rosehosting.com","https:\/\/www.facebook.com\/rosehosting.helpdesk"],"url":"https:\/\/www.rosehosting.com\/blog\/author\/jwilson\/"}]}},"_links":{"self":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/40631"}],"collection":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/comments?post=40631"}],"version-history":[{"count":12,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/40631\/revisions"}],"predecessor-version":[{"id":43290,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/40631\/revisions\/43290"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/41574"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=40631"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=40631"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=40631"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}