{"id":2873,"date":"2020-03-10T20:34:43","date_gmt":"2020-03-10T15:04:43","guid":{"rendered":"https:\/\/www.24x7serversupport.com\/blog\/?p=2873"},"modified":"2020-03-10T20:38:56","modified_gmt":"2020-03-10T15:08:56","slug":"how-to-enable-disable-gzip-compression-in-nginx-on-a-plesk-server","status":"publish","type":"post","link":"https:\/\/www.24x7serversupport.com\/blog\/how-to-enable-disable-gzip-compression-in-nginx-on-a-plesk-server\/","title":{"rendered":"How to enable\/disable gzip compression in nginx on a Plesk server?"},"content":{"rendered":"\n<h3 class=\"wp-block-heading\"><strong>Enabling gzip compression for a domain in Plesk<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\"><li>In Plesk, go to\u00a0<strong>Domains<\/strong>\u00a0>\u00a0<strong>example.com<\/strong>\u00a0>\u00a0<strong>Apache &amp; nginx Settings<\/strong>.<\/li><\/ul>\n\n\n\n<ul class=\"wp-block-list\"><li>Add the following directives to the\u00a0<strong>Additional nginx directives<\/strong>\u00a0field:<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-preformatted\">gzip on; \ngzip_disable \"MSIE [1-6]\\\\.(?!.*SV1)\";\ngzip_proxied any;\ngzip_comp_level 5;\ngzip_types text\/plain text\/css application\/javascript application\/x-javascript text\/xml application\/xml application\/rss+xml text\/javascript image\/x-icon image\/bmp image\/svg+xml;\ngzip_vary on;<\/pre>\n\n\n\n<p><strong>Note:<\/strong>\u00a0This is an example. If needed, add other file types in the\u00a0<code>gzip_types<\/code>\u00a0section, e.g.\u00a0<code>application\/javascript<\/code>,\u00a0<code>application\/js<\/code>, etc. The full list of available types can be found on a server in the file\u00a0<code>\/etc\/nginx\/mime.types<\/code>.<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Click\u00a0<strong>Apply<\/strong>\u00a0to save the changes.<\/li><\/ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Disabling gzip compression for a domain in Plesk<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\"><li>In Plesk, go to\u00a0<strong>Domains<\/strong>\u00a0>\u00a0<strong>example.com<\/strong>\u00a0>\u00a0<strong>Apache &amp; nginx Settings<\/strong>.<\/li><\/ul>\n\n\n\n<p><strong>Note:<\/strong>\u00a0To disable gzip compression for a domain\/subdomain that does not exist in Plesk (e.g. hostname), create it first.  <\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Add the following directive to the\u00a0<strong>Additional nginx directives<\/strong>\u00a0field: <\/li><\/ul>\n\n\n\n<pre class=\"wp-block-preformatted\"> gzip off; <\/pre>\n\n\n\n<ul class=\"wp-block-list\"><li> Click\u00a0<strong>Apply<\/strong>\u00a0to save the changes. <\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>For all domains via nginx global configuration<\/strong><\/h2>\n\n\n\n<p><strong>Note:<\/strong>\u00a0All the commands in sections below should be executed as &#8216;<code>root<\/code>&#8216; user or using &#8216;<code>sudo<\/code>&#8216;<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Enabling gzip compression server-wide<\/strong><\/h4>\n\n\n\n<ul class=\"wp-block-list\"><li> Connect to a server via\u00a0SSH. <\/li><\/ul>\n\n\n\n<ul class=\"wp-block-list\"><li> Create the\u00a0<code>gzip.conf<\/code>\u00a0file inside nginx conf.d directory: <\/li><\/ul>\n\n\n\n<pre class=\"wp-block-preformatted\"> # touch \/etc\/nginx\/conf.d\/gzip.conf <\/pre>\n\n\n\n<ul class=\"wp-block-list\"><li> Open the file in any text editor. <\/li><\/ul>\n\n\n\n<pre class=\"wp-block-preformatted\">#  vi \/etc\/nginx\/conf.d\/gzip.conf <\/pre>\n\n\n\n<ul class=\"wp-block-list\"><li> Insert the following content in it: <\/li><\/ul>\n\n\n\n<pre class=\"wp-block-preformatted\">gzip on;<br>gzip_disable \"MSIE [1-6]\\\\.(?!.*SV1)\";<br>gzip_proxied any;<br>gzip_comp_level 5;<br>gzip_types text\/plain text\/css application\/javascript application\/x-javascript text\/xml application\/xml application\/rss+xml text\/javascript image\/x-icon image\/bmp image\/svg+xml;<br>gzip_vary on; <\/pre>\n\n\n\n<p><strong>Note:<\/strong>\u00a0This is an example. If needed, add other file types in the\u00a0<code>gzip_types<\/code>\u00a0section, e.g.\u00a0<code>application\/javascript<\/code>,\u00a0<code>application\/js<\/code>, etc. The full list of available types can be found on a server in the file\u00a0<code>\/etc\/nginx\/mime.types<\/code>. <\/p>\n\n\n\n<ul class=\"wp-block-list\"><li> Test nginx configuration: <\/li><\/ul>\n\n\n\n<pre class=\"wp-block-preformatted\">#  nginx -t <\/pre>\n\n\n\n<ul class=\"wp-block-list\"><li> Reload\u00a0<code>nginx<\/code>\u00a0configuration to apply the changes: <\/li><\/ul>\n\n\n\n<pre class=\"wp-block-preformatted\"># service nginx reload <\/pre>\n\n\n\n<p>Now gzip compression is enabled for all domains on the server.<\/p>\n\n\n\n<p>To verify that gzip compression is enabled, use the command below. When gzip is enabled you will see &#8216;Content-Encoding: gzip&#8217; in the output:<\/p>\n\n\n\n<p><strong>Note:<\/strong>\u00a0If the website has a www redirection, change the website name to\u00a0<em>www.example.com<\/em>.<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li> If the website is using HTTP connection: <\/li><\/ul>\n\n\n\n<pre class=\"wp-block-preformatted\"># curl -s -H \"Accept-Encoding: gzip\" -I http:\/\/example.com | grep -i Content-Encoding\nContent-Encoding: gzip<\/pre>\n\n\n\n<ul class=\"wp-block-list\"><li> If the website is using HTTPS connection: <\/li><\/ul>\n\n\n\n<pre class=\"wp-block-preformatted\"># curl -s -H \"Accept-Encoding: gzip\" -I https:\/\/example.com --insecure | grep -i Content-Encoding<br>Content-Encoding: gzip <\/pre>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Disabling gzip compression server-wide<\/strong><\/h4>\n\n\n\n<ul class=\"wp-block-list\"><li>Connect to a server via\u00a0SSH. <\/li><\/ul>\n\n\n\n<ul class=\"wp-block-list\"><li> Search for the line in &#8220;gzip on&#8221; via all nginx config files:<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-preformatted\">#  grep -Ri \"gzip on\" \/etc\/nginx\/ <\/pre>\n\n\n\n<ul class=\"wp-block-list\"><li>To disable gzip compression, open the corresponding file in a text editor and change\u00a0<code>gzip on<\/code>\u00a0to\u00a0<code>gzip off<\/code>. <\/li><li>Save the changes and close the file.<\/li><li>Reload nginx configuration to apply the changes:<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-preformatted\"> # service nginx reload <\/pre>\n\n\n\n<p>Ref.:  <a href=\"https:\/\/support.plesk.com\/hc\/en-us\/articles\/115000716649-How-to-enable-gzip-compression-in-Apache-on-Plesk-server-\">https:\/\/support.plesk.com\/hc\/en-us\/articles\/115000716649-How-to-enable-gzip-compression-in-Apache-on-Plesk-server-<\/a> <\/p>\n","protected":false},"excerpt":{"rendered":"<p>Enabling gzip compression for a domain in Plesk In Plesk, go to\u00a0Domains\u00a0>\u00a0example.com\u00a0>\u00a0Apache &amp; nginx Settings. Add the following directives to the\u00a0Additional nginx directives\u00a0field: gzip on; gzip_disable &#8220;MSIE [1-6]\\\\.(?!.*SV1)&#8221;; gzip_proxied any; gzip_comp_level 5; gzip_types text\/plain text\/css application\/javascript application\/x-javascript text\/xml application\/xml application\/rss+xml text\/javascript image\/x-icon image\/bmp image\/svg+xml; gzip_vary on; Note:\u00a0This is an example. If needed, add other file [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":2876,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":false,"jetpack_social_options":{"image_generator_settings":{"template":"highway","enabled":false}}},"categories":[235],"tags":[236,144],"class_list":["post-2873","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-nginx","tag-gzip-compression","tag-nginx"],"jetpack_publicize_connections":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to enable\/disable gzip compression in nginx on a Plesk server? | 24x7serversupport Blog<\/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.24x7serversupport.com\/blog\/how-to-enable-disable-gzip-compression-in-nginx-on-a-plesk-server\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to enable\/disable gzip compression in nginx on a Plesk server? | 24x7serversupport Blog\" \/>\n<meta property=\"og:description\" content=\"Enabling gzip compression for a domain in Plesk In Plesk, go to\u00a0Domains\u00a0&gt;\u00a0example.com\u00a0&gt;\u00a0Apache &amp; nginx Settings. Add the following directives to the\u00a0Additional nginx directives\u00a0field: gzip on; gzip_disable &quot;MSIE [1-6]\\.(?!.*SV1)&quot;; gzip_proxied any; gzip_comp_level 5; gzip_types text\/plain text\/css application\/javascript application\/x-javascript text\/xml application\/xml application\/rss+xml text\/javascript image\/x-icon image\/bmp image\/svg+xml; gzip_vary on; Note:\u00a0This is an example. If needed, add other file [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.24x7serversupport.com\/blog\/how-to-enable-disable-gzip-compression-in-nginx-on-a-plesk-server\/\" \/>\n<meta property=\"og:site_name\" content=\"24x7serversupport Blog\" \/>\n<meta property=\"article:published_time\" content=\"2020-03-10T15:04:43+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-03-10T15:08:56+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/i0.wp.com\/www.24x7serversupport.com\/blog\/wp-content\/uploads\/2020\/03\/gzip.png?fit=680%2C340&ssl=1\" \/>\n\t<meta property=\"og:image:width\" content=\"680\" \/>\n\t<meta property=\"og:image:height\" content=\"340\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"24x7support\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@24x7serversuppo\" \/>\n<meta name=\"twitter:site\" content=\"@24x7serversuppo\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"24x7support\" \/>\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.24x7serversupport.com\/blog\/how-to-enable-disable-gzip-compression-in-nginx-on-a-plesk-server\/\",\"url\":\"https:\/\/www.24x7serversupport.com\/blog\/how-to-enable-disable-gzip-compression-in-nginx-on-a-plesk-server\/\",\"name\":\"How to enable\/disable gzip compression in nginx on a Plesk server? | 24x7serversupport Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.24x7serversupport.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.24x7serversupport.com\/blog\/how-to-enable-disable-gzip-compression-in-nginx-on-a-plesk-server\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.24x7serversupport.com\/blog\/how-to-enable-disable-gzip-compression-in-nginx-on-a-plesk-server\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/i0.wp.com\/www.24x7serversupport.com\/blog\/wp-content\/uploads\/2020\/03\/gzip.png?fit=680%2C340&ssl=1\",\"datePublished\":\"2020-03-10T15:04:43+00:00\",\"dateModified\":\"2020-03-10T15:08:56+00:00\",\"author\":{\"@id\":\"https:\/\/www.24x7serversupport.com\/blog\/#\/schema\/person\/decfb5fad6bde6ac6822d4e965c6d401\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.24x7serversupport.com\/blog\/how-to-enable-disable-gzip-compression-in-nginx-on-a-plesk-server\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.24x7serversupport.com\/blog\/how-to-enable-disable-gzip-compression-in-nginx-on-a-plesk-server\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.24x7serversupport.com\/blog\/how-to-enable-disable-gzip-compression-in-nginx-on-a-plesk-server\/#primaryimage\",\"url\":\"https:\/\/i0.wp.com\/www.24x7serversupport.com\/blog\/wp-content\/uploads\/2020\/03\/gzip.png?fit=680%2C340&ssl=1\",\"contentUrl\":\"https:\/\/i0.wp.com\/www.24x7serversupport.com\/blog\/wp-content\/uploads\/2020\/03\/gzip.png?fit=680%2C340&ssl=1\",\"width\":680,\"height\":340,\"caption\":\"Gzip Compression\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.24x7serversupport.com\/blog\/how-to-enable-disable-gzip-compression-in-nginx-on-a-plesk-server\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.24x7serversupport.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to enable\/disable gzip compression in nginx on a Plesk server?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.24x7serversupport.com\/blog\/#website\",\"url\":\"https:\/\/www.24x7serversupport.com\/blog\/\",\"name\":\"24x7serversupport Blog\",\"description\":\"Linux | CPanel | WHM | webhosting| Plesk | DirectAdmin | CentOs | Debian | Ubuntu Blog\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.24x7serversupport.com\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.24x7serversupport.com\/blog\/#\/schema\/person\/decfb5fad6bde6ac6822d4e965c6d401\",\"name\":\"24x7support\",\"url\":\"https:\/\/www.24x7serversupport.com\/blog\/author\/24x7support\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to enable\/disable gzip compression in nginx on a Plesk server? | 24x7serversupport Blog","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.24x7serversupport.com\/blog\/how-to-enable-disable-gzip-compression-in-nginx-on-a-plesk-server\/","og_locale":"en_US","og_type":"article","og_title":"How to enable\/disable gzip compression in nginx on a Plesk server? | 24x7serversupport Blog","og_description":"Enabling gzip compression for a domain in Plesk In Plesk, go to\u00a0Domains\u00a0>\u00a0example.com\u00a0>\u00a0Apache &amp; nginx Settings. Add the following directives to the\u00a0Additional nginx directives\u00a0field: gzip on; gzip_disable \"MSIE [1-6]\\.(?!.*SV1)\"; gzip_proxied any; gzip_comp_level 5; gzip_types text\/plain text\/css application\/javascript application\/x-javascript text\/xml application\/xml application\/rss+xml text\/javascript image\/x-icon image\/bmp image\/svg+xml; gzip_vary on; Note:\u00a0This is an example. If needed, add other file [&hellip;]","og_url":"https:\/\/www.24x7serversupport.com\/blog\/how-to-enable-disable-gzip-compression-in-nginx-on-a-plesk-server\/","og_site_name":"24x7serversupport Blog","article_published_time":"2020-03-10T15:04:43+00:00","article_modified_time":"2020-03-10T15:08:56+00:00","og_image":[{"width":680,"height":340,"url":"https:\/\/i0.wp.com\/www.24x7serversupport.com\/blog\/wp-content\/uploads\/2020\/03\/gzip.png?fit=680%2C340&ssl=1","type":"image\/png"}],"author":"24x7support","twitter_card":"summary_large_image","twitter_creator":"@24x7serversuppo","twitter_site":"@24x7serversuppo","twitter_misc":{"Written by":"24x7support","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.24x7serversupport.com\/blog\/how-to-enable-disable-gzip-compression-in-nginx-on-a-plesk-server\/","url":"https:\/\/www.24x7serversupport.com\/blog\/how-to-enable-disable-gzip-compression-in-nginx-on-a-plesk-server\/","name":"How to enable\/disable gzip compression in nginx on a Plesk server? | 24x7serversupport Blog","isPartOf":{"@id":"https:\/\/www.24x7serversupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.24x7serversupport.com\/blog\/how-to-enable-disable-gzip-compression-in-nginx-on-a-plesk-server\/#primaryimage"},"image":{"@id":"https:\/\/www.24x7serversupport.com\/blog\/how-to-enable-disable-gzip-compression-in-nginx-on-a-plesk-server\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/www.24x7serversupport.com\/blog\/wp-content\/uploads\/2020\/03\/gzip.png?fit=680%2C340&ssl=1","datePublished":"2020-03-10T15:04:43+00:00","dateModified":"2020-03-10T15:08:56+00:00","author":{"@id":"https:\/\/www.24x7serversupport.com\/blog\/#\/schema\/person\/decfb5fad6bde6ac6822d4e965c6d401"},"breadcrumb":{"@id":"https:\/\/www.24x7serversupport.com\/blog\/how-to-enable-disable-gzip-compression-in-nginx-on-a-plesk-server\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.24x7serversupport.com\/blog\/how-to-enable-disable-gzip-compression-in-nginx-on-a-plesk-server\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.24x7serversupport.com\/blog\/how-to-enable-disable-gzip-compression-in-nginx-on-a-plesk-server\/#primaryimage","url":"https:\/\/i0.wp.com\/www.24x7serversupport.com\/blog\/wp-content\/uploads\/2020\/03\/gzip.png?fit=680%2C340&ssl=1","contentUrl":"https:\/\/i0.wp.com\/www.24x7serversupport.com\/blog\/wp-content\/uploads\/2020\/03\/gzip.png?fit=680%2C340&ssl=1","width":680,"height":340,"caption":"Gzip Compression"},{"@type":"BreadcrumbList","@id":"https:\/\/www.24x7serversupport.com\/blog\/how-to-enable-disable-gzip-compression-in-nginx-on-a-plesk-server\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.24x7serversupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to enable\/disable gzip compression in nginx on a Plesk server?"}]},{"@type":"WebSite","@id":"https:\/\/www.24x7serversupport.com\/blog\/#website","url":"https:\/\/www.24x7serversupport.com\/blog\/","name":"24x7serversupport Blog","description":"Linux | CPanel | WHM | webhosting| Plesk | DirectAdmin | CentOs | Debian | Ubuntu Blog","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.24x7serversupport.com\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.24x7serversupport.com\/blog\/#\/schema\/person\/decfb5fad6bde6ac6822d4e965c6d401","name":"24x7support","url":"https:\/\/www.24x7serversupport.com\/blog\/author\/24x7support\/"}]}},"jetpack_featured_media_url":"https:\/\/i0.wp.com\/www.24x7serversupport.com\/blog\/wp-content\/uploads\/2020\/03\/gzip.png?fit=680%2C340&ssl=1","jetpack_sharing_enabled":true,"jetpack_likes_enabled":true,"jetpack-related-posts":[],"_links":{"self":[{"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/posts\/2873","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/comments?post=2873"}],"version-history":[{"count":2,"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/posts\/2873\/revisions"}],"predecessor-version":[{"id":2877,"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/posts\/2873\/revisions\/2877"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/media\/2876"}],"wp:attachment":[{"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/media?parent=2873"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/categories?post=2873"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/tags?post=2873"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}