{"id":5312,"date":"2020-01-09T13:01:14","date_gmt":"2020-01-09T07:31:14","guid":{"rendered":"https:\/\/blog.pheonixsolutions.com\/?p=5312"},"modified":"2020-01-09T13:01:21","modified_gmt":"2020-01-09T07:31:21","slug":"keystone-js-deployment-on-ubuntu-16-04-18-04","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/blog\/keystone-js-deployment-on-ubuntu-16-04-18-04\/","title":{"rendered":"Keystone js deployment on Ubuntu 16.04\/18.04"},"content":{"rendered":"\n<h4 class=\"wp-block-heading\">Keystone js deployment on Ubuntu 16.04\/18.04<\/h4>\n\n\n\n<h4 class=\"wp-block-heading\">Date : 07-Jan-2020<\/h4>\n\n\n\n<p>Let us see how to deploy Keystone js on Ubuntu 16.04\/18.04<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Step 1: Install Nginx webserver<\/h4>\n\n\n\n<p>Install nginx webserver in your Ubuntu machine using the following command.<\/p>\n\n\n\n<p> <code>apt-get install nginx <\/code><\/p>\n\n\n\n<p>Post installation, you can check the status of the webserver using the command,  <\/p>\n\n\n\n<p><code>systemctl status nginx<\/code> <\/p>\n\n\n\n<p> To confirm that the software is running properly through your IP address, give the following url. <\/p>\n\n\n\n<p><code>http:\/\/server_ip_address<\/code><\/p>\n\n\n\n<p>It will access the default nginx landing page.<\/p>\n\n\n\n<p><strong>Setup your domain<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Create a directory for your domain name in \/var\/www\/<br>Ex. \/var\/www\/domainname.com\/html<\/li><li>Assign the ownership of the directory.<br> chown -R $USER:$USER \/var\/www\/domainname.com\/html <\/li><li>Make sure the permission of the directory created is 755.<br> chmod -R 755 \/var\/www\/domainname.com<\/li><li>Create a sample html page(index.html) in  \/var\/www\/domainname.com\/html<\/li><\/ul>\n\n\n\n<p><strong>Configure your domain<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Create a domainname.conf file in  \/etc\/nginx\/sites-available<\/li><li>In  \/etc\/nginx\/sites-available\/domainname.conf, paste the following contents.<br><code> server {<br>              listen 80;<br>              listen [::]:80;<br>              root \/var\/www\/example.com\/html;<br>              index index.html index.htm index.nginx-debian.html;<br>              server_name example.com www.example.com;<br>              location \/ {<br>                                try_files $uri $uri\/ =404;<br>              }<br>}<\/code><\/li><li>Enable the file by creating a link from it to the sites-enabled directory.<br> ln -s \/etc\/nginx\/sites-available\/domainname.com \/etc\/nginx\/sites-enabled\/ <\/li><li>Test the syntax by giving the command,  <code>nginx -t<\/code> <\/li><li>Restart nginx to enable the changes.<br> <code> systemctl restart nginx <\/code><\/li><li>Now nginx should serve your domain name. Test it out by giving the url as <code>http:\/\/domainname<\/code>. <\/li><li>The site should load with the sample html page created.<\/li><\/ul>\n\n\n\n<h4 class=\"wp-block-heading\">Step 2: Install Ruby<\/h4>\n\n\n\n<p>Install curl and git packages.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">apt update<br>apt install curl git<\/pre>\n\n\n\n<p> Then run the commands below to add Node.js and Yarn repositories and keys to your system. Then install some core packages to get your environment going. <\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">curl -sL https:\/\/deb.nodesource.com\/setup_8.x | sudo -E bash -\ncurl -sS https:\/\/dl.yarnpkg.com\/debian\/pubkey.gpg | sudo apt-key add -\necho \"deb https:\/\/dl.yarnpkg.com\/debian\/ stable main\" | sudo tee \/etc\/apt\/sources.list.d\/yarn.list\n\napt-get update\napt-get install nodejs yarn zlib1g-dev build-essential libpq-dev libssl-dev libreadline-dev libyaml-dev libsqlite3-dev sqlite3 libxml2-dev libxslt1-dev libcurl4-openssl-dev software-properties-common libffi-dev<\/pre>\n\n\n\n<p>After adding the repositories and installing necessary&nbsp;packages above, install Ruby with your local profile settings using&nbsp;<strong>rbenv\u2026&nbsp;<\/strong>you\u2019ll then use rbenv to install ruby-build\u2026 <\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">cd ~\/\ngit clone https:\/\/github.com\/rbenv\/rbenv.git ~\/.rbenv\necho 'export PATH=\"$HOME\/.rbenv\/bin:$PATH\"' &gt;&gt; ~\/.bashrc\necho 'eval \"$(rbenv init -)\"' &gt;&gt; ~\/.bashrc\nexec $SHELL\n\ngit clone https:\/\/github.com\/rbenv\/ruby-build.git ~\/.rbenv\/plugins\/ruby-build\necho 'export PATH=\"$HOME\/.rbenv\/plugins\/ruby-build\/bin:$PATH\"' &gt;&gt; ~\/.bashrc\nexec $SHELL<\/pre>\n\n\n\n<p> After setting up your local profile\u2026 run the commands below to install Ruby version&nbsp;<strong>2.5.3<\/strong>\u2026 If a newer version is available, replace the version number to that.<\/p>\n\n\n\n<p>Note: You can check the latest version of Ruby in the following link.<br> <a href=\"https:\/\/www.ruby-lang.org\/en\/downloads\/\">https:\/\/www.ruby-lang.org\/en\/downloads\/<\/a> <\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">rbenv install 2.5.3\nrbenv global 2.5.3<\/pre>\n\n\n\n<p> To verify that Ruby is installed, run the commands below: <\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"> ruby -v <\/pre>\n\n\n\n<p>It will display the ruby version installed.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Step 3: Install Nodejs-8<\/h4>\n\n\n\n<p>Install Node.js using the following command.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">curl -sL https:\/\/deb.nodesource.com\/setup_8.x | sudo -E bash -<br>apt-get install -y nodejs<\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">Step 4: Install MongoDB<\/h4>\n\n\n\n<p>Install MongoDB using the following command.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">apt install mongodb\nnpm install mongodb --save<\/pre>\n\n\n\n<p>Once MongoDB server is installed, open a new terminal and start an interactive mongo prompt by typing the following command.<\/p>\n\n\n\n<p><code> mongo<\/code> <\/p>\n\n\n\n<p>Press ctrl+c to exit.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Step 5: Install dotenv, pm2<\/h4>\n\n\n\n<pre class=\"wp-block-preformatted\">npm install dotenv<br>npm install pm2@latest -g<\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">Step 6:  Install KeystoneJS (along with Yoeman)<\/h4>\n\n\n\n<pre class=\"wp-block-preformatted\">npm install imagemagick\nnpm install -g generator-keystone\nnpm install -g yo<\/pre>\n\n\n\n<p>To start the server, run the below command<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"> node keystone <\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">Step 7: Run the service using pm2<\/h4>\n\n\n\n<p>You can run the service using pm2 command.<\/p>\n\n\n\n<p>Go to the directory where you have installed the app. Then run the following command.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"> pm2 start keystone.js <\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\">You can watch logs using the command,  <strong>\u201cpm2 logs\u201d <\/strong>\nYou can see the app status using the command, <strong>\u201cpm2 status\u201d<\/strong><\/pre>\n\n\n\n<p>Thats it!! Your project is successfully running as you can see the logs response without any errors. The app port is 3000. <\/p>\n\n\n\n<p> Now open your browser and browse to the hostname follow by port&nbsp;<strong># 3000<\/strong><\/p>\n\n\n\n<p><strong> http:\/\/localhost:3000 <\/strong> <\/p>\n\n\n\n<p>Thank you !!!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Keystone js deployment on Ubuntu 16.04\/18.04 Date : 07-Jan-2020 Let us see how to deploy Keystone js on Ubuntu 16.04\/18.04 Step 1: Install Nginx webserver Install nginx webserver in your Ubuntu machine using the following command. apt-get install nginx Post installation, you can check the status of the webserver using&hellip; <a href=\"https:\/\/pheonixsolutions.com\/blog\/keystone-js-deployment-on-ubuntu-16-04-18-04\/\" class=\"more-link read-more\" rel=\"bookmark\">Continue Reading <span class=\"screen-reader-text\">Keystone js deployment on Ubuntu 16.04\/18.04<\/span><i class=\"fa fa-arrow-right\"><\/i><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[628],"tags":[741,740,522],"class_list":{"0":"post-5312","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"hentry","6":"category-node-js","7":"tag-deployment","8":"tag-keystone-js","9":"tag-ubuntu-18-0-4","10":"h-entry","12":"h-as-article"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Pheonix Solutions - We Empower Your Business Growth<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/pheonixsolutions.com\/blog\/keystone-js-deployment-on-ubuntu-16-04-18-04\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Pheonix Solutions - We Empower Your Business Growth\" \/>\n<meta property=\"og:description\" content=\"Keystone js deployment on Ubuntu 16.04\/18.04 Date : 07-Jan-2020 Let us see how to deploy Keystone js on Ubuntu 16.04\/18.04 Step 1: Install Nginx webserver Install nginx webserver in your Ubuntu machine using the following command. apt-get install nginx Post installation, you can check the status of the webserver using&hellip; Continue Reading Keystone js deployment on Ubuntu 16.04\/18.04\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/blog\/keystone-js-deployment-on-ubuntu-16-04-18-04\/\" \/>\n<meta property=\"og:site_name\" content=\"PHEONIXSOLUTIONS\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/\" \/>\n<meta property=\"article:published_time\" content=\"2020-01-09T07:31:14+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-01-09T07:31:21+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png\" \/>\n\t<meta property=\"og:image:width\" content=\"3837\" \/>\n\t<meta property=\"og:image:height\" content=\"2540\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:site\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/keystone-js-deployment-on-ubuntu-16-04-18-04\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/keystone-js-deployment-on-ubuntu-16-04-18-04\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\"},\"headline\":\"Keystone js deployment on Ubuntu 16.04\\\/18.04\",\"datePublished\":\"2020-01-09T07:31:14+00:00\",\"dateModified\":\"2020-01-09T07:31:21+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/keystone-js-deployment-on-ubuntu-16-04-18-04\\\/\"},\"wordCount\":475,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"keywords\":[\"deployment\",\"keystone js\",\"ubuntu 18.0.4\"],\"articleSection\":[\"NODE JS\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/keystone-js-deployment-on-ubuntu-16-04-18-04\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/keystone-js-deployment-on-ubuntu-16-04-18-04\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/keystone-js-deployment-on-ubuntu-16-04-18-04\\\/\",\"name\":\"Pheonix Solutions - We Empower Your Business Growth\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\"},\"datePublished\":\"2020-01-09T07:31:14+00:00\",\"dateModified\":\"2020-01-09T07:31:21+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/keystone-js-deployment-on-ubuntu-16-04-18-04\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/keystone-js-deployment-on-ubuntu-16-04-18-04\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/keystone-js-deployment-on-ubuntu-16-04-18-04\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Keystone js deployment on Ubuntu 16.04\\\/18.04\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"name\":\"Pheonix Solutions\",\"description\":\"We Empower Your Business Growth\",\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\",\"name\":\"PheonixSolutions\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"width\":454,\"height\":300,\"caption\":\"PheonixSolutions\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/PheonixSolutions-209942982759387\\\/\",\"https:\\\/\\\/x.com\\\/pheonixsolution\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\\\/\\\/blog.pheonixsolutions.com\"],\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/author\\\/admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Pheonix Solutions - We Empower Your Business Growth","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:\/\/pheonixsolutions.com\/blog\/keystone-js-deployment-on-ubuntu-16-04-18-04\/","og_locale":"en_US","og_type":"article","og_title":"Pheonix Solutions - We Empower Your Business Growth","og_description":"Keystone js deployment on Ubuntu 16.04\/18.04 Date : 07-Jan-2020 Let us see how to deploy Keystone js on Ubuntu 16.04\/18.04 Step 1: Install Nginx webserver Install nginx webserver in your Ubuntu machine using the following command. apt-get install nginx Post installation, you can check the status of the webserver using&hellip; Continue Reading Keystone js deployment on Ubuntu 16.04\/18.04","og_url":"https:\/\/pheonixsolutions.com\/blog\/keystone-js-deployment-on-ubuntu-16-04-18-04\/","og_site_name":"PHEONIXSOLUTIONS","article_publisher":"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","article_published_time":"2020-01-09T07:31:14+00:00","article_modified_time":"2020-01-09T07:31:21+00:00","og_image":[{"width":3837,"height":2540,"url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png","type":"image\/png"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@pheonixsolution","twitter_site":"@pheonixsolution","twitter_misc":{"Written by":"admin","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/blog\/keystone-js-deployment-on-ubuntu-16-04-18-04\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/keystone-js-deployment-on-ubuntu-16-04-18-04\/"},"author":{"name":"admin","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503"},"headline":"Keystone js deployment on Ubuntu 16.04\/18.04","datePublished":"2020-01-09T07:31:14+00:00","dateModified":"2020-01-09T07:31:21+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/keystone-js-deployment-on-ubuntu-16-04-18-04\/"},"wordCount":475,"commentCount":0,"publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"keywords":["deployment","keystone js","ubuntu 18.0.4"],"articleSection":["NODE JS"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/blog\/keystone-js-deployment-on-ubuntu-16-04-18-04\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/blog\/keystone-js-deployment-on-ubuntu-16-04-18-04\/","url":"https:\/\/pheonixsolutions.com\/blog\/keystone-js-deployment-on-ubuntu-16-04-18-04\/","name":"Pheonix Solutions - We Empower Your Business Growth","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#website"},"datePublished":"2020-01-09T07:31:14+00:00","dateModified":"2020-01-09T07:31:21+00:00","breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/blog\/keystone-js-deployment-on-ubuntu-16-04-18-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/blog\/keystone-js-deployment-on-ubuntu-16-04-18-04\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/blog\/keystone-js-deployment-on-ubuntu-16-04-18-04\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Keystone js deployment on Ubuntu 16.04\/18.04"}]},{"@type":"WebSite","@id":"https:\/\/pheonixsolutions.com\/blog\/#website","url":"https:\/\/pheonixsolutions.com\/blog\/","name":"Pheonix Solutions","description":"We Empower Your Business Growth","publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pheonixsolutions.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/pheonixsolutions.com\/blog\/#organization","name":"PheonixSolutions","url":"https:\/\/pheonixsolutions.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","contentUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","width":454,"height":300,"caption":"PheonixSolutions"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","https:\/\/x.com\/pheonixsolution"]},{"@type":"Person","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","caption":"admin"},"sameAs":["http:\/\/blog.pheonixsolutions.com"],"url":"https:\/\/pheonixsolutions.com\/blog\/author\/admin\/"}]}},"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/p7F4uM-1nG","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/5312","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/comments?post=5312"}],"version-history":[{"count":0,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/5312\/revisions"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=5312"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=5312"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=5312"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}