{"id":158,"date":"2024-12-28T10:21:00","date_gmt":"2024-12-28T04:51:00","guid":{"rendered":"https:\/\/www.advaitss.co.in\/blogs\/?p=158"},"modified":"2024-12-28T10:42:25","modified_gmt":"2024-12-28T05:12:25","slug":"how-to-serve-a-website-from-a-home-directory","status":"publish","type":"post","link":"https:\/\/www.advaitss.co.in\/blogs\/how-to-serve-a-website-from-a-home-directory\/","title":{"rendered":"How to serve a website from home directory instead of default root?"},"content":{"rendered":"\n<p class=\"has-accent-color has-text-color has-link-color wp-elements-73521aab0ef634b39ea2c7c27624509d\">How to serve a website from home directory is a common question being asked in developer community. To serve a website from home directory of your hosting account may it be a virtual private server or a cloud server is not much difficult as you think. This article explains in brief about achieving this.<\/p>\n\n\n\n<p>Some of you may think that why is it required? The answer is, instead of forking the web server&#8217;s default web root permissions it is most convenient way. Also, transferring files to server directly to default web-root is not possible when non root user is not granted the write permissions to it. To avoid this scenario, here we suggest an alternative way to host a website in home directory.<\/p>\n\n\n\n<p>To achieve this, we will make a child directory in user&#8217;s home named <em>public_html<\/em> folder and grant specific permissions to directories in it so that it will be accessed by world. After creating the directory, the structure would look like <em>\/home\/ec2-user\/public_html<\/em> .<\/p>\n\n\n\n<p>To serve your website on an ec2 instance without uploading to root directory <em>\/var\/www\/html\/<\/em>. Given below are the detailed instructions to follow assuming the server is amazon linux:<\/p>\n\n\n\n<p>To host a website in the EC2-user home directory instead of the default <code>\/var\/www\/html<\/code> directory, you&#8217;ll need to configure your web server to serve files from your home directory. Here are detailed instructions using Apache as an example:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1: Launch an EC2 Instance<\/h3>\n\n\n\n<ol start=\"1\" class=\"wp-block-list\">\n<li><strong>Sign in to your AWS Management Console<\/strong>.<\/li>\n\n\n\n<li><strong>Navigate to the EC2 Dashboard<\/strong> and click <strong>Launch Instance<\/strong>.<\/li>\n\n\n\n<li><strong>Configure the instance<\/strong>: Choose an Amazon Machine Image (AMI), instance type, and security group.<\/li>\n\n\n\n<li><strong>Launch the instance<\/strong> and <strong>connect to it via SSH<\/strong>.<\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\">Step 2: Install Apache Web Server<\/h3>\n\n\n\n<p>Update your package lists:<\/p>\n\n\n\n<pre class=\"wp-block-code has-accent-color has-base-background-color has-text-color has-background has-link-color wp-elements-dae27d643958ceb1324077dafc7b68ca\"><code><code><strong>sudo yum update -y <\/strong><\/code><\/code><\/pre>\n\n\n\n<p>Then, Install Apache: <\/p>\n\n\n\n<pre class=\"wp-block-code has-accent-color has-text-color has-link-color wp-elements-4ff1b725ebf456d2e6b22fb93dd43910\"><code><code><strong>sudo yum install httpd -y<\/strong><\/code><\/code><\/pre>\n\n\n\n<p>Finally, Start and enable Apache: <\/p>\n\n\n\n<pre class=\"wp-block-code has-accent-color has-text-color has-link-color wp-elements-776cabac71e338e04d86b0b16e08bbd9\"><code><strong><code>sudo systemctl start httpd <\/code>\n<code>sudo systemctl enable httpd<\/code><\/strong><\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Step 3: Configure Apache to Serve Files from Your Home Directory<\/h3>\n\n\n\n<p>Create a symbolic link from your home directory to the default web root directory: <\/p>\n\n\n\n<pre class=\"wp-block-code has-accent-color has-text-color has-link-color wp-elements-55d333308b1f55b384cc4bc5dbbdc6df\"><code><code><strong>sudo ln -s \/home\/ec2-user\/public_html \/var\/www\/html <\/strong><\/code><\/code><\/pre>\n\n\n\n<p>Set permissions to ensure the web server can access the files: <\/p>\n\n\n\n<pre class=\"wp-block-code has-accent-color has-text-color has-link-color wp-elements-f47fdde18ee68d0a806b632cef0f28aa\"><code><strong>sudo chown -R apache:apache \/home\/ec2-user\/public_html\n\nsudo chmod -R 755 \/home\/ec2-user\/public_html<\/strong><\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Step 4: Configure Apache Virtual Hosts (Optional)<\/h3>\n\n\n\n<p>If you want to use a custom domain, you can configure virtual hosts. <br>Create a new configuration file in <code><em>\/etc\/httpd\/conf.d\/<\/em><\/code><\/p>\n\n\n\n<pre class=\"wp-block-code has-accent-color has-text-color has-link-color wp-elements-0aaebe420cec4760a26d2824b5cff3e4\"><code><code><strong>sudo nano \/etc\/httpd\/conf.d\/your-domain.conf<\/strong><\/code><\/code><\/pre>\n\n\n\n<p>Then, add the following configuration in it:<\/p>\n\n\n\n<pre class=\"wp-block-code has-accent-color has-text-color has-link-color wp-elements-13011a4e2c091918fadc4bb4716e916e\"><code><strong><code>&lt;VirtualHost *:80> <\/code>\n<code>ServerAdmin admin@yourdomain.com <\/code>\n<code>DocumentRoot \/home\/ec2-user\/public_html <\/code>\n<code>ServerName yourdomain.com <\/code>\n<code>ErrorLog \/var\/log\/httpd\/your-domain-error.log <\/code>\n<code>CustomLog \/var\/log\/httpd\/your-domain-access.log combined <\/code>\n<code>&lt;\/VirtualHost><\/code> <\/strong><\/code><\/pre>\n\n\n\n<p>Replace <code>yourdomain.com<\/code> with your domain name in above configuration.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 5: Restart Apache web server<\/h3>\n\n\n\n<p>We need to <strong>Restart Apache<\/strong> to apply the changes<\/p>\n\n\n\n<pre class=\"wp-block-code has-accent-color has-text-color has-link-color wp-elements-6c50f20d05191511269a8b39dd05677e\"><code><code><strong>sudo systemctl restart httpd<\/strong><\/code><\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Step 6: Test Your Setup to serve a website from home directory<\/h3>\n\n\n\n<p>Access your website using your domain name or the EC2 instance&#8217;s public IP address.<\/p>\n\n\n\n<p>By following these steps, you can host your website in your EC2-user home directory instead of the default <code><em>\/var\/www\/html<\/em><\/code> directory.<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Access your website using your domain name or the EC2 instance&#8217;s public IP address.<\/p>\n<p>By following these steps, you can host your website in your EC2-user home directory instead of the default \/var\/www\/html directory<\/p>\n","protected":false},"author":1,"featured_media":163,"comment_status":"open","ping_status":"closed","sticky":true,"template":"","format":"standard","meta":{"footnotes":""},"categories":[55],"tags":[59,58,60,62,61],"class_list":["post-158","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-web-development-blogs","tag-apache","tag-aws","tag-configuration","tag-home-directory","tag-virtual-host"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to serve a website from home directory instead of default root? - Blogs<\/title>\n<meta name=\"description\" content=\"To serve your website from home directory on an ec2 instance without uploading to root directory \/var\/www\/html\/ on amazon linux\" \/>\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.advaitss.co.in\/blogs\/how-to-serve-a-website-from-a-home-directory\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to serve a website from home directory instead of default root? - Blogs\" \/>\n<meta property=\"og:description\" content=\"To serve your website from home directory on an ec2 instance without uploading to root directory \/var\/www\/html\/ on amazon linux\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.advaitss.co.in\/blogs\/how-to-serve-a-website-from-a-home-directory\/\" \/>\n<meta property=\"og:site_name\" content=\"Blogs\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/advaitsoftsol\" \/>\n<meta property=\"article:published_time\" content=\"2024-12-28T04:51:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-12-28T05:12:25+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.advaitss.co.in\/blogs\/wp-content\/uploads\/2024\/12\/aws-1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1175\" \/>\n\t<meta property=\"og:image:height\" content=\"360\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"abhinav\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@SoftwareAdvait\" \/>\n<meta name=\"twitter:site\" content=\"@SoftwareAdvait\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"abhinav\" \/>\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.advaitss.co.in\/blogs\/how-to-serve-a-website-from-a-home-directory\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.advaitss.co.in\/blogs\/how-to-serve-a-website-from-a-home-directory\/\"},\"author\":{\"name\":\"abhinav\",\"@id\":\"https:\/\/www.advaitss.co.in\/blogs\/#\/schema\/person\/acc9291ac918c0e83b7673064bae3ec1\"},\"headline\":\"How to serve a website from home directory instead of default root?\",\"datePublished\":\"2024-12-28T04:51:00+00:00\",\"dateModified\":\"2024-12-28T05:12:25+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.advaitss.co.in\/blogs\/how-to-serve-a-website-from-a-home-directory\/\"},\"wordCount\":448,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.advaitss.co.in\/blogs\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.advaitss.co.in\/blogs\/how-to-serve-a-website-from-a-home-directory\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.advaitss.co.in\/blogs\/wp-content\/uploads\/2024\/12\/aws-1.png\",\"keywords\":[\"apache\",\"aws\",\"configuration\",\"home directory\",\"virtual host\"],\"articleSection\":[\"Web development Blogs\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.advaitss.co.in\/blogs\/how-to-serve-a-website-from-a-home-directory\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.advaitss.co.in\/blogs\/how-to-serve-a-website-from-a-home-directory\/\",\"url\":\"https:\/\/www.advaitss.co.in\/blogs\/how-to-serve-a-website-from-a-home-directory\/\",\"name\":\"How to serve a website from home directory instead of default root? - Blogs\",\"isPartOf\":{\"@id\":\"https:\/\/www.advaitss.co.in\/blogs\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.advaitss.co.in\/blogs\/how-to-serve-a-website-from-a-home-directory\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.advaitss.co.in\/blogs\/how-to-serve-a-website-from-a-home-directory\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.advaitss.co.in\/blogs\/wp-content\/uploads\/2024\/12\/aws-1.png\",\"datePublished\":\"2024-12-28T04:51:00+00:00\",\"dateModified\":\"2024-12-28T05:12:25+00:00\",\"description\":\"To serve your website from home directory on an ec2 instance without uploading to root directory \/var\/www\/html\/ on amazon linux\",\"breadcrumb\":{\"@id\":\"https:\/\/www.advaitss.co.in\/blogs\/how-to-serve-a-website-from-a-home-directory\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.advaitss.co.in\/blogs\/how-to-serve-a-website-from-a-home-directory\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.advaitss.co.in\/blogs\/how-to-serve-a-website-from-a-home-directory\/#primaryimage\",\"url\":\"https:\/\/www.advaitss.co.in\/blogs\/wp-content\/uploads\/2024\/12\/aws-1.png\",\"contentUrl\":\"https:\/\/www.advaitss.co.in\/blogs\/wp-content\/uploads\/2024\/12\/aws-1.png\",\"width\":1175,\"height\":360,\"caption\":\"serve a website from home directory on aws\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.advaitss.co.in\/blogs\/how-to-serve-a-website-from-a-home-directory\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.advaitss.co.in\/blogs\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to serve a website from home directory instead of default root?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.advaitss.co.in\/blogs\/#website\",\"url\":\"https:\/\/www.advaitss.co.in\/blogs\/\",\"name\":\"Blogs\",\"description\":\"Blogs that empower you\",\"publisher\":{\"@id\":\"https:\/\/www.advaitss.co.in\/blogs\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.advaitss.co.in\/blogs\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.advaitss.co.in\/blogs\/#organization\",\"name\":\"Blogs\",\"url\":\"https:\/\/www.advaitss.co.in\/blogs\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.advaitss.co.in\/blogs\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.advaitss.co.in\/blogs\/wp-content\/uploads\/2022\/06\/advait_logo_mini.png\",\"contentUrl\":\"https:\/\/www.advaitss.co.in\/blogs\/wp-content\/uploads\/2022\/06\/advait_logo_mini.png\",\"width\":154,\"height\":44,\"caption\":\"Blogs\"},\"image\":{\"@id\":\"https:\/\/www.advaitss.co.in\/blogs\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/advaitsoftsol\",\"https:\/\/x.com\/SoftwareAdvait\",\"https:\/\/www.linkedin.com\/company\/advait-software-solutions\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.advaitss.co.in\/blogs\/#\/schema\/person\/acc9291ac918c0e83b7673064bae3ec1\",\"name\":\"abhinav\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.advaitss.co.in\/blogs\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/ee4ccbe299555553a0c16bc52f19597422866c681c7b8a21ec46d767e6f0acf3?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/ee4ccbe299555553a0c16bc52f19597422866c681c7b8a21ec46d767e6f0acf3?s=96&d=mm&r=g\",\"caption\":\"abhinav\"},\"sameAs\":[\"https:\/\/advaitss.co.in\/blogs\"],\"url\":\"https:\/\/www.advaitss.co.in\/blogs\/author\/abhinav\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to serve a website from home directory instead of default root? - Blogs","description":"To serve your website from home directory on an ec2 instance without uploading to root directory \/var\/www\/html\/ on amazon linux","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.advaitss.co.in\/blogs\/how-to-serve-a-website-from-a-home-directory\/","og_locale":"en_US","og_type":"article","og_title":"How to serve a website from home directory instead of default root? - Blogs","og_description":"To serve your website from home directory on an ec2 instance without uploading to root directory \/var\/www\/html\/ on amazon linux","og_url":"https:\/\/www.advaitss.co.in\/blogs\/how-to-serve-a-website-from-a-home-directory\/","og_site_name":"Blogs","article_publisher":"https:\/\/www.facebook.com\/advaitsoftsol","article_published_time":"2024-12-28T04:51:00+00:00","article_modified_time":"2024-12-28T05:12:25+00:00","og_image":[{"width":1175,"height":360,"url":"https:\/\/www.advaitss.co.in\/blogs\/wp-content\/uploads\/2024\/12\/aws-1.png","type":"image\/png"}],"author":"abhinav","twitter_card":"summary_large_image","twitter_creator":"@SoftwareAdvait","twitter_site":"@SoftwareAdvait","twitter_misc":{"Written by":"abhinav","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.advaitss.co.in\/blogs\/how-to-serve-a-website-from-a-home-directory\/#article","isPartOf":{"@id":"https:\/\/www.advaitss.co.in\/blogs\/how-to-serve-a-website-from-a-home-directory\/"},"author":{"name":"abhinav","@id":"https:\/\/www.advaitss.co.in\/blogs\/#\/schema\/person\/acc9291ac918c0e83b7673064bae3ec1"},"headline":"How to serve a website from home directory instead of default root?","datePublished":"2024-12-28T04:51:00+00:00","dateModified":"2024-12-28T05:12:25+00:00","mainEntityOfPage":{"@id":"https:\/\/www.advaitss.co.in\/blogs\/how-to-serve-a-website-from-a-home-directory\/"},"wordCount":448,"commentCount":0,"publisher":{"@id":"https:\/\/www.advaitss.co.in\/blogs\/#organization"},"image":{"@id":"https:\/\/www.advaitss.co.in\/blogs\/how-to-serve-a-website-from-a-home-directory\/#primaryimage"},"thumbnailUrl":"https:\/\/www.advaitss.co.in\/blogs\/wp-content\/uploads\/2024\/12\/aws-1.png","keywords":["apache","aws","configuration","home directory","virtual host"],"articleSection":["Web development Blogs"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.advaitss.co.in\/blogs\/how-to-serve-a-website-from-a-home-directory\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.advaitss.co.in\/blogs\/how-to-serve-a-website-from-a-home-directory\/","url":"https:\/\/www.advaitss.co.in\/blogs\/how-to-serve-a-website-from-a-home-directory\/","name":"How to serve a website from home directory instead of default root? - Blogs","isPartOf":{"@id":"https:\/\/www.advaitss.co.in\/blogs\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.advaitss.co.in\/blogs\/how-to-serve-a-website-from-a-home-directory\/#primaryimage"},"image":{"@id":"https:\/\/www.advaitss.co.in\/blogs\/how-to-serve-a-website-from-a-home-directory\/#primaryimage"},"thumbnailUrl":"https:\/\/www.advaitss.co.in\/blogs\/wp-content\/uploads\/2024\/12\/aws-1.png","datePublished":"2024-12-28T04:51:00+00:00","dateModified":"2024-12-28T05:12:25+00:00","description":"To serve your website from home directory on an ec2 instance without uploading to root directory \/var\/www\/html\/ on amazon linux","breadcrumb":{"@id":"https:\/\/www.advaitss.co.in\/blogs\/how-to-serve-a-website-from-a-home-directory\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.advaitss.co.in\/blogs\/how-to-serve-a-website-from-a-home-directory\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.advaitss.co.in\/blogs\/how-to-serve-a-website-from-a-home-directory\/#primaryimage","url":"https:\/\/www.advaitss.co.in\/blogs\/wp-content\/uploads\/2024\/12\/aws-1.png","contentUrl":"https:\/\/www.advaitss.co.in\/blogs\/wp-content\/uploads\/2024\/12\/aws-1.png","width":1175,"height":360,"caption":"serve a website from home directory on aws"},{"@type":"BreadcrumbList","@id":"https:\/\/www.advaitss.co.in\/blogs\/how-to-serve-a-website-from-a-home-directory\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.advaitss.co.in\/blogs\/"},{"@type":"ListItem","position":2,"name":"How to serve a website from home directory instead of default root?"}]},{"@type":"WebSite","@id":"https:\/\/www.advaitss.co.in\/blogs\/#website","url":"https:\/\/www.advaitss.co.in\/blogs\/","name":"Blogs","description":"Blogs that empower you","publisher":{"@id":"https:\/\/www.advaitss.co.in\/blogs\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.advaitss.co.in\/blogs\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.advaitss.co.in\/blogs\/#organization","name":"Blogs","url":"https:\/\/www.advaitss.co.in\/blogs\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.advaitss.co.in\/blogs\/#\/schema\/logo\/image\/","url":"https:\/\/www.advaitss.co.in\/blogs\/wp-content\/uploads\/2022\/06\/advait_logo_mini.png","contentUrl":"https:\/\/www.advaitss.co.in\/blogs\/wp-content\/uploads\/2022\/06\/advait_logo_mini.png","width":154,"height":44,"caption":"Blogs"},"image":{"@id":"https:\/\/www.advaitss.co.in\/blogs\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/advaitsoftsol","https:\/\/x.com\/SoftwareAdvait","https:\/\/www.linkedin.com\/company\/advait-software-solutions"]},{"@type":"Person","@id":"https:\/\/www.advaitss.co.in\/blogs\/#\/schema\/person\/acc9291ac918c0e83b7673064bae3ec1","name":"abhinav","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.advaitss.co.in\/blogs\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/ee4ccbe299555553a0c16bc52f19597422866c681c7b8a21ec46d767e6f0acf3?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ee4ccbe299555553a0c16bc52f19597422866c681c7b8a21ec46d767e6f0acf3?s=96&d=mm&r=g","caption":"abhinav"},"sameAs":["https:\/\/advaitss.co.in\/blogs"],"url":"https:\/\/www.advaitss.co.in\/blogs\/author\/abhinav\/"}]}},"_links":{"self":[{"href":"https:\/\/www.advaitss.co.in\/blogs\/wp-json\/wp\/v2\/posts\/158","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.advaitss.co.in\/blogs\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.advaitss.co.in\/blogs\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.advaitss.co.in\/blogs\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.advaitss.co.in\/blogs\/wp-json\/wp\/v2\/comments?post=158"}],"version-history":[{"count":4,"href":"https:\/\/www.advaitss.co.in\/blogs\/wp-json\/wp\/v2\/posts\/158\/revisions"}],"predecessor-version":[{"id":164,"href":"https:\/\/www.advaitss.co.in\/blogs\/wp-json\/wp\/v2\/posts\/158\/revisions\/164"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.advaitss.co.in\/blogs\/wp-json\/wp\/v2\/media\/163"}],"wp:attachment":[{"href":"https:\/\/www.advaitss.co.in\/blogs\/wp-json\/wp\/v2\/media?parent=158"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.advaitss.co.in\/blogs\/wp-json\/wp\/v2\/categories?post=158"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.advaitss.co.in\/blogs\/wp-json\/wp\/v2\/tags?post=158"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}