{"id":1063,"date":"2024-07-02T06:35:53","date_gmt":"2024-07-02T06:35:53","guid":{"rendered":"https:\/\/www.devopsconsulting.in\/blog\/?p=1063"},"modified":"2024-07-05T12:46:00","modified_gmt":"2024-07-05T12:46:00","slug":"how-to-protect-laravel-project-with-ioncube-a-complete-guide","status":"publish","type":"post","link":"https:\/\/www.devopsconsulting.in\/blog\/how-to-protect-laravel-project-with-ioncube-a-complete-guide\/","title":{"rendered":"How to Protect Laravel Project with IonCube: A Complete Guide"},"content":{"rendered":"\n<figure class=\"wp-block-image size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"1024\" src=\"https:\/\/www.devopsconsulting.in\/blog\/wp-content\/uploads\/2024\/07\/OIG344.jpg\" alt=\"\" class=\"wp-image-1077\" style=\"width:725px;height:auto\" srcset=\"https:\/\/www.devopsconsulting.in\/blog\/wp-content\/uploads\/2024\/07\/OIG344.jpg 1024w, https:\/\/www.devopsconsulting.in\/blog\/wp-content\/uploads\/2024\/07\/OIG344-300x300.jpg 300w, https:\/\/www.devopsconsulting.in\/blog\/wp-content\/uploads\/2024\/07\/OIG344-150x150.jpg 150w, https:\/\/www.devopsconsulting.in\/blog\/wp-content\/uploads\/2024\/07\/OIG344-768x768.jpg 768w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>To protect a Laravel project using IonCube, follow these comprehensive steps. IonCube is a popular tool for encoding PHP files to protect your source code from unauthorized use. Below, you will find a detailed guide on how to do this with examples.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 1: Install IonCube Loader<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">For Local Development<\/h3>\n\n\n\n<h4 class=\"wp-block-heading\">Download IonCube Loader:<\/h4>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Go to the <a>IonCube download page<\/a>.<\/li>\n\n\n\n<li>Download the appropriate loader for your PHP version and operating system.<\/li>\n<\/ul>\n\n\n\n<h4 class=\"wp-block-heading\">Install the Loader:<\/h4>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Extract the downloaded file.<\/li>\n\n\n\n<li>Copy the <code>ioncube_loader<\/code> file to your PHP extensions directory (usually <code>php\/ext<\/code>).<\/li>\n<\/ul>\n\n\n\n<h4 class=\"wp-block-heading\">Edit <code>php.ini<\/code>:<\/h4>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Add the following line to you  php.ini file:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>zend_extension = \/path\/to\/ioncube_loader_lin_X.X.so<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Replace <code>\/path\/to\/ioncube_loader_lin_X.X.so<\/code> with the actual path to the IonCube loader file and <code>X.X<\/code> with your PHP version.<\/li>\n<\/ul>\n\n\n\n<h4 class=\"wp-block-heading\">Restart Your Web Server:<\/h4>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Restart your web server to apply changes<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo service apache2 restart  # For Apache\nsudo \/opt\/lampp\/lampp restart  # For Apache\nsudo service php-fpm restart  # For PHP-FPM<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">For Production Server<\/h3>\n\n\n\n<p>The steps are similar to the local development installation. Ensure the loader is installed on the server where your Laravel project will be deployed.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 2: Encode Your Laravel Project<\/h2>\n\n\n\n<h4 class=\"wp-block-heading\">Download IonCube Encoder:<\/h4>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Purchase and download the IonCube Encoder from the <a>IonCube website<\/a>.<\/li>\n<\/ul>\n\n\n\n<h4 class=\"wp-block-heading\">Encode Your Files:<\/h4>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Use the IonCube Encoder to encode your PHP files.<\/strong><\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Example command:<\/strong><\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>ioncube_encoder --encode .\/path\/to\/your\/laravel\/project --output .\/path\/to\/encoded\/output<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>This command encodes all the PHP files in your Laravel project and outputs the encoded files to the specified directory.<\/li>\n<\/ul>\n\n\n\n<h4 class=\"wp-block-heading\">Configuration File:<\/h4>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Create a configuration file to define which files to encode and any other encoding settings.<\/li>\n\n\n\n<li>Example configuration file (<code>encode.ini<\/code>):<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>&#91;main]\nsource_directory = \/path\/to\/your\/laravel\/project\ntarget_directory = \/path\/to\/encoded\/output\nphp_extensions = php\nexclude_patterns = *.blade.php,*.env<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 3: Deploy Encoded Files<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Prepare Your Laravel Project:<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Move the encoded files to your project directory.<\/li>\n\n\n\n<li>Ensure non-PHP files like views (<code>.blade.php<\/code>), configuration files (<code>.env<\/code>), and public assets (CSS, JS) are not encoded and are properly placed in the project structure.<\/li>\n<\/ul>\n\n\n\n<p><strong>Configure Autoloader:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Ensure the Laravel autoloader can load encoded files correctly.<\/li>\n\n\n\n<li>If necessary, update <code>composer.json<\/code> to adjust autoload settings.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Example Walkthrough<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Assume your Laravel project is located at <code>\/var\/www\/laravel_project<\/code> and you want to encode it.<\/li>\n<\/ul>\n\n\n\n<p><strong>Install IonCube Loader:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Download, extract, and install the IonCube loader as per your PHP version and operating system.<\/li>\n<\/ul>\n\n\n\n<p><strong>Encode Your Project:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Create a configuration file (<code>encode.ini<\/code>):<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>&#91;main]\nsource_directory = \/var\/www\/laravel_project\ntarget_directory = \/var\/www\/encoded_laravel_project\nphp_extensions = php\nexclude_patterns = *.blade.php,*.env,*.log<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Run the encoder:<\/strong><\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>ioncube_encoder --config encode.ini<\/code><\/pre>\n\n\n\n<p><strong>Deploy the Encoded Project:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Copy the encoded files from <code>\/var\/www\/encoded_laravel_project<\/code> to your deployment directory, e.g., <code>\/var\/www\/html\/laravel_project<\/code>.<\/li>\n<\/ul>\n\n\n\n<p><strong>Update Permissions and Ownership:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>set appropriate file permissions and ownership for your web server<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo chown -R www-data:www-data \/var\/www\/html\/laravel_project\nsudo chmod -R 755 \/var\/www\/html\/laravel_project<\/code><\/pre>\n\n\n\n<p><strong>Verify IonCube Loader:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Ensure IonCube loader is active:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>php -v<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>You should see a mention of IonCube in the output.<\/li>\n<\/ul>\n\n\n\n<p><strong>Run Your Laravel Application:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Access your Laravel application in the browser and verify it works correctly with the encoded files.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Troubleshooting<\/h2>\n\n\n\n<p><strong>Loader Not Found Error:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Ensure the <code>zend_extension<\/code> path in <code>php.ini<\/code> is correct and points to the IonCube loader file.<\/li>\n\n\n\n<li>Check the PHP version compatibility with the IonCube loader version.<\/li>\n<\/ul>\n\n\n\n<p><strong>Encoded Files Not Running:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Verify the encoding process completed without errors.<\/li>\n\n\n\n<li>Ensure all necessary files (views, configurations) are not encoded and are correctly placed.<\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>To protect a Laravel project using IonCube, follow these comprehensive steps. IonCube is a popular tool for encoding PHP files [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[87],"tags":[249,243,248,246,247,229,234,244,245],"class_list":["post-1063","post","type-post","status-publish","format-standard","hentry","category-laravel","tag-encrypt-laravel-php-code","tag-ioncube-laravel-encryption","tag-ioncube-php-encoder","tag-laravel-code-obfuscation","tag-laravel-ioncube-protection","tag-laravel-project-security","tag-laravel-security-best-practices","tag-protect-laravel-project","tag-secure-laravel-code"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.7 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Protect Laravel Project with IonCube: A Complete Guide - DevOps Consulting<\/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:\/\/www.devopsconsulting.in\/blog\/how-to-protect-laravel-project-with-ioncube-a-complete-guide\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Protect Laravel Project with IonCube: A Complete Guide - DevOps Consulting\" \/>\n<meta property=\"og:description\" content=\"To protect a Laravel project using IonCube, follow these comprehensive steps. IonCube is a popular tool for encoding PHP files [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.devopsconsulting.in\/blog\/how-to-protect-laravel-project-with-ioncube-a-complete-guide\/\" \/>\n<meta property=\"og:site_name\" content=\"DevOps Consulting\" \/>\n<meta property=\"article:published_time\" content=\"2024-07-02T06:35:53+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-07-05T12:46:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.devopsconsulting.in\/blog\/wp-content\/uploads\/2024\/07\/OIG344.jpg\" \/>\n<meta name=\"author\" content=\"Abhishek Singh\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Abhishek Singh\" \/>\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\":\"WebPage\",\"@id\":\"https:\/\/www.devopsconsulting.in\/blog\/how-to-protect-laravel-project-with-ioncube-a-complete-guide\/\",\"url\":\"https:\/\/www.devopsconsulting.in\/blog\/how-to-protect-laravel-project-with-ioncube-a-complete-guide\/\",\"name\":\"How to Protect Laravel Project with IonCube: A Complete Guide - DevOps Consulting\",\"isPartOf\":{\"@id\":\"https:\/\/www.devopsconsulting.in\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.devopsconsulting.in\/blog\/how-to-protect-laravel-project-with-ioncube-a-complete-guide\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.devopsconsulting.in\/blog\/how-to-protect-laravel-project-with-ioncube-a-complete-guide\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.devopsconsulting.in\/blog\/wp-content\/uploads\/2024\/07\/OIG344.jpg\",\"datePublished\":\"2024-07-02T06:35:53+00:00\",\"dateModified\":\"2024-07-05T12:46:00+00:00\",\"author\":{\"@id\":\"https:\/\/www.devopsconsulting.in\/blog\/#\/schema\/person\/fc397ba8be42f9fdd53450edfc73006f\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.devopsconsulting.in\/blog\/how-to-protect-laravel-project-with-ioncube-a-complete-guide\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.devopsconsulting.in\/blog\/how-to-protect-laravel-project-with-ioncube-a-complete-guide\/#primaryimage\",\"url\":\"https:\/\/www.devopsconsulting.in\/blog\/wp-content\/uploads\/2024\/07\/OIG344.jpg\",\"contentUrl\":\"https:\/\/www.devopsconsulting.in\/blog\/wp-content\/uploads\/2024\/07\/OIG344.jpg\",\"width\":1024,\"height\":1024},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.devopsconsulting.in\/blog\/#website\",\"url\":\"https:\/\/www.devopsconsulting.in\/blog\/\",\"name\":\"DevOps Consulting\",\"description\":\"DevOps Consulting | SRE Consulting | DevSecOps Consulting | MLOps Consulting\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.devopsconsulting.in\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.devopsconsulting.in\/blog\/#\/schema\/person\/fc397ba8be42f9fdd53450edfc73006f\",\"name\":\"Abhishek Singh\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.devopsconsulting.in\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/790feefe779852cdf344ca7318bf6c13832223c9b3c6bf4d217658412041026d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/790feefe779852cdf344ca7318bf6c13832223c9b3c6bf4d217658412041026d?s=96&d=mm&r=g\",\"caption\":\"Abhishek Singh\"},\"description\":\"I\u2019m Abhishek, a DevOps, SRE, DevSecOps, and Cloud expert with a passion for sharing knowledge and real-world experiences. I\u2019ve had the opportunity to work with Cotocus and continue to contribute to multiple platforms where I share insights across different domains: \u2022 DevOps School \u2013 Tech blogs and tutorials \u2022 Holiday Landmark \u2013 Travel stories and guides \u2022 Stocks Mantra \u2013 Stock market strategies and tips \u2022 My Medic Plus \u2013 Health and fitness guidance \u2022 TrueReviewNow \u2013 Honest product reviews \u2022 Wizbrand \u2013 SEO and digital tools for businesses I\u2019m also exploring the fascinating world of Quantum Computing.\",\"url\":\"https:\/\/www.devopsconsulting.in\/blog\/author\/abhishek\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Protect Laravel Project with IonCube: A Complete Guide - DevOps Consulting","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.devopsconsulting.in\/blog\/how-to-protect-laravel-project-with-ioncube-a-complete-guide\/","og_locale":"en_US","og_type":"article","og_title":"How to Protect Laravel Project with IonCube: A Complete Guide - DevOps Consulting","og_description":"To protect a Laravel project using IonCube, follow these comprehensive steps. IonCube is a popular tool for encoding PHP files [&hellip;]","og_url":"https:\/\/www.devopsconsulting.in\/blog\/how-to-protect-laravel-project-with-ioncube-a-complete-guide\/","og_site_name":"DevOps Consulting","article_published_time":"2024-07-02T06:35:53+00:00","article_modified_time":"2024-07-05T12:46:00+00:00","og_image":[{"url":"https:\/\/www.devopsconsulting.in\/blog\/wp-content\/uploads\/2024\/07\/OIG344.jpg","type":"","width":"","height":""}],"author":"Abhishek Singh","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Abhishek Singh","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.devopsconsulting.in\/blog\/how-to-protect-laravel-project-with-ioncube-a-complete-guide\/","url":"https:\/\/www.devopsconsulting.in\/blog\/how-to-protect-laravel-project-with-ioncube-a-complete-guide\/","name":"How to Protect Laravel Project with IonCube: A Complete Guide - DevOps Consulting","isPartOf":{"@id":"https:\/\/www.devopsconsulting.in\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.devopsconsulting.in\/blog\/how-to-protect-laravel-project-with-ioncube-a-complete-guide\/#primaryimage"},"image":{"@id":"https:\/\/www.devopsconsulting.in\/blog\/how-to-protect-laravel-project-with-ioncube-a-complete-guide\/#primaryimage"},"thumbnailUrl":"https:\/\/www.devopsconsulting.in\/blog\/wp-content\/uploads\/2024\/07\/OIG344.jpg","datePublished":"2024-07-02T06:35:53+00:00","dateModified":"2024-07-05T12:46:00+00:00","author":{"@id":"https:\/\/www.devopsconsulting.in\/blog\/#\/schema\/person\/fc397ba8be42f9fdd53450edfc73006f"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.devopsconsulting.in\/blog\/how-to-protect-laravel-project-with-ioncube-a-complete-guide\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.devopsconsulting.in\/blog\/how-to-protect-laravel-project-with-ioncube-a-complete-guide\/#primaryimage","url":"https:\/\/www.devopsconsulting.in\/blog\/wp-content\/uploads\/2024\/07\/OIG344.jpg","contentUrl":"https:\/\/www.devopsconsulting.in\/blog\/wp-content\/uploads\/2024\/07\/OIG344.jpg","width":1024,"height":1024},{"@type":"WebSite","@id":"https:\/\/www.devopsconsulting.in\/blog\/#website","url":"https:\/\/www.devopsconsulting.in\/blog\/","name":"DevOps Consulting","description":"DevOps Consulting | SRE Consulting | DevSecOps Consulting | MLOps Consulting","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.devopsconsulting.in\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.devopsconsulting.in\/blog\/#\/schema\/person\/fc397ba8be42f9fdd53450edfc73006f","name":"Abhishek Singh","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.devopsconsulting.in\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/790feefe779852cdf344ca7318bf6c13832223c9b3c6bf4d217658412041026d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/790feefe779852cdf344ca7318bf6c13832223c9b3c6bf4d217658412041026d?s=96&d=mm&r=g","caption":"Abhishek Singh"},"description":"I\u2019m Abhishek, a DevOps, SRE, DevSecOps, and Cloud expert with a passion for sharing knowledge and real-world experiences. I\u2019ve had the opportunity to work with Cotocus and continue to contribute to multiple platforms where I share insights across different domains: \u2022 DevOps School \u2013 Tech blogs and tutorials \u2022 Holiday Landmark \u2013 Travel stories and guides \u2022 Stocks Mantra \u2013 Stock market strategies and tips \u2022 My Medic Plus \u2013 Health and fitness guidance \u2022 TrueReviewNow \u2013 Honest product reviews \u2022 Wizbrand \u2013 SEO and digital tools for businesses I\u2019m also exploring the fascinating world of Quantum Computing.","url":"https:\/\/www.devopsconsulting.in\/blog\/author\/abhishek\/"}]}},"_links":{"self":[{"href":"https:\/\/www.devopsconsulting.in\/blog\/wp-json\/wp\/v2\/posts\/1063","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.devopsconsulting.in\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.devopsconsulting.in\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.devopsconsulting.in\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.devopsconsulting.in\/blog\/wp-json\/wp\/v2\/comments?post=1063"}],"version-history":[{"count":2,"href":"https:\/\/www.devopsconsulting.in\/blog\/wp-json\/wp\/v2\/posts\/1063\/revisions"}],"predecessor-version":[{"id":1079,"href":"https:\/\/www.devopsconsulting.in\/blog\/wp-json\/wp\/v2\/posts\/1063\/revisions\/1079"}],"wp:attachment":[{"href":"https:\/\/www.devopsconsulting.in\/blog\/wp-json\/wp\/v2\/media?parent=1063"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.devopsconsulting.in\/blog\/wp-json\/wp\/v2\/categories?post=1063"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.devopsconsulting.in\/blog\/wp-json\/wp\/v2\/tags?post=1063"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}