{"id":2195,"date":"2020-10-13T11:19:13","date_gmt":"2020-10-13T09:19:13","guid":{"rendered":"https:\/\/geko2.factoryfy.com\/es\/?p=2713"},"modified":"2021-11-03T18:38:55","modified_gmt":"2021-11-03T17:38:55","slug":"como-habilitar-la-compresion-brotli-en-un-ingress-nginx","status":"publish","type":"post","link":"https:\/\/geko.cloud\/es\/como-habilitar-la-compresion-brotli-en-un-ingress-nginx\/","title":{"rendered":"C\u00f3mo habilitar la compresi\u00f3n Brotli en un ingress-nginx"},"content":{"rendered":"<h3>Introducci\u00f3n<\/h3>\n<p><em>Brotli<\/em> es un m\u00e9todo de compresi\u00f3n desarrollado por <em>Google<\/em> y lanzado en 2015. En funci\u00f3n del escenario,<strong> <em>brotli<\/em><\/strong> es capaz de conseguir una mejora en la tasa de compresi\u00f3n de entre un 20 y un 30% sobre <em>gzip<\/em>, que es el m\u00e9todo de compresi\u00f3n por defecto.<\/p>\n<h3>Configuraci\u00f3n del <em>ingress-nginx<\/em><\/h3>\n<p>Para crear el <em>ingress-nginx<\/em> en funci\u00f3n de nuestro proveedor, podemos seguir la documentaci\u00f3n del siguiente enlace:<\/p>\n<p><a href=\"https:\/\/kubernetes.github.io\/ingress-nginx\/deploy\/\">https:\/\/kubernetes.github.io\/ingress-nginx\/deploy\/<\/a><\/p>\n<p>La configuraci\u00f3n del<strong> <em>ingress-nginx<\/em> <\/strong>puede hacerse a trav\u00e9s de los <em>Annotations<\/em>, con un<strong> <em>ConfigMap<\/em><\/strong> o con una plantilla personalizada.<br \/>\nEn el siguiente enlace podemos comprobar qu\u00e9 par\u00e1metros pueden modificarse con cada una de las formas:<\/p>\n<p><a href=\"https:\/\/kubernetes.github.io\/ingress-nginx\/user-guide\/nginx-configuration\/\">https:\/\/kubernetes.github.io\/ingress-nginx\/user-guide\/nginx-configuration\/<\/a><\/p>\n<p>En este caso, para modificar el m\u00e9todo de compresi\u00f3n, tendremos que emplear el <strong><em>ConfigMap<\/em><\/strong>.<br \/>\nEl m\u00e9todo de compresi\u00f3n por defecto es <em>gzip<\/em>, con un nivel de compresi\u00f3n de 1. Para habilitar y configurar la compresi\u00f3n <em>brotli<\/em>, disponemos de tres par\u00e1metros: <em>enable-brotli<\/em>, <em>brotli-level<\/em> y <em>brotli-types<\/em>.<\/p>\n<ul>\n<li><em>enable-brotli<\/em>: <em>true<\/em> o <em>false<\/em>. Permite habilitar la compresi\u00f3n <strong><em>brotli<\/em><\/strong>.<\/li>\n<li><em>brotli-level<\/em>: nivel de compresi\u00f3n. Puede tomar valores entre 1 y 11, por defecto es 4. A mayor nivel de compresi\u00f3n, m\u00e1s agresivos ser\u00e1n los algoritmos para comprimir los ficheros, consiguiendo menores tama\u00f1os, pero a cambio ser\u00e1 m\u00e1s costoso computacionalmente.<\/li>\n<li><em>brotli-types<\/em>: tipos <em>MIME<\/em> que ser\u00e1n comprimidos al vuelo por <strong><em>brotli<\/em><\/strong>.<\/li>\n<\/ul>\n<h3>Aplicando los cambios<\/h3>\n<p>Ejecutando el siguiente comando, listaremos los <strong><em>ConfigMap<\/em><\/strong> del <strong><em>ingress-nginx<\/em><\/strong>:<\/p>\n<div class=\"wp-block-codemirror-blocks code-block \">\n<pre class=\"CodeMirror\" data-setting=\"{\">kubectl get cm -l app.kubernetes.io\/name=ingress-nginx -A<\/pre>\n<\/div>\n<p>El par\u00e1metro &#8216;-A&#8217; nos lista los recursos de todos los <em>namespaces<\/em>, dado que en funci\u00f3n del proveedor que estemos usando, el <em>namespace<\/em> puede variar. La salida del comando ser\u00eda algo as\u00ed:<\/p>\n<div class=\"wp-block-codemirror-blocks code-block \">\n<pre class=\"CodeMirror\" data-setting=\"{\">NAMESPACE     NAME                          DATA   AGE\r\nmy-namespace  ingress-nginx-configuration   0      14d\r\nmy-namespace  ingress-nginx-tcp-services    0      14d\r\nmy-namespace  ingress-nginx-udp-services    0      14d\r\n<\/pre>\n<\/div>\n<p>El <strong><em>ConfigMap<\/em><\/strong> que debemos modificar es <em>ingress-nginx-configuration<\/em>.<br \/>\nPara ver el contenido actual del <strong><em>ConfigMap<\/em><\/strong>, ejecutaremos el siguiente comando:<\/p>\n<div class=\"wp-block-codemirror-blocks code-block \">\n<pre class=\"CodeMirror\" data-setting=\"{\">kubectl get cm ingress-nginx-configuration -n my-namespace -o yaml<\/pre>\n<\/div>\n<p>En este caso deberemos especificar el <em>namespace<\/em> donde est\u00e1 desplegado el <em>ingress-nginx<\/em>.<\/p>\n<p>Podemos editar este <strong><em>ConfigMap<\/em><\/strong> de forma directa, pero en este caso crearemos un fichero <em>yaml<\/em> para luego aplicarlo.<\/p>\n<p><em>configmap.yaml<\/em>:<\/p>\n<div class=\"wp-block-codemirror-blocks code-block \">\n<pre class=\"CodeMirror\" data-setting=\"{\">apiVersion: v1\r\nkind: ConfigMap\r\nmetadata:\r\n  name: ingress-nginx-configuration\r\ndata:\r\n  enable-brotli: \"true\"\r\n  brotli-level: \"6\"\r\n  brotli-types: \"text\/xml image\/svg+xml application\/x-font-ttf image\/vnd.microsoft.icon application\/x-font-opentype application\/json font\/eot application\/vnd.ms-fontobject application\/javascript font\/otf application\/xml application\/xhtml+xml text\/javascript application\/x-javascript text\/plain application\/x-font-truetype application\/xml+rss image\/x-icon font\/opentype text\/css image\/x-win-bitmap\"<\/pre>\n<\/div>\n<p>Nota importante: todos los par\u00e1metros del <em>ConfigMap<\/em> deben ser cadenas de texto y, por lo tanto, deben estar entrecomillados.<\/p>\n<p>Una vez tengamos el fichero <em>configmap.yaml<\/em> creado, con los valores deseados de los par\u00e1metros, lo aplicaremos ejecutaremos el siguiente comando:<\/p>\n<div class=\"wp-block-codemirror-blocks code-block \">\n<pre class=\"CodeMirror\" data-setting=\"{\">kubectl apply -f configmap.yaml -n my-namespace<\/pre>\n<\/div>\n<p>Tenemos que asegurarnos de aplicar el <strong><em>ConfigMap<\/em><\/strong> en el mismo <em>namespace<\/em> donde tengamos desplegado el <strong><em>ingress-nginx<\/em><\/strong>.<\/p>\n<h3>Comprobaci\u00f3n<\/h3>\n<p>Finalmente comprobaremos que hemos aplicado correctamente los cambios, mostrando de nuevo el contenido del <strong><em>ConfigMap<\/em><\/strong> de configuraci\u00f3n del <strong><em>ingress-nginx<\/em><\/strong>:<\/p>\n<div class=\"wp-block-codemirror-blocks code-block \">\n<pre class=\"CodeMirror\" data-setting=\"{\">kubectl get cm ingress-nginx-configuration -n kube-system -o yaml\r\napiVersion: v1\r\ndata:\r\n  brotli-level: \"6\"\r\n  brotli-types: text\/xml image\/svg+xml application\/x-font-ttf image\/vnd.microsoft.icon\r\n    application\/x-font-opentype application\/json font\/eot application\/vnd.ms-fontobject\r\n    application\/javascript font\/otf application\/xml application\/xhtml+xml text\/javascript  application\/x-javascript\r\n    text\/plain application\/x-font-truetype application\/xml+rss image\/x-icon font\/opentype\r\n    text\/css image\/x-win-bitmap\r\n  enable-brotli: \"true\"\r\nkind: ConfigMap\r\nmetadata:\r\n  annotations:\r\n    ...<\/pre>\n<\/div>\n<p>Con la compresi\u00f3n <strong><em>brotli<\/em> <\/strong>activada, al realizar una petici\u00f3n a alguna <em>web<\/em> expuesta a trav\u00e9s del <em><strong>ingress-nginx<\/strong>,<\/em> en la cabeceras de respuesta recibiremos algo como lo siguiente:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-medium wp-image-2712 aligncenter\" src=\"https:\/\/geko2.factoryfy.com\/wp-content\/uploads\/br-encoding-248x300.jpg\" alt=\"\" width=\"248\" height=\"300\" \/><\/p>\n<p>\u00a1Y listo!<\/p>\n<p>Esperamos que te haya sido \u00fatil este post, no olvides que el equipo <a href=\"https:\/\/geko.cloud\/es\/devops\/\">DevOps<\/a> de <a href=\"https:\/\/geko.cloud\/es\/\">Geko<\/a> est\u00e1 a tu disposici\u00f3n. <a href=\"https:\/\/geko.cloud\/es\/contacto\/\">Cont\u00e1ctanos<\/a> si tienes cualquier duda.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introducci\u00f3n Brotli es un m\u00e9todo de compresi\u00f3n desarrollado por Google y lanzado en 2015. En funci\u00f3n del escenario, brotli es capaz de conseguir una mejora en la tasa de compresi\u00f3n de entre un 20 y un 30% sobre gzip, que es el m\u00e9todo de compresi\u00f3n por defecto. Configuraci\u00f3n del ingress-nginx Para crear el ingress-nginx en [&hellip;]<\/p>\n","protected":false},"author":38,"featured_media":2196,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[18],"tags":[37,57],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>C\u00f3mo habilitar la compresi\u00f3n Brotli en un ingress-nginx - Geko Cloud<\/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:\/\/geko.cloud\/es\/como-habilitar-la-compresion-brotli-en-un-ingress-nginx\/\" \/>\n<meta property=\"og:locale\" content=\"es_ES\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"C\u00f3mo habilitar la compresi\u00f3n Brotli en un ingress-nginx - Geko Cloud\" \/>\n<meta property=\"og:description\" content=\"Introducci\u00f3n Brotli es un m\u00e9todo de compresi\u00f3n desarrollado por Google y lanzado en 2015. En funci\u00f3n del escenario, brotli es capaz de conseguir una mejora en la tasa de compresi\u00f3n de entre un 20 y un 30% sobre gzip, que es el m\u00e9todo de compresi\u00f3n por defecto. Configuraci\u00f3n del ingress-nginx Para crear el ingress-nginx en [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/geko.cloud\/es\/como-habilitar-la-compresion-brotli-en-un-ingress-nginx\/\" \/>\n<meta property=\"og:site_name\" content=\"Geko Cloud\" \/>\n<meta property=\"article:published_time\" content=\"2020-10-13T09:19:13+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-11-03T17:38:55+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/geko.cloud\/wp-content\/uploads\/foto-post-1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1120\" \/>\n\t<meta property=\"og:image:height\" content=\"500\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Geko Cloud\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@geko_cloud\" \/>\n<meta name=\"twitter:site\" content=\"@geko_cloud\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/geko.cloud\/es\/como-habilitar-la-compresion-brotli-en-un-ingress-nginx\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/geko.cloud\/es\/como-habilitar-la-compresion-brotli-en-un-ingress-nginx\/\"},\"author\":{\"name\":\"Geko Cloud\",\"@id\":\"https:\/\/geko.cloud\/es\/#\/schema\/person\/c87e3587fb419825d72ac2043e798ab6\"},\"headline\":\"C\u00f3mo habilitar la compresi\u00f3n Brotli en un ingress-nginx\",\"datePublished\":\"2020-10-13T09:19:13+00:00\",\"dateModified\":\"2021-11-03T17:38:55+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/geko.cloud\/es\/como-habilitar-la-compresion-brotli-en-un-ingress-nginx\/\"},\"wordCount\":482,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/geko.cloud\/es\/#organization\"},\"image\":{\"@id\":\"https:\/\/geko.cloud\/es\/como-habilitar-la-compresion-brotli-en-un-ingress-nginx\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/geko.cloud\/wp-content\/uploads\/foto-post-1.png\",\"keywords\":[\"Kubernetes\",\"Ngnix\"],\"articleSection\":[\"Labs\"],\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/geko.cloud\/es\/como-habilitar-la-compresion-brotli-en-un-ingress-nginx\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/geko.cloud\/es\/como-habilitar-la-compresion-brotli-en-un-ingress-nginx\/\",\"url\":\"https:\/\/geko.cloud\/es\/como-habilitar-la-compresion-brotli-en-un-ingress-nginx\/\",\"name\":\"C\u00f3mo habilitar la compresi\u00f3n Brotli en un ingress-nginx - Geko Cloud\",\"isPartOf\":{\"@id\":\"https:\/\/geko.cloud\/es\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/geko.cloud\/es\/como-habilitar-la-compresion-brotli-en-un-ingress-nginx\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/geko.cloud\/es\/como-habilitar-la-compresion-brotli-en-un-ingress-nginx\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/geko.cloud\/wp-content\/uploads\/foto-post-1.png\",\"datePublished\":\"2020-10-13T09:19:13+00:00\",\"dateModified\":\"2021-11-03T17:38:55+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/geko.cloud\/es\/como-habilitar-la-compresion-brotli-en-un-ingress-nginx\/#breadcrumb\"},\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/geko.cloud\/es\/como-habilitar-la-compresion-brotli-en-un-ingress-nginx\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\/\/geko.cloud\/es\/como-habilitar-la-compresion-brotli-en-un-ingress-nginx\/#primaryimage\",\"url\":\"https:\/\/geko.cloud\/wp-content\/uploads\/foto-post-1.png\",\"contentUrl\":\"https:\/\/geko.cloud\/wp-content\/uploads\/foto-post-1.png\",\"width\":1120,\"height\":500,\"caption\":\"Brotli Ngnix logo\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/geko.cloud\/es\/como-habilitar-la-compresion-brotli-en-un-ingress-nginx\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Portada\",\"item\":\"https:\/\/geko.cloud\/es\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"C\u00f3mo habilitar la compresi\u00f3n Brotli en un ingress-nginx\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/geko.cloud\/es\/#website\",\"url\":\"https:\/\/geko.cloud\/es\/\",\"name\":\"Geko Cloud\",\"description\":\"Servicios de consultor\u00eda cloud y devops\",\"publisher\":{\"@id\":\"https:\/\/geko.cloud\/es\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/geko.cloud\/es\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"es\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/geko.cloud\/es\/#organization\",\"name\":\"Geko Cloud\",\"url\":\"https:\/\/geko.cloud\/es\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\/\/geko.cloud\/es\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/geko.cloud\/wp-content\/uploads\/2021\/10\/geko_logo-positivo.png\",\"contentUrl\":\"https:\/\/geko.cloud\/wp-content\/uploads\/2021\/10\/geko_logo-positivo.png\",\"width\":1650,\"height\":809,\"caption\":\"Geko Cloud\"},\"image\":{\"@id\":\"https:\/\/geko.cloud\/es\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/geko_cloud\",\"https:\/\/www.instagram.com\/gekocloud\/\",\"https:\/\/www.linkedin.com\/company\/gekocloud\",\"https:\/\/www.youtube.com\/channel\/UC5EFLCqUM7fEaXSa_0nWowQ\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/geko.cloud\/es\/#\/schema\/person\/c87e3587fb419825d72ac2043e798ab6\",\"name\":\"Geko Cloud\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\/\/geko.cloud\/es\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/10fe5eb7a547a27afabbe3a5a0f60c96?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/10fe5eb7a547a27afabbe3a5a0f60c96?s=96&d=mm&r=g\",\"caption\":\"Geko Cloud\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"C\u00f3mo habilitar la compresi\u00f3n Brotli en un ingress-nginx - Geko Cloud","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:\/\/geko.cloud\/es\/como-habilitar-la-compresion-brotli-en-un-ingress-nginx\/","og_locale":"es_ES","og_type":"article","og_title":"C\u00f3mo habilitar la compresi\u00f3n Brotli en un ingress-nginx - Geko Cloud","og_description":"Introducci\u00f3n Brotli es un m\u00e9todo de compresi\u00f3n desarrollado por Google y lanzado en 2015. En funci\u00f3n del escenario, brotli es capaz de conseguir una mejora en la tasa de compresi\u00f3n de entre un 20 y un 30% sobre gzip, que es el m\u00e9todo de compresi\u00f3n por defecto. Configuraci\u00f3n del ingress-nginx Para crear el ingress-nginx en [&hellip;]","og_url":"https:\/\/geko.cloud\/es\/como-habilitar-la-compresion-brotli-en-un-ingress-nginx\/","og_site_name":"Geko Cloud","article_published_time":"2020-10-13T09:19:13+00:00","article_modified_time":"2021-11-03T17:38:55+00:00","og_image":[{"width":1120,"height":500,"url":"https:\/\/geko.cloud\/wp-content\/uploads\/foto-post-1.png","type":"image\/png"}],"author":"Geko Cloud","twitter_card":"summary_large_image","twitter_creator":"@geko_cloud","twitter_site":"@geko_cloud","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/geko.cloud\/es\/como-habilitar-la-compresion-brotli-en-un-ingress-nginx\/#article","isPartOf":{"@id":"https:\/\/geko.cloud\/es\/como-habilitar-la-compresion-brotli-en-un-ingress-nginx\/"},"author":{"name":"Geko Cloud","@id":"https:\/\/geko.cloud\/es\/#\/schema\/person\/c87e3587fb419825d72ac2043e798ab6"},"headline":"C\u00f3mo habilitar la compresi\u00f3n Brotli en un ingress-nginx","datePublished":"2020-10-13T09:19:13+00:00","dateModified":"2021-11-03T17:38:55+00:00","mainEntityOfPage":{"@id":"https:\/\/geko.cloud\/es\/como-habilitar-la-compresion-brotli-en-un-ingress-nginx\/"},"wordCount":482,"commentCount":0,"publisher":{"@id":"https:\/\/geko.cloud\/es\/#organization"},"image":{"@id":"https:\/\/geko.cloud\/es\/como-habilitar-la-compresion-brotli-en-un-ingress-nginx\/#primaryimage"},"thumbnailUrl":"https:\/\/geko.cloud\/wp-content\/uploads\/foto-post-1.png","keywords":["Kubernetes","Ngnix"],"articleSection":["Labs"],"inLanguage":"es","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/geko.cloud\/es\/como-habilitar-la-compresion-brotli-en-un-ingress-nginx\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/geko.cloud\/es\/como-habilitar-la-compresion-brotli-en-un-ingress-nginx\/","url":"https:\/\/geko.cloud\/es\/como-habilitar-la-compresion-brotli-en-un-ingress-nginx\/","name":"C\u00f3mo habilitar la compresi\u00f3n Brotli en un ingress-nginx - Geko Cloud","isPartOf":{"@id":"https:\/\/geko.cloud\/es\/#website"},"primaryImageOfPage":{"@id":"https:\/\/geko.cloud\/es\/como-habilitar-la-compresion-brotli-en-un-ingress-nginx\/#primaryimage"},"image":{"@id":"https:\/\/geko.cloud\/es\/como-habilitar-la-compresion-brotli-en-un-ingress-nginx\/#primaryimage"},"thumbnailUrl":"https:\/\/geko.cloud\/wp-content\/uploads\/foto-post-1.png","datePublished":"2020-10-13T09:19:13+00:00","dateModified":"2021-11-03T17:38:55+00:00","breadcrumb":{"@id":"https:\/\/geko.cloud\/es\/como-habilitar-la-compresion-brotli-en-un-ingress-nginx\/#breadcrumb"},"inLanguage":"es","potentialAction":[{"@type":"ReadAction","target":["https:\/\/geko.cloud\/es\/como-habilitar-la-compresion-brotli-en-un-ingress-nginx\/"]}]},{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/geko.cloud\/es\/como-habilitar-la-compresion-brotli-en-un-ingress-nginx\/#primaryimage","url":"https:\/\/geko.cloud\/wp-content\/uploads\/foto-post-1.png","contentUrl":"https:\/\/geko.cloud\/wp-content\/uploads\/foto-post-1.png","width":1120,"height":500,"caption":"Brotli Ngnix logo"},{"@type":"BreadcrumbList","@id":"https:\/\/geko.cloud\/es\/como-habilitar-la-compresion-brotli-en-un-ingress-nginx\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Portada","item":"https:\/\/geko.cloud\/es\/"},{"@type":"ListItem","position":2,"name":"C\u00f3mo habilitar la compresi\u00f3n Brotli en un ingress-nginx"}]},{"@type":"WebSite","@id":"https:\/\/geko.cloud\/es\/#website","url":"https:\/\/geko.cloud\/es\/","name":"Geko Cloud","description":"Servicios de consultor\u00eda cloud y devops","publisher":{"@id":"https:\/\/geko.cloud\/es\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/geko.cloud\/es\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"es"},{"@type":"Organization","@id":"https:\/\/geko.cloud\/es\/#organization","name":"Geko Cloud","url":"https:\/\/geko.cloud\/es\/","logo":{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/geko.cloud\/es\/#\/schema\/logo\/image\/","url":"https:\/\/geko.cloud\/wp-content\/uploads\/2021\/10\/geko_logo-positivo.png","contentUrl":"https:\/\/geko.cloud\/wp-content\/uploads\/2021\/10\/geko_logo-positivo.png","width":1650,"height":809,"caption":"Geko Cloud"},"image":{"@id":"https:\/\/geko.cloud\/es\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/geko_cloud","https:\/\/www.instagram.com\/gekocloud\/","https:\/\/www.linkedin.com\/company\/gekocloud","https:\/\/www.youtube.com\/channel\/UC5EFLCqUM7fEaXSa_0nWowQ"]},{"@type":"Person","@id":"https:\/\/geko.cloud\/es\/#\/schema\/person\/c87e3587fb419825d72ac2043e798ab6","name":"Geko Cloud","image":{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/geko.cloud\/es\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/10fe5eb7a547a27afabbe3a5a0f60c96?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/10fe5eb7a547a27afabbe3a5a0f60c96?s=96&d=mm&r=g","caption":"Geko Cloud"}}]}},"_links":{"self":[{"href":"https:\/\/geko.cloud\/es\/wp-json\/wp\/v2\/posts\/2195"}],"collection":[{"href":"https:\/\/geko.cloud\/es\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/geko.cloud\/es\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/geko.cloud\/es\/wp-json\/wp\/v2\/users\/38"}],"replies":[{"embeddable":true,"href":"https:\/\/geko.cloud\/es\/wp-json\/wp\/v2\/comments?post=2195"}],"version-history":[{"count":3,"href":"https:\/\/geko.cloud\/es\/wp-json\/wp\/v2\/posts\/2195\/revisions"}],"predecessor-version":[{"id":5245,"href":"https:\/\/geko.cloud\/es\/wp-json\/wp\/v2\/posts\/2195\/revisions\/5245"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/geko.cloud\/es\/wp-json\/wp\/v2\/media\/2196"}],"wp:attachment":[{"href":"https:\/\/geko.cloud\/es\/wp-json\/wp\/v2\/media?parent=2195"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/geko.cloud\/es\/wp-json\/wp\/v2\/categories?post=2195"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/geko.cloud\/es\/wp-json\/wp\/v2\/tags?post=2195"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}