{"id":15345,"date":"2026-05-28T11:50:08","date_gmt":"2026-05-28T11:50:08","guid":{"rendered":"https:\/\/www.bodhost.com\/kb\/?p=15345"},"modified":"2026-05-28T11:50:08","modified_gmt":"2026-05-28T11:50:08","slug":"how-to-manage-nginx-with-start-stop-and-restart","status":"publish","type":"post","link":"https:\/\/www.bodhost.com\/kb\/how-to-manage-nginx-with-start-stop-and-restart\/","title":{"rendered":"How to Manage Nginx with Start, Stop, and Restart"},"content":{"rendered":"<p>Nginx is a popular web server used to host websites, reverse proxy applications, handle load balancing, and improve web performance. While managing a Linux server, administrators often need to start, stop, restart, or reload the Nginx service during configuration changes, maintenance, or troubleshooting.<\/p>\n<p>Understanding how to manage Nginx properly helps maintain server stability and minimize website downtime. This guide explains the commonly used commands to control the Nginx service on Linux systems.<\/p>\n<h3><strong>Prerequisites<\/strong><\/h3>\n<p>Before managing the Nginx service, make sure you have:<\/p>\n<ul>\n<li>A Linux server with Nginx installed<\/li>\n<li>Root or sudo privileges<\/li>\n<li>Terminal or SSH access to the server<\/li>\n<li>Basic knowledge of Linux commands<\/li>\n<\/ul>\n<p>Most modern Linux distributions use <span style=\"text-decoration: underline;\">systemd<\/span> to manage services, which means you will primarily use the <span style=\"text-decoration: underline;\">systemctl<\/span> command.<\/p>\n<h3><strong>How to Check Nginx Status<\/strong><\/h3>\n<p>Before making changes, it is useful to check whether Nginx is currently running.<\/p>\n<p>Run the following command:<\/p>\n<pre><span style=\"color: #3366ff;\">sudo systemctl status nginx<\/span><\/pre>\n<p>This command displays:<\/p>\n<ul>\n<li>Whether the service is active or inactive<\/li>\n<li>Current process information<\/li>\n<li>Recent log entries<\/li>\n<li>Service startup details<\/li>\n<\/ul>\n<p>If Nginx is running properly, you will see the status marked as <span style=\"text-decoration: underline;\">active (running)<\/span>.<\/p>\n<h3><strong>How to Start Nginx<\/strong><\/h3>\n<p>If the Nginx service is stopped, you can start it manually using:<\/p>\n<pre><span style=\"color: #3366ff;\">sudo systemctl start nginx<\/span><\/pre>\n<p>This command launches the Nginx <a href=\"https:\/\/www.bodhost.com\/kb\/types-of-web-servers\/\" target=\"_blank\" rel=\"noopener\">web server<\/a> and begins handling incoming requests.<\/p>\n<p>Starting Nginx is commonly required after:<\/p>\n<ul>\n<li>Server reboot<\/li>\n<li>Fresh installation<\/li>\n<li>Service failure<\/li>\n<li>Maintenance activities<\/li>\n<\/ul>\n<p>After starting the service, you can verify its status again to confirm that it is running correctly.<\/p>\n<h3><strong>How to Stop Nginx<\/strong><\/h3>\n<p>To completely stop the Nginx service, run:<\/p>\n<pre><span style=\"color: #3366ff;\">sudo systemctl stop nginx<\/span><\/pre>\n<p>This command displays:<\/p>\n<ul>\n<li>Whether the service is active or inactive<\/li>\n<li>Current process information<\/li>\n<li>Recent log entries<\/li>\n<li>Service startup details<\/li>\n<\/ul>\n<p>If Nginx is running properly, you will see the status marked as active (running).<\/p>\n<h3><strong>How to Restart Nginx<\/strong><\/h3>\n<p>Restarting Nginx stops and starts the service again in a single operation.<\/p>\n<p>Use the following command:<\/p>\n<pre><span style=\"color: #3366ff;\">sudo systemctl restart nginx<\/span><\/pre>\n<p>Restarting is helpful after:<\/p>\n<ul>\n<li>Editing Nginx configuration files<\/li>\n<li>Installing SSL certificates<\/li>\n<li>Updating virtual host settings<\/li>\n<li>Changing server modules<\/li>\n<\/ul>\n<p>This ensures all configuration changes are fully applied.<\/p>\n<p>However, restarting may briefly interrupt active connections because the service fully reloads.<\/p>\n<h3><strong>How to Reload Nginx Without Downtime<\/strong><\/h3>\n<p>Instead of fully restarting the service, you can reload Nginx configuration files without interrupting active connections.<\/p>\n<p>Run:<\/p>\n<pre><span style=\"color: #3366ff;\">sudo systemctl reload nginx<\/span><\/pre>\n<p>Reloading is often preferred because:<\/p>\n<ul>\n<li>Active user connections remain uninterrupted<\/li>\n<li>Configuration changes apply immediately<\/li>\n<li>Website downtime is minimized<\/li>\n<\/ul>\n<p>This method is ideal for production environments where availability is important.<\/p>\n<h3><strong>How to Enable Nginx at Boot<\/strong><\/h3>\n<p>To automatically start Nginx whenever the server reboots, use:<\/p>\n<pre><span style=\"color: #3366ff;\">sudo systemctl enable nginx<\/span><\/pre>\n<p>This command adds Nginx to the system startup process.<\/p>\n<p>Automatic startup ensures that websites and applications become available immediately after a server reboot, without manual intervention.<\/p>\n<h3><strong>How to Disable Nginx at Boot<\/strong><\/h3>\n<p>If you do not want Nginx to start automatically during system boot, run:<\/p>\n<pre><span style=\"color: #3366ff;\">sudo systemctl disable nginx<\/span><\/pre>\n<p>This removes Nginx from automatic startup services while still allowing manual control when needed.<\/p>\n<h3><strong>Testing Nginx Configuration<\/strong><\/h3>\n<p>Before restarting or reloading Nginx, it is always recommended to test the configuration files for errors.<\/p>\n<p>Use the following command:<\/p>\n<pre><span style=\"color: #3366ff;\">sudo nginx -t<\/span><\/pre>\n<p>If the configuration is valid, you will see a successful syntax message.<\/p>\n<p>Testing configurations before applying changes helps prevent service failures caused by incorrect settings.<\/p>\n<h3><strong>Common Nginx Management Commands<\/strong><\/h3>\n<table>\n<thead>\n<tr>\n<th><span style=\"color: #000000;\">Action<\/span><\/th>\n<th><span style=\"color: #000000;\">Command<\/span><\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>Check status<\/td>\n<td><code>sudo systemctl status nginx<\/code><\/td>\n<\/tr>\n<tr>\n<td>Start Nginx<\/td>\n<td><code>sudo systemctl start nginx<\/code><\/td>\n<\/tr>\n<tr>\n<td>Stop Nginx<\/td>\n<td><code>sudo systemctl stop nginx<\/code><\/td>\n<\/tr>\n<tr>\n<td>Restart Nginx<\/td>\n<td><code>sudo systemctl restart nginx<\/code><\/td>\n<\/tr>\n<tr>\n<td>Reload Nginx<\/td>\n<td><code>sudo systemctl reload nginx<\/code><\/td>\n<\/tr>\n<tr>\n<td>Enable at boot<\/td>\n<td><code>sudo systemctl enable nginx<\/code><\/td>\n<\/tr>\n<tr>\n<td>Disable at boot<\/td>\n<td><code>sudo systemctl disable nginx<\/code><\/td>\n<\/tr>\n<tr>\n<td>Test configuration<\/td>\n<td><code>sudo nginx -t<\/code><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h4><strong>Conclusion<\/strong><\/h4>\n<p>Managing Nginx with start, stop, restart, and reload commands is an essential part of Linux server administration. These commands help you maintain website availability, apply configuration updates, and troubleshoot server-related issues efficiently.<\/p>\n<p>By understanding how each command works, you can manage your Nginx web server more confidently while minimizing downtime and improving server reliability.<\/p>\n<p>Secure your website easily with <a href=\"https:\/\/www.bodhost.com\/kb\/how-to-install-an-ssl-certificate-on-nginx\/\" target=\"_blank\" rel=\"noopener\"><em>How to Install an SSL Certificate on NGINX<\/em><\/a> for safer, encrypted connections.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Nginx is a popular web server used to host websites, reverse proxy applications, handle load balancing, and improve web performance. While managing a Linux server, administrators often need to start,&hellip;<\/p>\n<p><a href=\"https:\/\/www.bodhost.com\/kb\/how-to-manage-nginx-with-start-stop-and-restart\/\" class=\"more-link\">Read More<\/a><\/p>\n","protected":false},"author":5,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[837],"tags":[1721,1719,1720],"class_list":["post-15345","post","type-post","status-publish","format-standard","hentry","category-tutorial","tag-and-restart-commands","tag-nginx-with-start","tag-stop"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Control Nginx with Start, Stop, and Restart Commands<\/title>\n<meta name=\"description\" content=\"Learn how to control Nginx using start, stop, restart, reload, and status commands on Linux servers efficiently and securely.\" \/>\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.bodhost.com\/kb\/how-to-manage-nginx-with-start-stop-and-restart\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Control Nginx with Start, Stop, and Restart Commands\" \/>\n<meta property=\"og:description\" content=\"Learn how to control Nginx using start, stop, restart, reload, and status commands on Linux servers efficiently and securely.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.bodhost.com\/kb\/how-to-manage-nginx-with-start-stop-and-restart\/\" \/>\n<meta property=\"og:site_name\" content=\"Knowledge Base - bodHOST\" \/>\n<meta property=\"article:published_time\" content=\"2026-05-28T11:50:08+00:00\" \/>\n<meta name=\"author\" content=\"Paul Lopez\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Paul Lopez\" \/>\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.bodhost.com\\\/kb\\\/how-to-manage-nginx-with-start-stop-and-restart\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/how-to-manage-nginx-with-start-stop-and-restart\\\/\"},\"author\":{\"name\":\"Paul Lopez\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#\\\/schema\\\/person\\\/566ccff9a2fae4af852be8097b179813\"},\"headline\":\"How to Manage Nginx with Start, Stop, and Restart\",\"datePublished\":\"2026-05-28T11:50:08+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/how-to-manage-nginx-with-start-stop-and-restart\\\/\"},\"wordCount\":617,\"publisher\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#organization\"},\"keywords\":[\"and Restart Commands\",\"Nginx with Start\",\"Stop\"],\"articleSection\":[\"Tutorial\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/how-to-manage-nginx-with-start-stop-and-restart\\\/\",\"url\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/how-to-manage-nginx-with-start-stop-and-restart\\\/\",\"name\":\"How to Control Nginx with Start, Stop, and Restart Commands\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#website\"},\"datePublished\":\"2026-05-28T11:50:08+00:00\",\"description\":\"Learn how to control Nginx using start, stop, restart, reload, and status commands on Linux servers efficiently and securely.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/how-to-manage-nginx-with-start-stop-and-restart\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/how-to-manage-nginx-with-start-stop-and-restart\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/how-to-manage-nginx-with-start-stop-and-restart\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Tutorial\",\"item\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/category\\\/tutorial\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Manage Nginx with Start, Stop, and Restart\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#website\",\"url\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/\",\"name\":\"Web Hosting Knowledge Base | bodHOST Hosting FAQ\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#organization\"},\"alternateName\":\"Web Hosting Knowledge Base | bodHOST Hosting FAQ\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#organization\",\"name\":\"Web Hosting Knowledge Base | bodHOST Hosting FAQ\",\"url\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/wp-content\\\/uploads\\\/2025\\\/10\\\/Profile-Pic.png\",\"contentUrl\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/wp-content\\\/uploads\\\/2025\\\/10\\\/Profile-Pic.png\",\"width\":240,\"height\":240,\"caption\":\"Web Hosting Knowledge Base | bodHOST Hosting FAQ\"},\"image\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#\\\/schema\\\/person\\\/566ccff9a2fae4af852be8097b179813\",\"name\":\"Paul Lopez\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c63d9f5400cd5ef87b481a24b2c1a4fb89f1674b6391325326cf13f1e735dff8?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c63d9f5400cd5ef87b481a24b2c1a4fb89f1674b6391325326cf13f1e735dff8?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c63d9f5400cd5ef87b481a24b2c1a4fb89f1674b6391325326cf13f1e735dff8?s=96&d=mm&r=g\",\"caption\":\"Paul Lopez\"},\"url\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/author\\\/paullopez\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Control Nginx with Start, Stop, and Restart Commands","description":"Learn how to control Nginx using start, stop, restart, reload, and status commands on Linux servers efficiently and securely.","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.bodhost.com\/kb\/how-to-manage-nginx-with-start-stop-and-restart\/","og_locale":"en_US","og_type":"article","og_title":"How to Control Nginx with Start, Stop, and Restart Commands","og_description":"Learn how to control Nginx using start, stop, restart, reload, and status commands on Linux servers efficiently and securely.","og_url":"https:\/\/www.bodhost.com\/kb\/how-to-manage-nginx-with-start-stop-and-restart\/","og_site_name":"Knowledge Base - bodHOST","article_published_time":"2026-05-28T11:50:08+00:00","author":"Paul Lopez","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Paul Lopez","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.bodhost.com\/kb\/how-to-manage-nginx-with-start-stop-and-restart\/#article","isPartOf":{"@id":"https:\/\/www.bodhost.com\/kb\/how-to-manage-nginx-with-start-stop-and-restart\/"},"author":{"name":"Paul Lopez","@id":"https:\/\/www.bodhost.com\/kb\/#\/schema\/person\/566ccff9a2fae4af852be8097b179813"},"headline":"How to Manage Nginx with Start, Stop, and Restart","datePublished":"2026-05-28T11:50:08+00:00","mainEntityOfPage":{"@id":"https:\/\/www.bodhost.com\/kb\/how-to-manage-nginx-with-start-stop-and-restart\/"},"wordCount":617,"publisher":{"@id":"https:\/\/www.bodhost.com\/kb\/#organization"},"keywords":["and Restart Commands","Nginx with Start","Stop"],"articleSection":["Tutorial"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.bodhost.com\/kb\/how-to-manage-nginx-with-start-stop-and-restart\/","url":"https:\/\/www.bodhost.com\/kb\/how-to-manage-nginx-with-start-stop-and-restart\/","name":"How to Control Nginx with Start, Stop, and Restart Commands","isPartOf":{"@id":"https:\/\/www.bodhost.com\/kb\/#website"},"datePublished":"2026-05-28T11:50:08+00:00","description":"Learn how to control Nginx using start, stop, restart, reload, and status commands on Linux servers efficiently and securely.","breadcrumb":{"@id":"https:\/\/www.bodhost.com\/kb\/how-to-manage-nginx-with-start-stop-and-restart\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.bodhost.com\/kb\/how-to-manage-nginx-with-start-stop-and-restart\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.bodhost.com\/kb\/how-to-manage-nginx-with-start-stop-and-restart\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Tutorial","item":"https:\/\/www.bodhost.com\/kb\/category\/tutorial\/"},{"@type":"ListItem","position":2,"name":"How to Manage Nginx with Start, Stop, and Restart"}]},{"@type":"WebSite","@id":"https:\/\/www.bodhost.com\/kb\/#website","url":"https:\/\/www.bodhost.com\/kb\/","name":"Web Hosting Knowledge Base | bodHOST Hosting FAQ","description":"","publisher":{"@id":"https:\/\/www.bodhost.com\/kb\/#organization"},"alternateName":"Web Hosting Knowledge Base | bodHOST Hosting FAQ","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.bodhost.com\/kb\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.bodhost.com\/kb\/#organization","name":"Web Hosting Knowledge Base | bodHOST Hosting FAQ","url":"https:\/\/www.bodhost.com\/kb\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.bodhost.com\/kb\/#\/schema\/logo\/image\/","url":"https:\/\/www.bodhost.com\/kb\/wp-content\/uploads\/2025\/10\/Profile-Pic.png","contentUrl":"https:\/\/www.bodhost.com\/kb\/wp-content\/uploads\/2025\/10\/Profile-Pic.png","width":240,"height":240,"caption":"Web Hosting Knowledge Base | bodHOST Hosting FAQ"},"image":{"@id":"https:\/\/www.bodhost.com\/kb\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.bodhost.com\/kb\/#\/schema\/person\/566ccff9a2fae4af852be8097b179813","name":"Paul Lopez","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/c63d9f5400cd5ef87b481a24b2c1a4fb89f1674b6391325326cf13f1e735dff8?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/c63d9f5400cd5ef87b481a24b2c1a4fb89f1674b6391325326cf13f1e735dff8?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c63d9f5400cd5ef87b481a24b2c1a4fb89f1674b6391325326cf13f1e735dff8?s=96&d=mm&r=g","caption":"Paul Lopez"},"url":"https:\/\/www.bodhost.com\/kb\/author\/paullopez\/"}]}},"_links":{"self":[{"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/posts\/15345","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/comments?post=15345"}],"version-history":[{"count":5,"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/posts\/15345\/revisions"}],"predecessor-version":[{"id":15350,"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/posts\/15345\/revisions\/15350"}],"wp:attachment":[{"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/media?parent=15345"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/categories?post=15345"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/tags?post=15345"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}