{"id":12654,"date":"2023-02-07T23:12:20","date_gmt":"2023-02-07T21:12:20","guid":{"rendered":"https:\/\/techmoz.net\/?p=12654"},"modified":"2023-02-07T23:12:20","modified_gmt":"2023-02-07T21:12:20","slug":"solving-the-errror-504-gateway-timeout-with-nginx-and-php","status":"publish","type":"post","link":"https:\/\/techmoz.net\/en\/solving-the-errror-504-gateway-timeout-with-nginx-and-php\/","title":{"rendered":"Solving the errror  &#8220;504 Gateway Timeout&#8221; with NGINX and PHP"},"content":{"rendered":"<p>One of the most common errors for those who use Nginx as a webserver is the &#8220;504 Gateway Timeout&#8221; error. This error is usually generated when the response time of the server responsible for processing the request behind Nginx, in this case PHP, takes too long to send such a response. To fix this error, changes need to be made in both Nginx and PHP-FPM.<\/p>\n<p>The way the &#8220;504 Gateway Timeout&#8221; error appears in the browser varies depending on the version of Nginx and the site configurations. The most common ones are:<\/p>\n<ul>\n<li>&#8220;504 Gateway Timeout&#8221;<\/li>\n<li>&#8220;504 Gateway Time-Out&#8221;<\/li>\n<li>&#8220;504 Gateway Timeout NGINX&#8221;<\/li>\n<li>&#8220;Nginx 504 Gateway Timeout&#8221;<\/li>\n<li>&#8220;HTTP 504 Gateway Timeout&#8221;<\/li>\n<li>&#8220;HTTP 504 Error&#8221;<\/li>\n<li>&#8220;HTTP 504&#8221;<\/li>\n<li>&#8220;Gateway Timeout (504)&#8221;<\/li>\n<\/ul>\n<h3>Changes in PHP<\/h3>\n<p>For those using php-fpm as a backend for Nginx, the following changes need to be made:<\/p>\n<p>Change the max_execution_time in php.ini (In Ubuntu the php.ini is located in \/etc\/php\/8.1\/fpm\/php.ini) to:<\/p>\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">max_execution_time = 300<\/pre>\n<p>It is also necessary to change the request_terminate_timeout parameter in \/etc\/php\/8.1\/fpm\/pool.d\/www.conf to:<\/p>\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">request_terminate_timeout = 300<\/pre>\n<h3>Changes in Nginx<\/h3>\n<p>In the configuration of your virtual host in Nginx, add the fastcgi_read_timeout variable as indicated below:<\/p>\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\nlocation ~ .php$ {\r\n    root \/var\/www\/sites\/nginxtips.com;\r\n    try_files $uri =404;\r\n    fastcgi_pass unix:\/tmp\/php5-fpm.sock;\r\n    fastcgi_index index.php;\r\n    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;\r\n    include fastcgi_params;\r\n    fastcgi_read_timeout 300;\r\n}\r\n<\/pre>\n<p>Next, simply restart both php-fpm and Nginx, so that the request execution time limit is set to 5 minutes (300 seconds). If the error persists, it is just a matter of adjusting the values:<\/p>\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\nsudo service nginx restart\r\nsudo service php8.1-fpm restart\r\n<\/pre>\n<div style=\"font-size: 0px; height: 0px; line-height: 0px; margin: 0; padding: 0; clear: both;\"><\/div>\n","protected":false},"excerpt":{"rendered":"<p>One of the most common errors for those who use Nginx as a webserver is the &#8220;504 Gateway Timeout&#8221; error. This error is usually generated when the response time of the server responsible for processing the request behind Nginx, in this case PHP, takes too long to send such a response. To fix this error,<\/p>\n","protected":false},"author":2,"featured_media":1,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_dcms_eufi_img":"https:\/\/kinsta.com\/wp-content\/uploads\/2020\/10\/cloudflare-nginx-504-gateway-timeout-2.png","footnotes":"","_links_to":"","_links_to_target":""},"categories":[963,964,952,981,989,991,1001],"tags":[],"class_list":["post-12654","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-articles-2","category-cakephp-2-development-tools","category-highlights-2","category-laravel-2","category-php-2","category-programming","category-wordpress"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Solving the errror &quot;504 Gateway Timeout&quot; with NGINX and PHP - Techmoz<\/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:\/\/techmoz.net\/en\/corrigindo-o-erro-504-gateway-timeout-com-o-nginx-e-php\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Solving the errror &quot;504 Gateway Timeout&quot; with NGINX and PHP - Techmoz\" \/>\n<meta property=\"og:description\" content=\"One of the most common errors for those who use Nginx as a webserver is the &#8220;504 Gateway Timeout&#8221; error. This error is usually generated when the response time of the server responsible for processing the request behind Nginx, in this case PHP, takes too long to send such a response. To fix this error,\" \/>\n<meta property=\"og:url\" content=\"https:\/\/techmoz.net\/corrigindo-o-erro-504-gateway-timeout-com-o-nginx-e-php\/\" \/>\n<meta property=\"og:site_name\" content=\"Techmoz\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/web.facebook.com\/hostmoz\" \/>\n<meta property=\"article:published_time\" content=\"2023-02-07T21:12:20+00:00\" \/>\n<meta name=\"author\" content=\"Elisio Leonardo\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@hostmoz\" \/>\n<meta name=\"twitter:site\" content=\"@hostmoz\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Elisio Leonardo\" \/>\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\",\"NewsArticle\"],\"@id\":\"https:\/\/techmoz.net\/corrigindo-o-erro-504-gateway-timeout-com-o-nginx-e-php\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/techmoz.net\/corrigindo-o-erro-504-gateway-timeout-com-o-nginx-e-php\/\"},\"author\":{\"name\":\"Elisio Leonardo\",\"@id\":\"https:\/\/techmoz.net\/#\/schema\/person\/dcc2c00505441293925f0573bc996b09\"},\"headline\":\"Solving the errror &#8220;504 Gateway Timeout&#8221; with NGINX and PHP\",\"datePublished\":\"2023-02-07T21:12:20+00:00\",\"dateModified\":\"2023-02-07T21:12:20+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/techmoz.net\/corrigindo-o-erro-504-gateway-timeout-com-o-nginx-e-php\/\"},\"wordCount\":299,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/techmoz.net\/#organization\"},\"image\":{\"@id\":\"https:\/\/techmoz.net\/corrigindo-o-erro-504-gateway-timeout-com-o-nginx-e-php\/#primaryimage\"},\"thumbnailUrl\":\"\",\"articleSection\":[\"Articles\",\"CakePHP\",\"Highlights\",\"Laravel\",\"PHP\",\"Programming\",\"Wordpress\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/techmoz.net\/corrigindo-o-erro-504-gateway-timeout-com-o-nginx-e-php\/#respond\"]}],\"copyrightYear\":\"2023\",\"copyrightHolder\":{\"@id\":\"https:\/\/techmoz.net\/#organization\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/techmoz.net\/corrigindo-o-erro-504-gateway-timeout-com-o-nginx-e-php\/\",\"url\":\"https:\/\/techmoz.net\/corrigindo-o-erro-504-gateway-timeout-com-o-nginx-e-php\/\",\"name\":\"Solving the errror \\\"504 Gateway Timeout\\\" with NGINX and PHP - Techmoz\",\"isPartOf\":{\"@id\":\"https:\/\/techmoz.net\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/techmoz.net\/corrigindo-o-erro-504-gateway-timeout-com-o-nginx-e-php\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/techmoz.net\/corrigindo-o-erro-504-gateway-timeout-com-o-nginx-e-php\/#primaryimage\"},\"thumbnailUrl\":\"\",\"datePublished\":\"2023-02-07T21:12:20+00:00\",\"dateModified\":\"2023-02-07T21:12:20+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/techmoz.net\/corrigindo-o-erro-504-gateway-timeout-com-o-nginx-e-php\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/techmoz.net\/corrigindo-o-erro-504-gateway-timeout-com-o-nginx-e-php\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/techmoz.net\/corrigindo-o-erro-504-gateway-timeout-com-o-nginx-e-php\/#primaryimage\",\"url\":\"\",\"contentUrl\":\"\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/techmoz.net\/corrigindo-o-erro-504-gateway-timeout-com-o-nginx-e-php\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/techmoz.net\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Solving the errror &#8220;504 Gateway Timeout&#8221; with NGINX and PHP\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/techmoz.net\/#website\",\"url\":\"https:\/\/techmoz.net\/\",\"name\":\"Techmoz\",\"description\":\"O maior Portal de Tecnologia em Mo\u00e7ambique\",\"publisher\":{\"@id\":\"https:\/\/techmoz.net\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/techmoz.net\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/techmoz.net\/#organization\",\"name\":\"Hostmoz,Lda\",\"url\":\"https:\/\/techmoz.net\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/techmoz.net\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/techmoz.test\/wp-content\/uploads\/2023\/01\/techmoz-logo.png?fit=385%2C90&ssl=1\",\"contentUrl\":\"https:\/\/techmoz.test\/wp-content\/uploads\/2023\/01\/techmoz-logo.png?fit=385%2C90&ssl=1\",\"width\":385,\"height\":90,\"caption\":\"Hostmoz,Lda\"},\"image\":{\"@id\":\"https:\/\/techmoz.net\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/web.facebook.com\/hostmoz\",\"https:\/\/x.com\/hostmoz\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/techmoz.net\/#\/schema\/person\/dcc2c00505441293925f0573bc996b09\",\"name\":\"Elisio Leonardo\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/techmoz.net\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/80182e0df20d39fd5938f02fa54113c599d04372d288dc811ea9d480830a94fd?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/80182e0df20d39fd5938f02fa54113c599d04372d288dc811ea9d480830a94fd?s=96&d=mm&r=g\",\"caption\":\"Elisio Leonardo\"},\"description\":\"Elisio Leonardo is an experienced Web Developer, Solutions Architect, Digital Marketing Expert, and content producer with a passion for technology, artificial intelligence, web development, and entertainment. With nearly 15 years of writing engaging content on technology and entertainment, particularly Comic Book Movies, Elisio has become a trusted source of information in the digital landscape.\",\"url\":\"https:\/\/techmoz.net\/en\/author\/backstageel\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Solving the errror \"504 Gateway Timeout\" with NGINX and PHP - Techmoz","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:\/\/techmoz.net\/en\/corrigindo-o-erro-504-gateway-timeout-com-o-nginx-e-php\/","og_locale":"en_US","og_type":"article","og_title":"Solving the errror \"504 Gateway Timeout\" with NGINX and PHP - Techmoz","og_description":"One of the most common errors for those who use Nginx as a webserver is the &#8220;504 Gateway Timeout&#8221; error. This error is usually generated when the response time of the server responsible for processing the request behind Nginx, in this case PHP, takes too long to send such a response. To fix this error,","og_url":"https:\/\/techmoz.net\/corrigindo-o-erro-504-gateway-timeout-com-o-nginx-e-php\/","og_site_name":"Techmoz","article_publisher":"https:\/\/web.facebook.com\/hostmoz","article_published_time":"2023-02-07T21:12:20+00:00","author":"Elisio Leonardo","twitter_card":"summary_large_image","twitter_creator":"@hostmoz","twitter_site":"@hostmoz","twitter_misc":{"Written by":"Elisio Leonardo","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":["Article","NewsArticle"],"@id":"https:\/\/techmoz.net\/corrigindo-o-erro-504-gateway-timeout-com-o-nginx-e-php\/#article","isPartOf":{"@id":"https:\/\/techmoz.net\/corrigindo-o-erro-504-gateway-timeout-com-o-nginx-e-php\/"},"author":{"name":"Elisio Leonardo","@id":"https:\/\/techmoz.net\/#\/schema\/person\/dcc2c00505441293925f0573bc996b09"},"headline":"Solving the errror &#8220;504 Gateway Timeout&#8221; with NGINX and PHP","datePublished":"2023-02-07T21:12:20+00:00","dateModified":"2023-02-07T21:12:20+00:00","mainEntityOfPage":{"@id":"https:\/\/techmoz.net\/corrigindo-o-erro-504-gateway-timeout-com-o-nginx-e-php\/"},"wordCount":299,"commentCount":0,"publisher":{"@id":"https:\/\/techmoz.net\/#organization"},"image":{"@id":"https:\/\/techmoz.net\/corrigindo-o-erro-504-gateway-timeout-com-o-nginx-e-php\/#primaryimage"},"thumbnailUrl":"","articleSection":["Articles","CakePHP","Highlights","Laravel","PHP","Programming","Wordpress"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/techmoz.net\/corrigindo-o-erro-504-gateway-timeout-com-o-nginx-e-php\/#respond"]}],"copyrightYear":"2023","copyrightHolder":{"@id":"https:\/\/techmoz.net\/#organization"}},{"@type":"WebPage","@id":"https:\/\/techmoz.net\/corrigindo-o-erro-504-gateway-timeout-com-o-nginx-e-php\/","url":"https:\/\/techmoz.net\/corrigindo-o-erro-504-gateway-timeout-com-o-nginx-e-php\/","name":"Solving the errror \"504 Gateway Timeout\" with NGINX and PHP - Techmoz","isPartOf":{"@id":"https:\/\/techmoz.net\/#website"},"primaryImageOfPage":{"@id":"https:\/\/techmoz.net\/corrigindo-o-erro-504-gateway-timeout-com-o-nginx-e-php\/#primaryimage"},"image":{"@id":"https:\/\/techmoz.net\/corrigindo-o-erro-504-gateway-timeout-com-o-nginx-e-php\/#primaryimage"},"thumbnailUrl":"","datePublished":"2023-02-07T21:12:20+00:00","dateModified":"2023-02-07T21:12:20+00:00","breadcrumb":{"@id":"https:\/\/techmoz.net\/corrigindo-o-erro-504-gateway-timeout-com-o-nginx-e-php\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/techmoz.net\/corrigindo-o-erro-504-gateway-timeout-com-o-nginx-e-php\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/techmoz.net\/corrigindo-o-erro-504-gateway-timeout-com-o-nginx-e-php\/#primaryimage","url":"","contentUrl":""},{"@type":"BreadcrumbList","@id":"https:\/\/techmoz.net\/corrigindo-o-erro-504-gateway-timeout-com-o-nginx-e-php\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/techmoz.net\/en\/"},{"@type":"ListItem","position":2,"name":"Solving the errror &#8220;504 Gateway Timeout&#8221; with NGINX and PHP"}]},{"@type":"WebSite","@id":"https:\/\/techmoz.net\/#website","url":"https:\/\/techmoz.net\/","name":"Techmoz","description":"O maior Portal de Tecnologia em Mo\u00e7ambique","publisher":{"@id":"https:\/\/techmoz.net\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/techmoz.net\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/techmoz.net\/#organization","name":"Hostmoz,Lda","url":"https:\/\/techmoz.net\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/techmoz.net\/#\/schema\/logo\/image\/","url":"https:\/\/techmoz.test\/wp-content\/uploads\/2023\/01\/techmoz-logo.png?fit=385%2C90&ssl=1","contentUrl":"https:\/\/techmoz.test\/wp-content\/uploads\/2023\/01\/techmoz-logo.png?fit=385%2C90&ssl=1","width":385,"height":90,"caption":"Hostmoz,Lda"},"image":{"@id":"https:\/\/techmoz.net\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/web.facebook.com\/hostmoz","https:\/\/x.com\/hostmoz"]},{"@type":"Person","@id":"https:\/\/techmoz.net\/#\/schema\/person\/dcc2c00505441293925f0573bc996b09","name":"Elisio Leonardo","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/techmoz.net\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/80182e0df20d39fd5938f02fa54113c599d04372d288dc811ea9d480830a94fd?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/80182e0df20d39fd5938f02fa54113c599d04372d288dc811ea9d480830a94fd?s=96&d=mm&r=g","caption":"Elisio Leonardo"},"description":"Elisio Leonardo is an experienced Web Developer, Solutions Architect, Digital Marketing Expert, and content producer with a passion for technology, artificial intelligence, web development, and entertainment. With nearly 15 years of writing engaging content on technology and entertainment, particularly Comic Book Movies, Elisio has become a trusted source of information in the digital landscape.","url":"https:\/\/techmoz.net\/en\/author\/backstageel\/"}]}},"_format-video":{"_last_editor_used_jetpack":["classic-editor"],"dsq_thread_id":["5215603029","5215603029"],"_edit_last":["2"],"_edit_lock":["1675806032:2"],"mashsb_timestamp":["1674109855"],"mashsb_shares":["0"],"naff_exclude":["false"],"post_views_count":["1950"],"mashsb_jsonshares":["{\"total\":0,\"error\":{\"facebook_error\":\"\"},\"facebook_total\":0}"],"_syntaxhighlighter_encoded":["1"],"_yoast_wpseo_primary_category":["963"],"_wpml_media_featured":["1"],"_wpml_media_duplicate":["1"],"_post_template_options":["a:1:{s:17:\"single_post_style\";s:0:\"\";}"],"_format-video":["a:1:{s:13:\"embedded_link\";s:0:\"\";}"],"_wpb_vc_js_status":["false"],"_yoast_wpseo_newssitemap-exclude":["off"],"_yoast_wpseo_newssitemap-genre":["a:0:{}"],"_yoast_wpseo_content_score":["60"],"_yoast_wpseo_inclusive_language_score":["90"],"_yoast_wpseo_estimated-reading-time-minutes":["2"],"_yoast_wpseo_wordproof_timestamp":[""],"_encloseme":["1"],"_yoast_wpseo_focuskw":["Gateway Timeout"],"_yoast_wpseo_linkdex":["11"],"_dcms_eufi_img":["https:\/\/kinsta.com\/wp-content\/uploads\/2020\/10\/cloudflare-nginx-504-gateway-timeout-2.png"]},"_links":{"self":[{"href":"https:\/\/techmoz.net\/en\/wp-json\/wp\/v2\/posts\/12654","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/techmoz.net\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/techmoz.net\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/techmoz.net\/en\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/techmoz.net\/en\/wp-json\/wp\/v2\/comments?post=12654"}],"version-history":[{"count":2,"href":"https:\/\/techmoz.net\/en\/wp-json\/wp\/v2\/posts\/12654\/revisions"}],"predecessor-version":[{"id":12658,"href":"https:\/\/techmoz.net\/en\/wp-json\/wp\/v2\/posts\/12654\/revisions\/12658"}],"wp:attachment":[{"href":"https:\/\/techmoz.net\/en\/wp-json\/wp\/v2\/media?parent=12654"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/techmoz.net\/en\/wp-json\/wp\/v2\/categories?post=12654"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/techmoz.net\/en\/wp-json\/wp\/v2\/tags?post=12654"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}