{"id":56081,"date":"2024-06-12T11:18:59","date_gmt":"2024-06-12T11:18:59","guid":{"rendered":"https:\/\/dev.outrightcrm.in\/dev\/store\/?p=56081"},"modified":"2025-04-17T07:07:49","modified_gmt":"2025-04-17T07:07:49","slug":"want-to-uninstall-nginx-server-and-enable-apache","status":"publish","type":"post","link":"https:\/\/dev.outrightcrm.in\/dev\/store\/blog\/want-to-uninstall-nginx-server-and-enable-apache\/","title":{"rendered":"Want to Uninstall the NGINX Server and Enable Apache? Here&#8217;s how"},"content":{"rendered":"\n<p>As you all know the NGINX and Apache servers, both use port 80 to access the root &amp; to enhance security by preventing unauthorized services on critical points. Due to this, the entire files and database were mixed in between NGINX and Apache servers so I made up my mind to take a clear cut from the NGINX server by uninstalling it.<\/p>\n\n\n\n<BR\/>\n\n\n\n<p>Therefore, in this blog post, we will walk you through the complete guide on uninstalling NGINX Server.&nbsp; Here\u2019s you go!<\/p>\n\n\n\n<br>\n\n\n\n<h2 class=\"wp-block-heading\">Pre-Requisites to Uninstall NGINX Server<\/h2>\n\n\n\n<br>\n\n\n\n<p>Before having a direct dive into the uninstalling procedure of the NGINX Server here we have to figure out all the prerequisites list. So, prior to jumping on the uninstalling concept let\u2019s get to know what all you need to have:-<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Linux Terminal&nbsp;<\/li>\n\n\n\n<li>Ubuntu Server<\/li>\n<\/ul>\n\n\n\n<br>\n\n\n\n<h2 class=\"wp-block-heading\">A Stepwise Guide on Uninstalling NGINX Server and Enable Apache | Let\u2019s Reveal<\/h2>\n\n\n\n<br>\n\n\n\n<p>Preliminary to move towards uninstalling the NGINX Server, you must have to take up a backup of your website\u2019s files to be safe for the forthcoming period.&nbsp;<\/p>\n\n\n\n<BR\/>\n\n\n\n<p>Once, you have taken the backup of your essential data then execute the following steps to Uninstall NGINX Server without any stumbling blocks \u2014<\/p>\n\n\n\n<br>\n\n\n\n<p class=\"has-very-light-gray-to-cyan-bluish-gray-gradient-background has-background\"><strong>Read Also:<\/strong> <strong><a href=\"https:\/\/www.outrightcrm.com\/blog\/tcp-ip-netbios-helper-on-or-off\/\" target=\"_blank\" rel=\"noreferrer noopener\">TCP\/IP NetBIOS Helper On or Off | What\u2019s the Impact on Network Performance?<\/a><\/strong><\/p>\n\n\n\n<br\/>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1: Terminate Your NGINX Services<\/h3>\n\n\n\n<br\/>\n\n\n\n<p>Before proceeding with the NGINX uninstalling procedure, you have to stop the services of your NGINX Server to ensure it\u2019s not running.&nbsp;<\/p>\n\n\n\n<br\/>\n\n\n\n<p>To do this, you have to open up the Terminal window first and Stop the NGINX service by running the command:-&nbsp;<\/p>\n\n\n\n<br>\n\n\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background\"><code>sudo systemctl stop nginx<\/code><\/pre>\n\n\n\n<br>\n\n\n\n<h3 class=\"wp-block-heading\">Step 2: Deactivate the NGINX Services<\/h3>\n\n\n\n<br>\n\n\n\n<p>Next to stopping the NGINX services, you have to deactivate them as well. To prevent your NGINX services from starting automatically at their boot time, run the below command:-<\/p>\n\n\n\n<br>\n\n\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background\"><code>sudo systemctl disable nginx<\/code><\/pre>\n\n\n\n<br>\n\n\n\n<h3 class=\"wp-block-heading\">Step 3: Uninstall Your NGINX Server<\/h3>\n\n\n\n<br>\n\n\n\n<p>To uninstall your NGINX package from your system, you need to follow the below-mentioned command:-<\/p>\n\n\n\n<br>\n\n\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background\"><code>sudo apt-get remove nginx nginx-common nginx-core<\/code><\/pre>\n\n\n\n<br>\n\n\n\n<h3 class=\"wp-block-heading\">Step 4: Remove Your Entire Configuring Files<\/h3>\n\n\n\n<br>\n\n\n\n<p>Here, you have to use this command to remove any leftover configuration files and directories:-<\/p>\n\n\n\n<br>\n\n\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background\"><code>sudo apt-get purge nginx nginx-common nginx-core<\/code><\/pre>\n\n\n\n<br>\n\n\n\n<h3 class=\"wp-block-heading\">Step 5: Clean-Up Remaining Dependencies<\/h3>\n\n\n\n<br>\n\n\n\n<p>To Clean up any remaining dependencies and cached packages, follow the below command:-<\/p>\n\n\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background\"><code>sudo apt-get autoremove\n\nsudo apt-get autoclean<\/code><\/pre>\n\n\n\n<br>\n\n\n\n<h3 class=\"wp-block-heading\">Step 6: Verify Your Removal&nbsp;<\/h3>\n\n\n\n<br>\n\n\n\n<p>To check out the status of your NGINX Server removal or to confirm it is no longer installed in your system, follow the below command:-&nbsp;<\/p>\n\n\n\n<br>\n\n\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background\"><code>nginx -v<\/code><\/pre>\n\n\n\n<br>\n\n\n\n<p>This command will return a &#8220;command not found&#8221; message if NGINX has been successfully uninstalled. So, be sure whether it has been uninstalled or not.&nbsp;<\/p>\n\n\n\n<br>\n\n\n\n<h3 class=\"wp-block-heading\">Step 7: Remove User Data (Optional)&nbsp;<\/h3>\n\n\n\n<br>\n\n\n\n<p>If you want to remove the user data or log the related NGINX files then you can delete those directories manually using the below command:-<\/p>\n\n\n\n<br>\n\n\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background\"><code>sudo rm -rf \/etc\/nginx\n\nsudo rm -rf \/var\/log\/nginx\n\nsudo rm -rf \/var\/www\/html<\/code><\/pre>\n\n\n\n<br>\n\n\n\n<p>Once, you have uninstalled your NGINX Server completely and successfully then you may be required to switch on another one to work fluently in the near future. Therefore, we will let you know how you can enable Apache Server after uninstalling the NGINX one.&nbsp;<\/p>\n\n\n\n<br>\n\n\n\n<h2 class=\"wp-block-heading\">Need to Re-install the NGINX Server? | Let\u2019s Do it<\/h2>\n\n\n\n<br>\n\n\n\n<p>If you have uninstalled the NGINX Server and later you have realized that you are now in need to use it again so here we have revealed a way to re-install the NGINX Server.&nbsp;&nbsp;&nbsp;&nbsp;<\/p>\n\n\n\n<p>Here\u2019s You Go!<\/p>\n\n\n\n<br>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1: Update the Package List<\/h3>\n\n\n\n<br>\n\n\n\n<p>Before you move toward installing any package, it\u2019s a good practice to update the package list to ensure that you have the latest information on the available packages.<\/p>\n\n\n\n<br>\n\n\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background\"><code>sudo apt update<\/code><\/pre>\n\n\n\n<br>\n\n\n\n<h3 class=\"wp-block-heading\">Step 2: Install NGINX<\/h3>\n\n\n\n<br>\n\n\n\n<p>Next, the step is to install the NGINX server so use the following command:-<\/p>\n\n\n\n<br>\n\n\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background\"><code>sudo apt install nginx<\/code><\/pre>\n\n\n\n<br>\n\n\n\n<h3 class=\"wp-block-heading\">Step 3: Start NGINX Service<\/h3>\n\n\n\n<br>\n\n\n\n<p>Once you&nbsp; have installed the NGINX Server then you have to start it\u2019s service using the below command:-<\/p>\n\n\n\n<br>\n\n\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background\"><code>sudo systemctl start nginx<\/code><\/pre>\n\n\n\n<br>\n\n\n\n<h3 class=\"wp-block-heading\">Step 4: Enable NGINX to Start on the Boot<\/h3>\n\n\n\n<br>\n\n\n\n<p>To ensure NGINX starts automatically when the system boots you have to enable it by using the&nbsp; further down command:-<\/p>\n\n\n\n<br>\n\n\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background\"><code>sudo systemctl enable nginx<\/code><\/pre>\n\n\n\n<br>\n\n\n\n<h3 class=\"wp-block-heading\">Step 5: Verify NGINX Installation<\/h3>\n\n\n\n<br>\n\n\n\n<p>Here, you have to confirm that NGINX has been installed and is running as well along with checking its status with the mentioned command:-<\/p>\n\n\n\n<br>\n\n\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background\"><code>sudo systemctl status nginx<\/code><\/pre>\n\n\n\n<br>\n\n\n\n<p>You can also confirm it by opening a web browser &amp; navigating to your server\u2019s IP address and getting the default NGINX welcome page there.<\/p>\n\n\n\n<br>\n\n\n\n<h3 class=\"wp-block-heading\">Step 6: Configure Firewall (Optional)<\/h3>\n\n\n\n<br>\n\n\n\n<p>If you have a firewall running on your system then, you may need to allow the HTTP and HTTPS traffic using the following commands:-<\/p>\n\n\n\n<p><\/p>\n\n\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background\"><code>sudo ufw allow 'Nginx HTTP'\n\nsudo ufw allow 'Nginx HTTPS'<\/code><\/pre>\n\n\n\n\n\n<h3 class=\"wp-block-heading\">Step 7: Basic Configuration (Optional)<\/h3>\n\n\n\n<br>\n\n\n\n<p>As you can see this one is a basic step to make some primary configurations to your NGINX setup. So, use the main configuration file which is located at <strong>\/etc\/nginx\/nginx.conf<\/strong><\/p>\n\n\n\n<br>\n\n\n\n<p>You, need to open it up by using your preferred text editor, for example:<\/p>\n\n\n\n<br>\n\n\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background\"><code>sudo nano \/etc\/nginx\/nginx.conf<\/code><\/pre>\n\n\n\n<br>\n\n\n\n<p>Once, you have made the changes, then you have to restart the NGINX server by applying the below-mentioned command:-<\/p>\n\n\n\n<br>\n\n\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background\"><code>sudo systemctl restart nginx<\/code><\/pre>\n\n\n\n<br>\n\n\n\n<h3 class=\"wp-block-heading\">Step 8: Test NGINX Configuration<\/h3>\n\n\n\n<br>\n\n\n\n<p>Before proceeding with NGINX restarting and after completing the essential changes in the configuration, it\u2019s a good idea to test the configuration file for syntax errors. For this, use the right below command:-<\/p>\n\n\n\n<br>\n\n\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background\"><code>sudo nginx -t<\/code><\/pre>\n\n\n\n<br>\n\n\n\n<h3 class=\"wp-block-heading\">Step 9: Restart NGINX<\/h3>\n\n\n\n<br>\n\n\n\n<p>Finally, here you can restart your NGINX Server to apply any new configurations using the further down command:-<\/p>\n\n\n\n<br>\n\n\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background\"><code>sudo systemctl restart nginx<\/code><\/pre>\n\n\n\n<br>\n\n\n\n<p>Using the mentioned path, you can re-install your NGINX server successfully and have more experience with NGINX services.&nbsp;<\/p>\n\n\n\n<br>\n\n\n\n<h2 class=\"wp-block-heading\">Authorize Apache Server | Enable Apache One After Removing the NGINX Server&nbsp;<\/h2>\n\n\n\n<br>\n\n\n\n<p>Let\u2019s proceed with the following steps to enable the Apache Server on your system \u2014-<\/p>\n\n\n\n<br>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1: Install Apache Server<\/h3>\n\n\n\n<br>\n\n\n\n<p>To Enable or install the Apache Server, first you need to update the package list for which you have to follow the below <strong>command<\/strong> :-<\/p>\n\n\n\n<p><\/p>\n\n\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background\"><code>sudo apt-get update<\/code><\/pre>\n\n\n\n<p><\/p>\n\n\n\n<br>\n\n\n\n<p>Once you have updated the package, you have to install the Apache server for you have to run the below command:-<\/p>\n\n\n\n<br>\n\n\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background\"><code>sudo apt-get install apache2<\/code><\/pre>\n\n\n\n<br>\n\n\n\n<h3 class=\"wp-block-heading\">Step 2: Enable and Start Apache Service<\/h3>\n\n\n\n<br>\n\n\n\n<p>As you have enabled the services of the Apache Server then you need to start them by following the below command:-<\/p>\n\n\n\n<br>\n\n\n\n<p><br><\/p>\n\n\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background\"><code>sudo systemctl enable apache2<\/code><\/pre>\n\n\n\n<br>\n\n\n\n<p>As you have enabled the services of the Apache Server then you need to start tehem by flowing the below command:-<\/p>\n\n\n\n<br>\n\n\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background\"><code>sudo systemctl start apache2<\/code><\/pre>\n\n\n\n<p><\/p>\n\n\n\n<br>\n\n\n\n<h3 class=\"wp-block-heading\">Step 3: Verify Apache Installation<\/h3>\n\n\n\n<br>\n\n\n\n<p>To verify the Apache Server Installation, first, you have to check the status of the Apache Server using the below command:-<\/p>\n\n\n\n<br>\n\n\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background\"><code>sudo systemctl status apache2<\/code><\/pre>\n\n\n\n<br>\n\n\n\n<p>Here, you have to be sure that the output of the Apache Server indicates its active (running) Status.<\/p>\n\n\n\n<p>Once you have checked the status and confirmed it\u2019s running successfully then you need to test it once. To do this, you have to open up a web browser and go to http:\/\/localhost or http:\/\/your_server_ip.<\/p>\n\n\n\n<p>Make sure that you see the default Apache welcome page on the site.<\/p>\n\n\n\n<br>\n\n\n\n<h3 class=\"wp-block-heading\">Step 4: Configure Firewall (If applicable)<\/h3>\n\n\n\n<br>\n\n\n\n<p>If it is possible for you then you should allow your Apache Server flow through the Firewall using the mentioned command:-<\/p>\n\n\n\n<br>\n\n\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background\"><code>sudo ufw allow 'apache'<\/code><\/pre>\n\n\n\n<p><br><\/p>\n\n\n\n<br>\n\n\n\n<p>In case, there isn\u2019t any Firewall ability in your system, then this command to proceed in your Apache Installing configuration:-<\/p>\n\n\n\n<br>\n\n\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background\"><code>sudo ufw enable<\/code><\/pre>\n\n\n\n<br>\n\n\n\n<h3 class=\"wp-block-heading\">Step 5: Optional &#8211; Additional Apache Configuration<\/h3>\n\n\n\n<br>\n\n\n\n<p>Typically this one is an optional step in installing the Apache Server but following it, you can get more security and flexibility in your project running procedure. So, here you have to edit the Apache configuration files using the following command:-<\/p>\n\n\n\n<p><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Main configuration file:&nbsp;<\/li>\n<\/ul>\n\n\n\n<br>\n\n\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background\"><code>\/etc\/apache2\/apache2.conf<\/code><\/pre>\n\n\n\n<br>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Virtual Hosts configuration:&nbsp;<\/li>\n<\/ul>\n\n\n\n<br>\n\n\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background\"><code>\/etc\/apache2\/sites-available\/000-default.conf<\/code><\/pre>\n\n\n\n<br>\n\n\n\n<p><strong>Once, you have completed the additional configuration process then you need to restart it to Apply Changes. For this use this command:-<\/strong><\/p>\n\n\n\n<br>\n\n\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background\"><code>sudo systemctl restart apache2<\/code><\/pre>\n\n\n\n<br>\n\n\n\n<h3 class=\"wp-block-heading\">Step 6: Finally, Confirm Apache is Running<\/h3>\n\n\n\n<br>\n\n\n\n<p>This is the final step of Apache installation where you need to make sure that your Apache Server is running perfectly without any difficulty. For this, use the following command:-<\/p>\n\n\n\n<br>\n\n\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background\"><code>sudo systemctl status apache2<\/code><\/pre>\n\n\n\n\n\n<p><\/p>\n\n\n\n<p>Additionally, make sure that your Apache Server is showing the active and running status.<\/p>\n\n\n\n<br>\n\n\n\n<h2 class=\"wp-block-heading\">Let\u2019s Sum Up!<\/h2>\n\n\n\n<br>\n\n\n\n<p>In this blog post, you will get complete and stepwise guidance uninstalling the NGINX server, re-install NGINX, and enabling the Apache Server from rise to finale. In addition to this, you will get guidance on prerequisites for uninstalling the NGINX Server. Irrespective of whether you are handling <strong><a href=\"https:\/\/dev.outrightcrm.in\/dev\/store\/blog\/web-server-vs-application-server\/\" target=\"_blank\" rel=\"noreferrer noopener\">web server and application server<\/a><\/strong> components or just switching between distinct web server technologies like Apache and NGINX, having knowledge of correct configuration procedures and installation is crucial. Right knowledge helps users ensure an efficient and secure system.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><strong>Related Post<\/strong><\/p>\n\n\n\n<p><a href=\"https:\/\/dev.outrightcrm.in\/dev\/store\/blog\/install-php8-3-mysql-8-0-ubuntu-22-04-microsoft-azure-nginx-server\/\" target=\"_blank\" rel=\"noreferrer noopener\">How to Install PHP 8.3 and MySQL 8.0 on Ubuntu 22.04 in Microsoft Azure using NGINX\/Apache Server?<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>As you all know the NGINX and Apache servers, both use port 80 to access the root &amp; to enhance [&hellip;]<\/p>\n","protected":false},"author":17769,"featured_media":56086,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[62],"tags":[],"class_list":["post-56081","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-technology"],"acf":[],"_links":{"self":[{"href":"https:\/\/dev.outrightcrm.in\/dev\/store\/wp-json\/wp\/v2\/posts\/56081","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/dev.outrightcrm.in\/dev\/store\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/dev.outrightcrm.in\/dev\/store\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/dev.outrightcrm.in\/dev\/store\/wp-json\/wp\/v2\/users\/17769"}],"replies":[{"embeddable":true,"href":"https:\/\/dev.outrightcrm.in\/dev\/store\/wp-json\/wp\/v2\/comments?post=56081"}],"version-history":[{"count":3,"href":"https:\/\/dev.outrightcrm.in\/dev\/store\/wp-json\/wp\/v2\/posts\/56081\/revisions"}],"predecessor-version":[{"id":61726,"href":"https:\/\/dev.outrightcrm.in\/dev\/store\/wp-json\/wp\/v2\/posts\/56081\/revisions\/61726"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/dev.outrightcrm.in\/dev\/store\/wp-json\/wp\/v2\/media\/56086"}],"wp:attachment":[{"href":"https:\/\/dev.outrightcrm.in\/dev\/store\/wp-json\/wp\/v2\/media?parent=56081"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/dev.outrightcrm.in\/dev\/store\/wp-json\/wp\/v2\/categories?post=56081"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/dev.outrightcrm.in\/dev\/store\/wp-json\/wp\/v2\/tags?post=56081"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}