{"id":15723,"date":"2025-09-18T18:29:21","date_gmt":"2025-09-18T12:59:21","guid":{"rendered":"https:\/\/www.skynats.com\/?p=15723"},"modified":"2025-09-18T18:29:24","modified_gmt":"2025-09-18T12:59:24","slug":"how-to-enable-brotli-compression-on-nginx-using-ngx_brotli","status":"publish","type":"post","link":"https:\/\/www.skynats.com\/blog\/how-to-enable-brotli-compression-on-nginx-using-ngx_brotli\/","title":{"rendered":"How to Enable Brotli Compression on NGINX Using ngx_brotli"},"content":{"rendered":"\n<p>If you&#8217;re running NGINX in production, performance and response size matter \u2014 a lot. Reducing the size of HTTP responses can have a huge impact on site speed, bandwidth costs, and ultimately user experience. While gzip has been the default compression tool for years, there\u2019s a newer, better contender: Enable Brotli Compression on NGINX.<\/p>\n\n\n\n<p>With better compression ratios than gzip (often 15\u201325% smaller), and performance that&#8217;s comparable or even faster, Brotli has quickly become the new standard \u2014 supported by all major browsers and CDNs.<\/p>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\" id=\"h-what-is-ngx-brotli\"><strong>What is ngx_brotli?<\/strong><\/h2>\n\n\n\n<p><a href=\"https:\/\/docs.nginx.com\/nginx\/admin-guide\/dynamic-modules\/brotli\/\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-secondary-color\">ngx_brotli<\/mark> <\/a>is an open-source NGINX module that enables Brotli compression support. It includes two modules:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>ngx_http_brotli_filter_module \u2014 Compresses HTTP responses on-the-fly.<\/li>\n\n\n\n<li>ngx_http_brotli_static_module \u2014 Serves pre-compressed .br files, avoiding CPU overhead for dynamic compression.<\/li>\n<\/ul>\n\n\n\n<p>Together, these modules can significantly reduce response size for a wide range of content types \u2014 from HTML and CSS to JSON and fonts.<\/p>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\"><strong>Installation Guide<\/strong><\/h2>\n\n\n\n<p>You can install ngx_brotli either statically or dynamically depending on your NGINX setup.<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-1-clone-the-repo\">1. <strong>Clone the repo<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>git clone --recurse-submodules -j8 https:\/\/github.com\/google\/ngx_brotli<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\">2. <strong>Build Brotli library<\/strong><\/h3>\n\n\n\n<p>build the dependencies using the following commands:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>cd ngx_brotli\/deps\/brotli\nmkdir out &amp;&amp; cd out\ncmake -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=OFF -DCMAKE_INSTALL_PREFIX=.\/installed ..\n\ncmake --build . --config Release --target brotlienc\ncd ..\/..\/..\/..<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-3a-static-compilation\">3A. <strong>Static Compilation<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>cd nginx-1.x.x\nexport CFLAGS=\"-m64 -march=native -mtune=native -Ofast -flto -funroll-loops -ffunction-sections -fdata-sections -Wl,--gc-sections\"\n\nexport LDFLAGS=\"-m64 -Wl,-s -Wl,-Bsymbolic -Wl,--gc-sections\"\n.\/configure --add-module=\/path\/to\/ngx_brotli\nmake &amp;&amp; make install<\/code><\/pre>\n\n\n\n<p>Replace the \/path\/to\/ngx_brotli according to the setup<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-3b-dynamic-module\">3B. <strong>Dynamic Module<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>cd nginx-1.x.x\n\n.\/configure --with-compat --add-dynamic-module=\/path\/to\/ngx_brotli\n\nmake modules<\/code><\/pre>\n\n\n\n<p>Copy the .so files to your modules directory (e.g. \/usr\/lib\/nginx\/modules\/), then add these lines to the top of your nginx.conf ( \/etc\/nginx\/nginx.conf ):<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>load_module modules\/ngx_http_brotli_filter_module.so;\nload_module modules\/ngx_http_brotli_static_module.so;<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>Sample Configuration<\/strong><\/h3>\n\n\n\n<p>To enable Brotli compression in NGINX, you need to add the Brotli configuration directives inside the http block of your main nginx.conf file. This ensures that Brotli is applied globally across all server blocks. If you&#8217;re using the dynamic module version, be sure to load the Brotli modules at the top of the file before the http block.<\/p>\n\n\n\n<p>Here\u2019s a production-ready example to get you started:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>load_module modules\/ngx_http_brotli_filter_module.so;\nload_module modules\/ngx_http_brotli_static_module.so;\n\nhttp {\n    brotli on;\n    brotli_comp_level 6;\n    brotli_static on;\nbrotli_types application\/atom+xml application\/javascript application\/json  application\/vnd.api+json application\/rss+xml application\/vnd.ms-fontobject application\/x-font-opentype application\/x-font-truetype application\/x-font-ttf application\/x-javascript application\/xhtml+xml application\/xml font\/eot font\/opentype font\/otf font\/truetype image\/svg+xml image\/vnd.microsoft.icon image\/x-icon image\/x-win-bitmap text\/css text\/javascript text\/plain text\/xml;\n    server {\n        listen 80;\n        server_name example.com;\n\n        location \/ {\n            root \/var\/www\/html;\n            index index.html;\n        }\n    }\n}<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\"><strong>Why You Should Use Brotli<\/strong><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Better compression: Up to 25% smaller than gzip.<\/li>\n\n\n\n<li>Faster page loads: Especially important for mobile and slow connections.<\/li>\n\n\n\n<li>Broad browser support: All modern browsers support Brotli.<\/li>\n\n\n\n<li>Lower bandwidth costs: Smaller files = lower CDN bills.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>Conclusion<\/strong><\/h3>\n\n\n\n<p>Adding Brotli support to NGINX is a no-brainer if you&#8217;re optimizing for speed and performance. The ngx_brotli module makes it easy to integrate on-the-fly and static compression into your stack \u2014 unlocking faster load times and reduced bandwidth.<\/p>\n\n\n\n<p>Need help to Enable Brotli Compression on NGINX for faster performance and lower bandwidth costs? Our experts at Skynats specialize in <a href=\"https:\/\/www.skynats.com\/linux-server-management\/\">Linux server management services<\/a>, ensuring your web servers are fully optimized, secure, and running smoothly. Contact us today for reliable support and performance tuning!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>If you&#8217;re running NGINX in production, performance and response size matter \u2014 a lot. Reducing the size of HTTP responses can have a huge impact on site speed, bandwidth costs, and ultimately user experience. While gzip has been the default compression tool for years, there\u2019s a newer, better contender: Enable Brotli Compression on NGINX. With [&hellip;]<\/p>\n","protected":false},"author":14,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5],"tags":[1108,1107,1010,43],"class_list":["post-15723","post","type-post","status-publish","format-standard","hentry","category-blog","tag-brotli","tag-enable-brotli-compression-on-nginx","tag-linux-server-management-services","tag-nginx"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.9 (Yoast SEO v27.6) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Enable Brotli Compression on NGINX for Faster Websites<\/title>\n<meta name=\"description\" content=\"Learn how to Enable Brotli Compression on NGINX for faster websites. Follow our guide &amp; boost performance today!\" \/>\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.skynats.com\/blog\/how-to-enable-brotli-compression-on-nginx-using-ngx_brotli\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Enable Brotli Compression on NGINX Using ngx_brotli\" \/>\n<meta property=\"og:description\" content=\"Learn how to Enable Brotli Compression on NGINX for faster websites. Follow our guide &amp; boost performance today!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.skynats.com\/blog\/how-to-enable-brotli-compression-on-nginx-using-ngx_brotli\/\" \/>\n<meta property=\"og:site_name\" content=\"Server Management Services | Cloud Management | Skynats\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/skynats\" \/>\n<meta property=\"article:published_time\" content=\"2025-09-18T12:59:21+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-09-18T12:59:24+00:00\" \/>\n<meta name=\"author\" content=\"Jishnu V\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@skynatstech\" \/>\n<meta name=\"twitter:site\" content=\"@skynatstech\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jishnu V\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-enable-brotli-compression-on-nginx-using-ngx_brotli\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-enable-brotli-compression-on-nginx-using-ngx_brotli\\\/\"},\"author\":{\"name\":\"Jishnu V\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/c63611da5e22d216e38d8658e5a605c5\"},\"headline\":\"How to Enable Brotli Compression on NGINX Using ngx_brotli\",\"datePublished\":\"2025-09-18T12:59:21+00:00\",\"dateModified\":\"2025-09-18T12:59:24+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-enable-brotli-compression-on-nginx-using-ngx_brotli\\\/\"},\"wordCount\":430,\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"keywords\":[\"Brotli\",\"Enable Brotli Compression on NGINX\",\"linux server management services\",\"nginx\"],\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-enable-brotli-compression-on-nginx-using-ngx_brotli\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-enable-brotli-compression-on-nginx-using-ngx_brotli\\\/\",\"name\":\"Enable Brotli Compression on NGINX for Faster Websites\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\"},\"datePublished\":\"2025-09-18T12:59:21+00:00\",\"dateModified\":\"2025-09-18T12:59:24+00:00\",\"description\":\"Learn how to Enable Brotli Compression on NGINX for faster websites. Follow our guide & boost performance today!\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-enable-brotli-compression-on-nginx-using-ngx_brotli\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-enable-brotli-compression-on-nginx-using-ngx_brotli\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-enable-brotli-compression-on-nginx-using-ngx_brotli\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Enable Brotli Compression on NGINX Using ngx_brotli\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\",\"name\":\"Server Management Services | Cloud Management | Skynats\",\"description\":\"Server Management and Cloud Management\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\",\"name\":\"Skynats Technologies\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Sknats-Logo-New-whole.png\",\"contentUrl\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Sknats-Logo-New-whole.png\",\"width\":989,\"height\":367,\"caption\":\"Skynats Technologies\"},\"image\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/skynats\",\"https:\\\/\\\/x.com\\\/skynatstech\",\"https:\\\/\\\/www.instagram.com\\\/skynatstech\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/skynats-technologies\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCvTAjrFJ4_E2MJKwlDHomlg\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/c63611da5e22d216e38d8658e5a605c5\",\"name\":\"Jishnu V\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/9fc7882cfbe811c2c069669ed9a43c27a8b4f7e013fc7e9d539199f807dc7ab1?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/9fc7882cfbe811c2c069669ed9a43c27a8b4f7e013fc7e9d539199f807dc7ab1?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/9fc7882cfbe811c2c069669ed9a43c27a8b4f7e013fc7e9d539199f807dc7ab1?s=96&d=mm&r=g\",\"caption\":\"Jishnu V\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Enable Brotli Compression on NGINX for Faster Websites","description":"Learn how to Enable Brotli Compression on NGINX for faster websites. Follow our guide & boost performance today!","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.skynats.com\/blog\/how-to-enable-brotli-compression-on-nginx-using-ngx_brotli\/","og_locale":"en_US","og_type":"article","og_title":"How to Enable Brotli Compression on NGINX Using ngx_brotli","og_description":"Learn how to Enable Brotli Compression on NGINX for faster websites. Follow our guide & boost performance today!","og_url":"https:\/\/www.skynats.com\/blog\/how-to-enable-brotli-compression-on-nginx-using-ngx_brotli\/","og_site_name":"Server Management Services | Cloud Management | Skynats","article_publisher":"https:\/\/www.facebook.com\/skynats","article_published_time":"2025-09-18T12:59:21+00:00","article_modified_time":"2025-09-18T12:59:24+00:00","author":"Jishnu V","twitter_card":"summary_large_image","twitter_creator":"@skynatstech","twitter_site":"@skynatstech","twitter_misc":{"Written by":"Jishnu V","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.skynats.com\/blog\/how-to-enable-brotli-compression-on-nginx-using-ngx_brotli\/#article","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-enable-brotli-compression-on-nginx-using-ngx_brotli\/"},"author":{"name":"Jishnu V","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/c63611da5e22d216e38d8658e5a605c5"},"headline":"How to Enable Brotli Compression on NGINX Using ngx_brotli","datePublished":"2025-09-18T12:59:21+00:00","dateModified":"2025-09-18T12:59:24+00:00","mainEntityOfPage":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-enable-brotli-compression-on-nginx-using-ngx_brotli\/"},"wordCount":430,"publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"keywords":["Brotli","Enable Brotli Compression on NGINX","linux server management services","nginx"],"articleSection":["Blog"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.skynats.com\/blog\/how-to-enable-brotli-compression-on-nginx-using-ngx_brotli\/","url":"https:\/\/www.skynats.com\/blog\/how-to-enable-brotli-compression-on-nginx-using-ngx_brotli\/","name":"Enable Brotli Compression on NGINX for Faster Websites","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/#website"},"datePublished":"2025-09-18T12:59:21+00:00","dateModified":"2025-09-18T12:59:24+00:00","description":"Learn how to Enable Brotli Compression on NGINX for faster websites. Follow our guide & boost performance today!","breadcrumb":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-enable-brotli-compression-on-nginx-using-ngx_brotli\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.skynats.com\/blog\/how-to-enable-brotli-compression-on-nginx-using-ngx_brotli\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.skynats.com\/blog\/how-to-enable-brotli-compression-on-nginx-using-ngx_brotli\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.skynats.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Enable Brotli Compression on NGINX Using ngx_brotli"}]},{"@type":"WebSite","@id":"https:\/\/www.skynats.com\/blog\/#website","url":"https:\/\/www.skynats.com\/blog\/","name":"Server Management Services | Cloud Management | Skynats","description":"Server Management and Cloud Management","publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.skynats.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.skynats.com\/blog\/#organization","name":"Skynats Technologies","url":"https:\/\/www.skynats.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/08\/Sknats-Logo-New-whole.png","contentUrl":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/08\/Sknats-Logo-New-whole.png","width":989,"height":367,"caption":"Skynats Technologies"},"image":{"@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/skynats","https:\/\/x.com\/skynatstech","https:\/\/www.instagram.com\/skynatstech\/","https:\/\/www.linkedin.com\/company\/skynats-technologies","https:\/\/www.youtube.com\/channel\/UCvTAjrFJ4_E2MJKwlDHomlg"]},{"@type":"Person","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/c63611da5e22d216e38d8658e5a605c5","name":"Jishnu V","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/9fc7882cfbe811c2c069669ed9a43c27a8b4f7e013fc7e9d539199f807dc7ab1?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/9fc7882cfbe811c2c069669ed9a43c27a8b4f7e013fc7e9d539199f807dc7ab1?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/9fc7882cfbe811c2c069669ed9a43c27a8b4f7e013fc7e9d539199f807dc7ab1?s=96&d=mm&r=g","caption":"Jishnu V"}}]}},"_links":{"self":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/15723","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/users\/14"}],"replies":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/comments?post=15723"}],"version-history":[{"count":2,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/15723\/revisions"}],"predecessor-version":[{"id":15726,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/15723\/revisions\/15726"}],"wp:attachment":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/media?parent=15723"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/categories?post=15723"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/tags?post=15723"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}