{"id":978,"date":"2017-02-09T12:21:55","date_gmt":"2017-02-09T06:51:55","guid":{"rendered":"https:\/\/blog.pheonixsolutions.com\/?p=978"},"modified":"2017-02-12T15:02:01","modified_gmt":"2017-02-12T09:32:01","slug":"setup-aws-codedeploy-linux","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/blog\/setup-aws-codedeploy-linux\/","title":{"rendered":"Setup AWS codedeploy on Linux"},"content":{"rendered":"<p><strong>Date Posted:28-01-2017<\/strong><\/p>\n<p>In the modern era, deploying the code on the multiple server is a challenging one. In classic, people normally use FTP\/SFTP to upload the files and restart application. In this article, we are gonna explain how to use code deploy aws service to deploy the code on aws instances.<\/p>\n<p>There are two ways to deploy the code to the instances.<\/p>\n<ol>\n<li>Aws S3<\/li>\n<li>Git Hub<\/li>\n<\/ol>\n<p>We are going to cover how to deploy code from git hub. Incase if you want use, amazon s3, please refer amazon code deploy document.<\/p>\n<h4>Implementation:<\/h4>\n<p>Let&#8217;s start with\u00a0IAM role creation. We need to create 2 IAM roles for the services ec2 and code deploy to communicate each other.<\/p>\n<ol>\n<li>CodeDeployInstanceRole<\/li>\n<li>CodeDeployServiceRole<\/li>\n<\/ol>\n<p>Create a new Role(<strong>IAM &gt; Create New Role <\/strong>). Enter the Role name as <strong>CodeDeployServiceRole <\/strong>and attach the below policy.<\/p>\n<p>+ AwsCodeDeployRole<\/p>\n<p>Create another role. Enter the Role Name as <strong>CodeDeployInstanceRole <\/strong>and attach the below policy.<\/p>\n<p>+ AmazonEc2RolePolicyForAWSCodeDeploy<br \/>\n+ AutoScalingNotificationAccessRole<\/p>\n<h5><\/h5>\n<h5>Launching Instance with IAM Role:<\/h5>\n<p>From previous step, we have created 2 policies and its time to use these policies at the time of instance launch.<\/p>\n<p>While launching the instance, make sure to select &#8220;<strong><span class=\"gwt-InlineLabel CBB\">IAM role&#8221; <\/span><\/strong><span class=\"gwt-InlineLabel CBB\">as &#8220;CodeDeployInstanceRole&#8221; and complete the installation launch process. Please follow the below post to install LAMP, LEMP on the server which we have launched depends on your requirement.<\/span><\/p>\n<p><a href=\"https:\/\/blog.pheonixsolutions.com\/install-apache-2-4-php5-6-ubuntu-16-04\/\">Install apache, php5.6 ubuntu <\/a><\/p>\n<p><a href=\"https:\/\/blog.pheonixsolutions.com\/install-nginx-php-mariadb-ubuntu-16-04-1\/\">Install Nginx, Php, MariaDB on Ubuntu 16.04.1<\/a><\/p>\n<h5>Install Dependency:<\/h5>\n<p>In this example, we are using ubuntu host. Lets start with dependency installation.<\/p>\n<p><code>apt-get -y install python-pip<\/code><code><\/code><\/p>\n<p><code>apt-get -y install ruby<\/code><\/p>\n<p><code>apt-get -y install wget<\/code><\/p>\n<p>Download the codedeploy-agent install.<\/p>\n<p><code>wget https:\/\/aws-codedeploy-eu-central-1.s3.amazonaws.com\/latest\/install<\/code><\/p>\n<p>Install the application<\/p>\n<p><code>chmod +x .\/install<br \/>\n.\/install auto<\/code><\/p>\n<p>Start the codedeploy-agent.<\/p>\n<p><code>service codedeploy-agent start<\/code><\/p>\n<p>Deployment Script:<\/p>\n<p>Code deploy requires\u00a0<em>appspec.yml\u00a0<\/em> files which is mandatory for codedeploy to work. Create appspec.yml and upload it in git repo. The sample configuration can be downloaded from the below URL.<\/p>\n<p><a href=\"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2017\/02\/appspec.txt\">appspec.yml<\/a><\/p>\n<p>&nbsp;<\/p>\n<pre>version: 0.0\r\nos: linux\r\nfiles:\r\n  - source: \/\r\n    destination: \/var\/www\/html\r\n    except:\r\n    owner: ubuntu\r\n    group: ubuntu\r\npermissions:\r\n  - object: \/var\/www\/html\r\n    owner: ubuntu\r\n    group: ubuntu\r\n    mode: 755\r\n    type:\r\n      - directory\r\n  - object: \/var\/www\/html\r\n    owner: ubuntu\r\n    group: ubuntu\r\n    type:\r\n      - file\r\n\r\nhooks:\r\n  BeforeInstall:\r\n    - location: scripts\/install_codedeployment\r\n      timeout: 40\r\n      runas: root\r\n  ApplicationStart:\r\n    - location: scripts\/restart_nginx.sh\r\n      timeout: 30\r\nrunas: root\r\n<\/pre>\n<p>Create a directory\u00a0<strong>scripts\u00a0<\/strong>on git and upload the following files on the git repository.<\/p>\n<p><a href=\"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2017\/02\/restart_nginx.txt\">restart_nginx.sh<\/a><\/p>\n<p>&nbsp;<\/p>\n<pre>\r\n#!\/bin\/bash\r\nservice nginx restart\r\n<\/pre>\n<h5>Create CodeDeploy Application:<\/h5>\n<p>Login to Aws Management Console<\/p>\n<p>Move the pointer to <strong>Services &gt; CodeDeploy<\/strong><\/p>\n<p>Select <strong>Create Application<\/strong><\/p>\n<p>Add the application details<\/p>\n<hr \/>\n<p><em><span class=\"ng-binding\" data-ng-bind=\"fieldLabel\">Application name<\/span><\/em><span class=\"ng-scope\" data-ng-if=\"required\"><em>:&lt;Your Application Name&gt;<\/em><br \/>\n<\/span><\/p>\n<p><em><span class=\"ng-binding\" data-ng-bind=\"fieldLabel\">Deployment group name<\/span><\/em><span class=\"ng-scope\" data-ng-if=\"required\">:&lt;Deployment Group Name&gt;<br \/>\n<\/span><\/p>\n<p class=\"headline-normal\"><em>Deployment type: In-Place Deployment<\/em><\/p>\n<p class=\"headline-normal\"><em>Add Instances:<\/em><\/p>\n<ul>\n<li class=\"headline-normal\">\u00a0\u00a0\u00a0 Search by Tags<\/li>\n<\/ul>\n<p>There will be 3 options for deploying the code deploy<\/p>\n<ol>\n<li>Amazon Ec2<\/li>\n<li>Autoscaling Group<\/li>\n<li>On Premises Instance<\/li>\n<\/ol>\n<p>In our Example, we will use Amazon EC2 with <strong>Name <\/strong>tag to the instance which we created. Select the instance.<\/p>\n<p class=\"headline-form ng-scope\" data-ng-if=\"headerType === 'form'\"><em><span class=\"ng-binding\" data-ng-bind=\"heading\">Deployment configuration: CodeDeployDefault.OneAtaTime<br \/>\n<\/span><\/em><\/p>\n<p class=\"headline-form ng-scope\" data-ng-if=\"headerType === 'form'\"><em><span class=\"ng-binding\" data-ng-bind=\"heading\">Service role ARN<\/span>:<strong>CodeDeployService<\/strong><\/em><\/p>\n<hr \/>\n<h5>Deploying codedeploy to the instance:<\/h5>\n<p>1.Login to AWS Management Console<\/p>\n<p>2.Move to <em>AWS CodeDeploy &gt; <span class=\"ng-binding\" data-ng-bind=\"crumb.text | trimLongString:35\">Applications<\/span><\/em><\/p>\n<p>3. <em>Actions &gt; Deploy New Version<\/em><\/p>\n<p>4. Select <em><span class=\"ng-binding\" data-ng-bind=\"fieldLabel\">Revision type:My application is stored in GitHub<\/span><\/em><\/p>\n<p>5.<em> Repository Name:&lt;Your Git Repository&gt;<\/em><\/p>\n<p>6. <em>Commit ID:&lt;GIT Commit ID&gt;<\/em><\/p>\n<p>7. Click on <em>Deploy<\/em><\/p>\n<p>Look into Deployment ID and check the deployment process.<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Date Posted:28-01-2017 In the modern era, deploying the code on the multiple server is a challenging one. In classic, people normally use FTP\/SFTP to upload the files and restart application. In this article, we are gonna explain how to use code deploy aws service to deploy the code on aws&hellip; <a href=\"https:\/\/pheonixsolutions.com\/blog\/setup-aws-codedeploy-linux\/\" class=\"more-link read-more\" rel=\"bookmark\">Continue Reading <span class=\"screen-reader-text\">Setup AWS codedeploy on Linux<\/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":true,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[270,225,282],"tags":[280,281,283,274],"class_list":{"0":"post-978","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"hentry","6":"category-amazon","7":"category-linux","8":"category-ubuntu","9":"tag-amazon","10":"tag-codedeploy","11":"tag-git","12":"tag-ubuntu","13":"h-entry","15":"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\/setup-aws-codedeploy-linux\/\" \/>\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=\"Date Posted:28-01-2017 In the modern era, deploying the code on the multiple server is a challenging one. In classic, people normally use FTP\/SFTP to upload the files and restart application. In this article, we are gonna explain how to use code deploy aws service to deploy the code on aws&hellip; Continue Reading Setup AWS codedeploy on Linux\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/blog\/setup-aws-codedeploy-linux\/\" \/>\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=\"2017-02-09T06:51:55+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2017-02-12T09:32:01+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=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/setup-aws-codedeploy-linux\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/setup-aws-codedeploy-linux\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\"},\"headline\":\"Setup AWS codedeploy on Linux\",\"datePublished\":\"2017-02-09T06:51:55+00:00\",\"dateModified\":\"2017-02-12T09:32:01+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/setup-aws-codedeploy-linux\\\/\"},\"wordCount\":464,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"keywords\":[\"amazon\",\"codedeploy\",\"git\",\"ubuntu\"],\"articleSection\":[\"Amazon\",\"Linux\",\"Ubuntu\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/setup-aws-codedeploy-linux\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/setup-aws-codedeploy-linux\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/setup-aws-codedeploy-linux\\\/\",\"name\":\"Pheonix Solutions - We Empower Your Business Growth\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\"},\"datePublished\":\"2017-02-09T06:51:55+00:00\",\"dateModified\":\"2017-02-12T09:32:01+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/setup-aws-codedeploy-linux\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/setup-aws-codedeploy-linux\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/setup-aws-codedeploy-linux\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Setup AWS codedeploy on Linux\"}]},{\"@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\/setup-aws-codedeploy-linux\/","og_locale":"en_US","og_type":"article","og_title":"Pheonix Solutions - We Empower Your Business Growth","og_description":"Date Posted:28-01-2017 In the modern era, deploying the code on the multiple server is a challenging one. In classic, people normally use FTP\/SFTP to upload the files and restart application. In this article, we are gonna explain how to use code deploy aws service to deploy the code on aws&hellip; Continue Reading Setup AWS codedeploy on Linux","og_url":"https:\/\/pheonixsolutions.com\/blog\/setup-aws-codedeploy-linux\/","og_site_name":"PHEONIXSOLUTIONS","article_publisher":"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","article_published_time":"2017-02-09T06:51:55+00:00","article_modified_time":"2017-02-12T09:32:01+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":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/blog\/setup-aws-codedeploy-linux\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/setup-aws-codedeploy-linux\/"},"author":{"name":"admin","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503"},"headline":"Setup AWS codedeploy on Linux","datePublished":"2017-02-09T06:51:55+00:00","dateModified":"2017-02-12T09:32:01+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/setup-aws-codedeploy-linux\/"},"wordCount":464,"commentCount":0,"publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"keywords":["amazon","codedeploy","git","ubuntu"],"articleSection":["Amazon","Linux","Ubuntu"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/blog\/setup-aws-codedeploy-linux\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/blog\/setup-aws-codedeploy-linux\/","url":"https:\/\/pheonixsolutions.com\/blog\/setup-aws-codedeploy-linux\/","name":"Pheonix Solutions - We Empower Your Business Growth","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#website"},"datePublished":"2017-02-09T06:51:55+00:00","dateModified":"2017-02-12T09:32:01+00:00","breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/blog\/setup-aws-codedeploy-linux\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/blog\/setup-aws-codedeploy-linux\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/blog\/setup-aws-codedeploy-linux\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Setup AWS codedeploy on Linux"}]},{"@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-fM","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/978","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=978"}],"version-history":[{"count":0,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/978\/revisions"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=978"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=978"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=978"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}