{"id":16928,"date":"2015-03-20T13:45:23","date_gmt":"2015-03-20T18:45:23","guid":{"rendered":"https:\/\/secure.rosehosting.com\/blog\/?p=16928"},"modified":"2022-06-03T03:44:27","modified_gmt":"2022-06-03T08:44:27","slug":"how-to-install-linux-dash-on-an-ubuntu-vps-with-nginx-and-password-protect-it","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/how-to-install-linux-dash-on-an-ubuntu-vps-with-nginx-and-password-protect-it\/","title":{"rendered":"How to Install Linux Dash on an Ubuntu VPS with Nginx and Password Protect it"},"content":{"rendered":"<div id=\"bsf_rt_marker\"><\/div><p><img decoding=\"async\" class=\"alignnone size-full wp-image-16929\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/02\/linux-dash.png\" alt=\"linux dash\" width=\"254\" height=\"79\" srcset=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/02\/linux-dash.png 254w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/02\/linux-dash-50x16.png 50w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/02\/linux-dash-75x23.png 75w\" sizes=\"(max-width: 254px) 100vw, 254px\" \/>Linux Dash is a low-overhead server statistics monitoring application written in PHP. It is intended for anyone looking for a lightweight, easy to deploy server monitoring and view server resource usage via web interface in real time. In this step-by-step tutorial, we will show you how to<strong> install Linux Dash on an <a title=\"Ubuntu VPS Hosting\" href=\"https:\/\/www.rosehosting.com\/ubuntu-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">Ubuntu 14.04 VPS<\/a> with <a title=\"Nginx Hosting\" href=\"https:\/\/www.rosehosting.com\/nginx-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">Nginx <\/a>and password protect <\/strong>the statistics pages.<\/p>\n<p><!--more--><\/p>\n<p>Make sure your <a title=\"Linux VPS Hosting\" href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting.html\" target=\"_blank\" rel=\"noopener\">VPS<\/a> is fully up-to-date by running the following:<\/p>\n<pre>apt-get update \r\napt-get -y upgrade --show-upgraded<\/pre>\n<p>Check if Apache is already installed and running:<\/p>\n<pre># \/etc\/init.d\/apache2 status\r\n * apache2 is running<\/pre>\n<p>If so, stop the service and disable it from autostart:<\/p>\n<pre>\/etc\/init.d\/apache2 stop  \r\n * Stopping web server apache2\r\n\r\nupdate-rc.d -f apache2 remove\r\n Removing any system startup links for \/etc\/init.d\/apache2 ...\r\n   \/etc\/rc0.d\/K09apache2\r\n   \/etc\/rc1.d\/K09apache2\r\n   \/etc\/rc2.d\/S91apache2\r\n   \/etc\/rc3.d\/S91apache2\r\n   \/etc\/rc4.d\/S91apache2\r\n   \/etc\/rc5.d\/S91apache2\r\n   \/etc\/rc6.d\/K09apache2<\/pre>\n<p>Install Nginx, Git, PHP5-FPM and json and curl PHP extensions using the following command:<\/p>\n<pre>apt-get install git nginx php5-json php5-fpm php5-curl<\/pre>\n<p><strong>Install Linux-dash<\/strong> to a &#8216;\/var\/www\/html\/&#8217; directory on your server using Git:<\/p>\n<pre>cd \/var\/www\/html\/\r\n\r\ngit clone https:\/\/github.com\/afaqurk\/linux-dash.git<\/pre>\n<p>Create a new Nginx configuration file for your domain:<\/p>\n<pre>vi \/etc\/nginx\/sites-available\/your-domain.com<\/pre>\n<p>and add the following content to it:<\/p>\n<pre>server {\r\nlisten 80;\r\nserver_name your-domain.com;\r\n\r\nroot \/var\/www\/html\/linux-dash;\r\nindex index.html index.php;\r\naccess_log \/var\/log\/nginx\/access.log;\r\nerror_log \/var\/log\/nginx\/error.log;\r\n\r\nlocation ~* \\.(?:xml|ogg|mp3|mp4|ogv|svg|svgz|eot|otf|woff|ttf|css|js|jpg|jpeg|gif|png|ico)$ {\r\n            try_files $uri =404;\r\n            expires max;\r\n            access_log off;\r\n            add_header Pragma public;\r\n            add_header Cache-Control \"public, must-revalidate, proxy-revalidate\";\r\n}\r\n\r\nlocation \/ {\r\n      index index.html index.php;     \r\n}\r\n\r\n    location ~ \\.php(\/|$) {\r\n            fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;\r\n            fastcgi_split_path_info ^(.+?\\.php)(\/.*)$;\r\n            fastcgi_pass unix:\/var\/run\/php5-fpm.sock;\r\n            if (!-f $document_root$fastcgi_script_name) {\r\n                    return 404;\r\n            }\r\n            try_files $uri $uri\/ \/index.php?$args;\r\n            include fastcgi_params;\r\n    }\r\n}\r\n}\r\n<\/pre>\n<p>Enable the server block using the following command:<\/p>\n<pre>ln -s \/etc\/nginx\/sites-available\/your-domain.com \/etc\/nginx\/sites-enabled\/<\/pre>\n<p><strong>Password Protect Linux Dash:<\/strong><\/p>\n<p>Add the following HttpAuthBasic module directives to your Nginx configuration file created above:<\/p>\n<pre>auth_basic \"Restricted\";\r\nauth_basic_user_file \/etc\/nginx\/.htpasswd;<\/pre>\n<p>so the &#8216;location&#8217; block should look like this:<\/p>\n<pre>vi \/etc\/nginx\/sites-available\/your-domain.com<\/pre>\n<pre>location \/ {\r\n    index index.html index.php;     \r\n    auth_basic \"Restricted\";\r\n    auth_basic_user_file \/etc\/nginx\/.htpasswd;\r\n}\r\n<\/pre>\n<p>and your &#8216;dash&#8217; directory, it\u2019s sub directories and the files inside it should be password protected.<\/p>\n<p>Restart the Nginx service for the changes to take effect:<\/p>\n<pre>service nginx restart<\/pre>\n<p>Use the htpasswd command (if you previously had apache installed on your server) to generate your htpasswd file:<\/p>\n<pre>htpasswd -b htpasswd NewUser NewPassword<\/pre>\n<p>Make sure you replace the &#8216;NewUserName&#8217; and &#8216;NewPassword&#8217; with your desired username and password for accessing the protected directory. For example:<\/p>\n<pre>htpasswd -bc \/etc\/nginx\/.htpasswd rhadmin Xcnd6%s^cJc@d.M<\/pre>\n<p>will create a new file using &#8216;rhadmin&#8217; as username and &#8216;Xcnd6%s^cJc@d.M&#8217; as password.<\/p>\n<p>Please note, once the new .htpasswd file is created and you want to create another user, use &#8216;htpasswd -b NewUser NewPassword&#8217; command (using the -c flag would overwrite the original file).<\/p>\n<p>Or, you could generate the encrypted password using Perl:<\/p>\n<pre>perl -le 'print crypt(\"your-password\", \"salt-hash\")'<\/pre>\n<p>That is it. The installation of Linux-dash monitoring system is now complete. Open http:\/\/your-domain.com in your favorite web browser, enter your username and password to authenticate and start monitoring your server resources.<\/p>\n<p>Of course you don\u2019t have to do any of this if you use one of our <a href=\"https:\/\/www.rosehosting.com\/ubuntu-hosting.html\">Fully Managed Ubuntu Hosting<\/a>\u00a0services, in which case you can simply ask our expert Linux admins to install Linux Dash for you. They are available 24&#215;7 and will take care of your request immediately.<\/p>\n<p><strong><span style=\"color: #ff0000;\">PS<\/span>.<\/strong> If you liked this post please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Linux Dash is a low-overhead server statistics monitoring application written in PHP. It is intended for anyone looking for a &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"How to Install Linux Dash on an Ubuntu VPS with Nginx and Password Protect it\" class=\"read-more button\" href=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-linux-dash-on-an-ubuntu-vps-with-nginx-and-password-protect-it\/#more-16928\" aria-label=\"Read more about How to Install Linux Dash on an Ubuntu VPS with Nginx and Password Protect it\">Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":16929,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[13,1698,1707],"tags":[740,741,739],"class_list":["post-16928","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","category-ubuntu","category-web-servers","tag-install-dash-on-ubuntu","tag-install-linux-dash-on-an-ubuntu-vps","tag-install-linux-dash-on-ubuntu-with-nginx","generate-columns","tablet-grid-50","mobile-grid-100","grid-parent","grid-33"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.4 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How to Install Linux Dash on an Ubuntu VPS with Nginx and Password Protect it | RoseHosting<\/title>\n<meta name=\"description\" content=\"How to Install Linux Dash on an Ubuntu VPS with Nginx and Password Protect it | 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\/how-to-install-linux-dash-on-an-ubuntu-vps-with-nginx-and-password-protect-it\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install Linux Dash on an Ubuntu VPS with Nginx and Password Protect it\" \/>\n<meta property=\"og:description\" content=\"How to Install Linux Dash on an Ubuntu VPS with Nginx and Password Protect it | RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-linux-dash-on-an-ubuntu-vps-with-nginx-and-password-protect-it\/\" \/>\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=\"2015-03-20T18:45:23+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-06-03T08:44:27+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/02\/linux-dash.png\" \/>\n\t<meta property=\"og:image:width\" content=\"254\" \/>\n\t<meta property=\"og:image:height\" content=\"79\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\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=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-linux-dash-on-an-ubuntu-vps-with-nginx-and-password-protect-it\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-linux-dash-on-an-ubuntu-vps-with-nginx-and-password-protect-it\\\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"How to Install Linux Dash on an Ubuntu VPS with Nginx and Password Protect it\",\"datePublished\":\"2015-03-20T18:45:23+00:00\",\"dateModified\":\"2022-06-03T08:44:27+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-linux-dash-on-an-ubuntu-vps-with-nginx-and-password-protect-it\\\/\"},\"wordCount\":420,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-linux-dash-on-an-ubuntu-vps-with-nginx-and-password-protect-it\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/02\\\/linux-dash.png\",\"keywords\":[\"install dash on ubuntu\",\"install linux dash on an ubuntu vps\",\"install linux dash on ubuntu with nginx\"],\"articleSection\":[\"Tutorials\",\"Ubuntu\",\"Web Servers\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-linux-dash-on-an-ubuntu-vps-with-nginx-and-password-protect-it\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-linux-dash-on-an-ubuntu-vps-with-nginx-and-password-protect-it\\\/\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-linux-dash-on-an-ubuntu-vps-with-nginx-and-password-protect-it\\\/\",\"name\":\"How to Install Linux Dash on an Ubuntu VPS with Nginx and Password Protect it | RoseHosting\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-linux-dash-on-an-ubuntu-vps-with-nginx-and-password-protect-it\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-linux-dash-on-an-ubuntu-vps-with-nginx-and-password-protect-it\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/02\\\/linux-dash.png\",\"datePublished\":\"2015-03-20T18:45:23+00:00\",\"dateModified\":\"2022-06-03T08:44:27+00:00\",\"description\":\"How to Install Linux Dash on an Ubuntu VPS with Nginx and Password Protect it | RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-linux-dash-on-an-ubuntu-vps-with-nginx-and-password-protect-it\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-linux-dash-on-an-ubuntu-vps-with-nginx-and-password-protect-it\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-linux-dash-on-an-ubuntu-vps-with-nginx-and-password-protect-it\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/02\\\/linux-dash.png\",\"contentUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/02\\\/linux-dash.png\",\"width\":254,\"height\":79,\"caption\":\"linux dash\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-linux-dash-on-an-ubuntu-vps-with-nginx-and-password-protect-it\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Linux Dash on an Ubuntu VPS with Nginx and Password Protect it\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\",\"name\":\"RoseHosting.com\",\"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\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"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\\\/\"],\"description\":\"RoseHosting is a leading Linux hosting provider, serving thousands of clients world-wide since 2001.\",\"email\":\"info@rosehosting.com\",\"telephone\":\"(314) 275-0414\",\"legalName\":\"Rose Web Services LLC\",\"foundingDate\":\"2001-04-02\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"11\",\"maxValue\":\"50\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\",\"name\":\"Jeff Wilson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?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 Premium plugin. -->","yoast_head_json":{"title":"How to Install Linux Dash on an Ubuntu VPS with Nginx and Password Protect it | RoseHosting","description":"How to Install Linux Dash on an Ubuntu VPS with Nginx and Password Protect it | 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\/how-to-install-linux-dash-on-an-ubuntu-vps-with-nginx-and-password-protect-it\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Linux Dash on an Ubuntu VPS with Nginx and Password Protect it","og_description":"How to Install Linux Dash on an Ubuntu VPS with Nginx and Password Protect it | RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/how-to-install-linux-dash-on-an-ubuntu-vps-with-nginx-and-password-protect-it\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2015-03-20T18:45:23+00:00","article_modified_time":"2022-06-03T08:44:27+00:00","og_image":[{"width":254,"height":79,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/02\/linux-dash.png","type":"image\/png"}],"author":"Jeff Wilson","twitter_card":"summary_large_image","twitter_creator":"@rosehosting","twitter_site":"@rosehosting","twitter_misc":{"Written by":"Jeff Wilson","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-linux-dash-on-an-ubuntu-vps-with-nginx-and-password-protect-it\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-linux-dash-on-an-ubuntu-vps-with-nginx-and-password-protect-it\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"How to Install Linux Dash on an Ubuntu VPS with Nginx and Password Protect it","datePublished":"2015-03-20T18:45:23+00:00","dateModified":"2022-06-03T08:44:27+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-linux-dash-on-an-ubuntu-vps-with-nginx-and-password-protect-it\/"},"wordCount":420,"commentCount":0,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-linux-dash-on-an-ubuntu-vps-with-nginx-and-password-protect-it\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/02\/linux-dash.png","keywords":["install dash on ubuntu","install linux dash on an ubuntu vps","install linux dash on ubuntu with nginx"],"articleSection":["Tutorials","Ubuntu","Web Servers"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/how-to-install-linux-dash-on-an-ubuntu-vps-with-nginx-and-password-protect-it\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-linux-dash-on-an-ubuntu-vps-with-nginx-and-password-protect-it\/","url":"https:\/\/www.rosehosting.com\/blog\/how-to-install-linux-dash-on-an-ubuntu-vps-with-nginx-and-password-protect-it\/","name":"How to Install Linux Dash on an Ubuntu VPS with Nginx and Password Protect it | RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-linux-dash-on-an-ubuntu-vps-with-nginx-and-password-protect-it\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-linux-dash-on-an-ubuntu-vps-with-nginx-and-password-protect-it\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/02\/linux-dash.png","datePublished":"2015-03-20T18:45:23+00:00","dateModified":"2022-06-03T08:44:27+00:00","description":"How to Install Linux Dash on an Ubuntu VPS with Nginx and Password Protect it | RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-linux-dash-on-an-ubuntu-vps-with-nginx-and-password-protect-it\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/how-to-install-linux-dash-on-an-ubuntu-vps-with-nginx-and-password-protect-it\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-linux-dash-on-an-ubuntu-vps-with-nginx-and-password-protect-it\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/02\/linux-dash.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/02\/linux-dash.png","width":254,"height":79,"caption":"linux dash"},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-linux-dash-on-an-ubuntu-vps-with-nginx-and-password-protect-it\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install Linux Dash on an Ubuntu VPS with Nginx and Password Protect it"}]},{"@type":"WebSite","@id":"https:\/\/www.rosehosting.com\/blog\/#website","url":"https:\/\/www.rosehosting.com\/blog\/","name":"RoseHosting.com","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":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"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\/"],"description":"RoseHosting is a leading Linux hosting provider, serving thousands of clients world-wide since 2001.","email":"info@rosehosting.com","telephone":"(314) 275-0414","legalName":"Rose Web Services LLC","foundingDate":"2001-04-02","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"11","maxValue":"50"}},{"@type":"Person","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713","name":"Jeff Wilson","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?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\/16928","targetHints":{"allow":["GET"]}}],"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=16928"}],"version-history":[{"count":1,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/16928\/revisions"}],"predecessor-version":[{"id":41411,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/16928\/revisions\/41411"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/16929"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=16928"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=16928"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=16928"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}