{"id":463,"date":"2018-02-21T22:13:06","date_gmt":"2018-02-21T22:13:06","guid":{"rendered":"https:\/\/ketandesai.co.uk\/?p=463"},"modified":"2026-03-20T22:33:08","modified_gmt":"2026-03-20T22:33:08","slug":"build-webserver-centos-7","status":"publish","type":"post","link":"https:\/\/ketandesai.co.uk\/index.php\/2018\/02\/21\/build-webserver-centos-7\/","title":{"rendered":"Build WebServer on Centos 7"},"content":{"rendered":"\n<h1 class=\"wp-block-heading\">LAMP (Linux, Apache, MySQL, PHP)<\/h1>\n\n\n\n<p>In this guide, we will walk through installing all of these components (except for Linux, which is already installed as your OS when you create the server).<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Install Apache<\/h2>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Make sure that your software is up to date:<br><div class=\"hacker code-sample-blue\"><br>#sudo yum update<\/div><br><\/li>\n\n\n\n<li>Install Apache:<br><div class=\"hacker code-sample-blue\"><br><pre class=\"nums:false lang:sh decode:true \">#sudo yum install httpd<\/pre><br><\/div><br><\/li>\n\n\n\n<li>Start Apache:<br><div class=\"hacker code-sample-blue\"><br><pre class=\"nums:false lang:sh decode:true \">#sudo systemctl start httpd.service<\/pre><br><\/div><br><\/li>\n\n\n\n<li>Set Apache to start on server boot:<br><pre class=\"nums:false lang:sh decode:true \">#sudo systemctl enable httpd.service<\/pre><br><\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading hacker code-sample-blue\">Install MySQL<\/h2>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Install MariaDB, which is a community-developed fork of MySQL:<br><div class=\"hacker code-sample-blue\"><br><pre class=\"nums:false lang:sh decode:true \">#sudo yum install mariadb-server mariadb<\/pre><br><\/div><br><\/li>\n\n\n\n<li>Start the service:<br><div class=\"hacker code-sample-blue\"><br><pre class=\"nums:false lang:sh decode:true \">#sudo systemctl start mariadb<\/pre><br><\/div><br><\/li>\n\n\n\n<li>Set MySQL to start on server boot:<br><div class=\"hacker code-sample-blue\"><br><pre class=\"nums:false lang:sh decode:true \">#sudo systemctl enable mariadb.service<\/pre><br><\/div><br><\/li>\n\n\n\n<li>Run this command to finish setting up the installation:<br><div class=\"hacker code-sample-blue\"><br><pre class=\"nums:false lang:sh decode:true \">#sudo mysql_secure_installation<\/pre><br><pre class=\"nums:false lang:sh decode:true\">Enter current password for root (enter for none):<br>OK, successfully used password, moving on...<br><br>Setting the root password ensures that nobody can log into the MariaDB<br>root user without the proper authorization.<br><br>New password: <span style=\"color: #ff0000;\">password<\/span><br>Re-enter new password: <span style=\"color: #ff0000;\">password<\/span><br>Password updated successfully!<br>Reloading privilege tables..<br> ... Success!<\/pre><br><\/div><br><\/li>\n\n\n\n<li>You will be asked for the root password. Because you didn&#8217;t set it earlier, press\u00a0<strong>Enter<\/strong>to set a password now.<\/li>\n\n\n\n<li>Type &#8220;Y&#8221; to set the root password.<\/li>\n\n\n\n<li>Enter and confirm the new password.<\/li>\n\n\n\n<li>You will be asked more questions as part of the security configuration. It is a best practice to respond &#8220;Y&#8221; to these system prompts<\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading\">Install PHP<\/h2>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Install PHP:<br><div class=\"hacker code-sample-blue\"><br><pre class=\"nums:false lang:sh decode:true \">#sudo yum install php php-mysql<\/pre><br><\/div><br><p>Enter &#8220;Y&#8221; to install.<\/p><\/li>\n\n\n\n<li>Restart Apache:<br><div class=\"hacker code-sample-blue\"><br><pre class=\"nums:false lang:sh decode:true \">#sudo systemctl restart httpd.service<\/pre><br><\/div><br><\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\">Update Firewall<\/h3>\n\n\n\n<pre class=\"wp-block-preformatted\">#sudo firewall-cmd --permanent --zone=public --add-service=http\n#sudo firewall-cmd --permanent --zone=public --add-service=https\n#sudo firewall-cmd --reload<\/pre>\n\n\n\n<p>&nbsp;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Test PHP processing on Apache<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Create a new PHP file under the\u00a0<code>\/var\/www\/html<\/code>\u00a0directory:<br><div class=\"hacker code-sample-blue\">sudo vi \/var\/www\/html\/info.php<\/div><br><\/li>\n\n\n\n<li>When the file opens, type in the following code:<br><pre class=\"nums:false lang:php decode:true \">&lt;?php<br>phpinfo();<br>?><\/pre><br><\/li>\n\n\n\n<li>Save and close the file:<br><div class=\"hacker code-sample-blue\">:wq!<\/div><br><\/li>\n\n\n\n<li>To verify it worked, type this URL in your browser:<br><br><strong>http:\/\/<em><u>your server&#8217;s IP address<\/u><\/em>\/info.php<\/strong><\/li>\n<\/ol>\n\n\n\n<p>A page displays with the PHP version, extensions, build date, and other information.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"conclusion\">Notes:<\/h2>\n\n\n\n<p>Now that you have a LAMP stack installed, you have many choices for what to do next. Basically, you&#8217;ve installed a platform that will allow you to install most kinds of websites and web software on your server.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>LAMP (Linux, Apache, MySQL, PHP) In this guide, we will walk through installing all of these components (except for Linux, which is already installed as your OS when you create the server). Install Apache Install MySQL Install PHP Update Firewall #sudo firewall-cmd &#8211;permanent &#8211;zone=public &#8211;add-service=http #sudo firewall-cmd &#8211;permanent &#8211;zone=public &#8211;add-service=https #sudo firewall-cmd &#8211;reload &nbsp; Test [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":1009,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[38,40,45],"tags":[56,129,130,105,131,132,133,134],"class_list":["post-463","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-centos","category-linux","category-os","tag-apache","tag-centos-7","tag-lamp","tag-linux","tag-mariadb","tag-mysql","tag-php","tag-webserver"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Build WebServer on Centos 7 - Ketan Desai<\/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:\/\/ketandesai.co.uk\/index.php\/2018\/02\/21\/build-webserver-centos-7\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Build WebServer on Centos 7 - Ketan Desai\" \/>\n<meta property=\"og:description\" content=\"LAMP (Linux, Apache, MySQL, PHP) In this guide, we will walk through installing all of these components (except for Linux, which is already installed as your OS when you create the server). Install Apache Install MySQL Install PHP Update Firewall #sudo firewall-cmd --permanent --zone=public --add-service=http #sudo firewall-cmd --permanent --zone=public --add-service=https #sudo firewall-cmd --reload &nbsp; Test [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/ketandesai.co.uk\/index.php\/2018\/02\/21\/build-webserver-centos-7\/\" \/>\n<meta property=\"og:site_name\" content=\"Ketan Desai\" \/>\n<meta property=\"article:published_time\" content=\"2018-02-21T22:13:06+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-03-20T22:33:08+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/ketandesai.co.uk\/wp-content\/uploads\/2018\/02\/blue-www_GydjIYr__L-scaled.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"2560\" \/>\n\t<meta property=\"og:image:height\" content=\"1739\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Ketan Desai\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Ketan Desai\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/ketandesai.co.uk\\\/index.php\\\/2018\\\/02\\\/21\\\/build-webserver-centos-7\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/ketandesai.co.uk\\\/index.php\\\/2018\\\/02\\\/21\\\/build-webserver-centos-7\\\/\"},\"author\":{\"name\":\"Ketan Desai\",\"@id\":\"https:\\\/\\\/ketandesai.co.uk\\\/#\\\/schema\\\/person\\\/76fbe7aaa79643c166c5c2475fc01424\"},\"headline\":\"Build WebServer on Centos 7\",\"datePublished\":\"2018-02-21T22:13:06+00:00\",\"dateModified\":\"2026-03-20T22:33:08+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/ketandesai.co.uk\\\/index.php\\\/2018\\\/02\\\/21\\\/build-webserver-centos-7\\\/\"},\"wordCount\":268,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/ketandesai.co.uk\\\/#\\\/schema\\\/person\\\/76fbe7aaa79643c166c5c2475fc01424\"},\"image\":{\"@id\":\"https:\\\/\\\/ketandesai.co.uk\\\/index.php\\\/2018\\\/02\\\/21\\\/build-webserver-centos-7\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/ketandesai.co.uk\\\/wp-content\\\/uploads\\\/2018\\\/02\\\/blue-www_GydjIYr__L-scaled.jpg\",\"keywords\":[\"Apache\",\"Centos 7\",\"LAMP\",\"Linux\",\"mariadb\",\"MySQL\",\"PHP\",\"WebServer\"],\"articleSection\":[\"Centos\",\"Linux\",\"Operating Systems\"],\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/ketandesai.co.uk\\\/index.php\\\/2018\\\/02\\\/21\\\/build-webserver-centos-7\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/ketandesai.co.uk\\\/index.php\\\/2018\\\/02\\\/21\\\/build-webserver-centos-7\\\/\",\"url\":\"https:\\\/\\\/ketandesai.co.uk\\\/index.php\\\/2018\\\/02\\\/21\\\/build-webserver-centos-7\\\/\",\"name\":\"Build WebServer on Centos 7 - Ketan Desai\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/ketandesai.co.uk\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/ketandesai.co.uk\\\/index.php\\\/2018\\\/02\\\/21\\\/build-webserver-centos-7\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/ketandesai.co.uk\\\/index.php\\\/2018\\\/02\\\/21\\\/build-webserver-centos-7\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/ketandesai.co.uk\\\/wp-content\\\/uploads\\\/2018\\\/02\\\/blue-www_GydjIYr__L-scaled.jpg\",\"datePublished\":\"2018-02-21T22:13:06+00:00\",\"dateModified\":\"2026-03-20T22:33:08+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/ketandesai.co.uk\\\/index.php\\\/2018\\\/02\\\/21\\\/build-webserver-centos-7\\\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/ketandesai.co.uk\\\/index.php\\\/2018\\\/02\\\/21\\\/build-webserver-centos-7\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/ketandesai.co.uk\\\/index.php\\\/2018\\\/02\\\/21\\\/build-webserver-centos-7\\\/#primaryimage\",\"url\":\"https:\\\/\\\/ketandesai.co.uk\\\/wp-content\\\/uploads\\\/2018\\\/02\\\/blue-www_GydjIYr__L-scaled.jpg\",\"contentUrl\":\"https:\\\/\\\/ketandesai.co.uk\\\/wp-content\\\/uploads\\\/2018\\\/02\\\/blue-www_GydjIYr__L-scaled.jpg\",\"width\":2560,\"height\":1739},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/ketandesai.co.uk\\\/index.php\\\/2018\\\/02\\\/21\\\/build-webserver-centos-7\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/ketandesai.co.uk\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Build WebServer on Centos 7\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/ketandesai.co.uk\\\/#website\",\"url\":\"https:\\\/\\\/ketandesai.co.uk\\\/\",\"name\":\"Ketan Desai\",\"description\":\"Anything IT\",\"publisher\":{\"@id\":\"https:\\\/\\\/ketandesai.co.uk\\\/#\\\/schema\\\/person\\\/76fbe7aaa79643c166c5c2475fc01424\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/ketandesai.co.uk\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/ketandesai.co.uk\\\/#\\\/schema\\\/person\\\/76fbe7aaa79643c166c5c2475fc01424\",\"name\":\"Ketan Desai\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/6587572e3884edb2f25ce127069b15f15da32278153bc9b4d2568156fcb6ec41?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/6587572e3884edb2f25ce127069b15f15da32278153bc9b4d2568156fcb6ec41?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/6587572e3884edb2f25ce127069b15f15da32278153bc9b4d2568156fcb6ec41?s=96&d=mm&r=g\",\"caption\":\"Ketan Desai\"},\"logo\":{\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/6587572e3884edb2f25ce127069b15f15da32278153bc9b4d2568156fcb6ec41?s=96&d=mm&r=g\"},\"sameAs\":[\"http:\\\/\\\/staging.ketandesai.co.uk\"],\"url\":\"https:\\\/\\\/ketandesai.co.uk\\\/index.php\\\/author\\\/ketandesaiadmin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Build WebServer on Centos 7 - Ketan Desai","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:\/\/ketandesai.co.uk\/index.php\/2018\/02\/21\/build-webserver-centos-7\/","og_locale":"en_GB","og_type":"article","og_title":"Build WebServer on Centos 7 - Ketan Desai","og_description":"LAMP (Linux, Apache, MySQL, PHP) In this guide, we will walk through installing all of these components (except for Linux, which is already installed as your OS when you create the server). Install Apache Install MySQL Install PHP Update Firewall #sudo firewall-cmd --permanent --zone=public --add-service=http #sudo firewall-cmd --permanent --zone=public --add-service=https #sudo firewall-cmd --reload &nbsp; Test [&hellip;]","og_url":"https:\/\/ketandesai.co.uk\/index.php\/2018\/02\/21\/build-webserver-centos-7\/","og_site_name":"Ketan Desai","article_published_time":"2018-02-21T22:13:06+00:00","article_modified_time":"2026-03-20T22:33:08+00:00","og_image":[{"width":2560,"height":1739,"url":"https:\/\/ketandesai.co.uk\/wp-content\/uploads\/2018\/02\/blue-www_GydjIYr__L-scaled.jpg","type":"image\/jpeg"}],"author":"Ketan Desai","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Ketan Desai","Estimated reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/ketandesai.co.uk\/index.php\/2018\/02\/21\/build-webserver-centos-7\/#article","isPartOf":{"@id":"https:\/\/ketandesai.co.uk\/index.php\/2018\/02\/21\/build-webserver-centos-7\/"},"author":{"name":"Ketan Desai","@id":"https:\/\/ketandesai.co.uk\/#\/schema\/person\/76fbe7aaa79643c166c5c2475fc01424"},"headline":"Build WebServer on Centos 7","datePublished":"2018-02-21T22:13:06+00:00","dateModified":"2026-03-20T22:33:08+00:00","mainEntityOfPage":{"@id":"https:\/\/ketandesai.co.uk\/index.php\/2018\/02\/21\/build-webserver-centos-7\/"},"wordCount":268,"commentCount":0,"publisher":{"@id":"https:\/\/ketandesai.co.uk\/#\/schema\/person\/76fbe7aaa79643c166c5c2475fc01424"},"image":{"@id":"https:\/\/ketandesai.co.uk\/index.php\/2018\/02\/21\/build-webserver-centos-7\/#primaryimage"},"thumbnailUrl":"https:\/\/ketandesai.co.uk\/wp-content\/uploads\/2018\/02\/blue-www_GydjIYr__L-scaled.jpg","keywords":["Apache","Centos 7","LAMP","Linux","mariadb","MySQL","PHP","WebServer"],"articleSection":["Centos","Linux","Operating Systems"],"inLanguage":"en-GB","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/ketandesai.co.uk\/index.php\/2018\/02\/21\/build-webserver-centos-7\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/ketandesai.co.uk\/index.php\/2018\/02\/21\/build-webserver-centos-7\/","url":"https:\/\/ketandesai.co.uk\/index.php\/2018\/02\/21\/build-webserver-centos-7\/","name":"Build WebServer on Centos 7 - Ketan Desai","isPartOf":{"@id":"https:\/\/ketandesai.co.uk\/#website"},"primaryImageOfPage":{"@id":"https:\/\/ketandesai.co.uk\/index.php\/2018\/02\/21\/build-webserver-centos-7\/#primaryimage"},"image":{"@id":"https:\/\/ketandesai.co.uk\/index.php\/2018\/02\/21\/build-webserver-centos-7\/#primaryimage"},"thumbnailUrl":"https:\/\/ketandesai.co.uk\/wp-content\/uploads\/2018\/02\/blue-www_GydjIYr__L-scaled.jpg","datePublished":"2018-02-21T22:13:06+00:00","dateModified":"2026-03-20T22:33:08+00:00","breadcrumb":{"@id":"https:\/\/ketandesai.co.uk\/index.php\/2018\/02\/21\/build-webserver-centos-7\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/ketandesai.co.uk\/index.php\/2018\/02\/21\/build-webserver-centos-7\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/ketandesai.co.uk\/index.php\/2018\/02\/21\/build-webserver-centos-7\/#primaryimage","url":"https:\/\/ketandesai.co.uk\/wp-content\/uploads\/2018\/02\/blue-www_GydjIYr__L-scaled.jpg","contentUrl":"https:\/\/ketandesai.co.uk\/wp-content\/uploads\/2018\/02\/blue-www_GydjIYr__L-scaled.jpg","width":2560,"height":1739},{"@type":"BreadcrumbList","@id":"https:\/\/ketandesai.co.uk\/index.php\/2018\/02\/21\/build-webserver-centos-7\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/ketandesai.co.uk\/"},{"@type":"ListItem","position":2,"name":"Build WebServer on Centos 7"}]},{"@type":"WebSite","@id":"https:\/\/ketandesai.co.uk\/#website","url":"https:\/\/ketandesai.co.uk\/","name":"Ketan Desai","description":"Anything IT","publisher":{"@id":"https:\/\/ketandesai.co.uk\/#\/schema\/person\/76fbe7aaa79643c166c5c2475fc01424"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/ketandesai.co.uk\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":["Person","Organization"],"@id":"https:\/\/ketandesai.co.uk\/#\/schema\/person\/76fbe7aaa79643c166c5c2475fc01424","name":"Ketan Desai","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/secure.gravatar.com\/avatar\/6587572e3884edb2f25ce127069b15f15da32278153bc9b4d2568156fcb6ec41?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/6587572e3884edb2f25ce127069b15f15da32278153bc9b4d2568156fcb6ec41?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/6587572e3884edb2f25ce127069b15f15da32278153bc9b4d2568156fcb6ec41?s=96&d=mm&r=g","caption":"Ketan Desai"},"logo":{"@id":"https:\/\/secure.gravatar.com\/avatar\/6587572e3884edb2f25ce127069b15f15da32278153bc9b4d2568156fcb6ec41?s=96&d=mm&r=g"},"sameAs":["http:\/\/staging.ketandesai.co.uk"],"url":"https:\/\/ketandesai.co.uk\/index.php\/author\/ketandesaiadmin\/"}]}},"jetpack_featured_media_url":"https:\/\/ketandesai.co.uk\/wp-content\/uploads\/2018\/02\/blue-www_GydjIYr__L-scaled.jpg","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/ketandesai.co.uk\/index.php\/wp-json\/wp\/v2\/posts\/463","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ketandesai.co.uk\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/ketandesai.co.uk\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/ketandesai.co.uk\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/ketandesai.co.uk\/index.php\/wp-json\/wp\/v2\/comments?post=463"}],"version-history":[{"count":1,"href":"https:\/\/ketandesai.co.uk\/index.php\/wp-json\/wp\/v2\/posts\/463\/revisions"}],"predecessor-version":[{"id":1010,"href":"https:\/\/ketandesai.co.uk\/index.php\/wp-json\/wp\/v2\/posts\/463\/revisions\/1010"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/ketandesai.co.uk\/index.php\/wp-json\/wp\/v2\/media\/1009"}],"wp:attachment":[{"href":"https:\/\/ketandesai.co.uk\/index.php\/wp-json\/wp\/v2\/media?parent=463"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ketandesai.co.uk\/index.php\/wp-json\/wp\/v2\/categories?post=463"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ketandesai.co.uk\/index.php\/wp-json\/wp\/v2\/tags?post=463"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}