From ad88c2e1bc7e664a44953d4181a2657ed1637d38 Mon Sep 17 00:00:00 2001 From: Neil Hanlon Date: Fri, 23 Feb 2024 23:09:08 -0500 Subject: [PATCH 1/6] move to fastly - add logging, content fetch - various fixes around deployability via Vercel (dependencies, etc) --- .envrc | 4 + .gitignore | 7 + .pre-commit-config.yaml | 6 + build-all.sh | 27 + compute-js/.gitignore | 4 + compute-js/.publish-id | 2 + compute-js/fastly.toml | 19 + compute-js/package-lock.json | 1275 ++++++++++++++++++ compute-js/package.json | 23 + compute-js/src/index.js | 71 + compute-js/static-publish.rc.js | 34 + deploy.sh | 28 + mkdocs.yml | 5 +- package-lock.json | 2160 +++++++++++++++++++++++++++++++ package.json | 7 +- requirements.txt | 2 +- setup-deps.sh | 29 + vercel.json | 3 +- 18 files changed, 3700 insertions(+), 6 deletions(-) create mode 100644 .envrc create mode 100755 build-all.sh create mode 100644 compute-js/.gitignore create mode 100644 compute-js/.publish-id create mode 100644 compute-js/fastly.toml create mode 100644 compute-js/package-lock.json create mode 100644 compute-js/package.json create mode 100644 compute-js/src/index.js create mode 100644 compute-js/static-publish.rc.js create mode 100644 deploy.sh create mode 100644 package-lock.json create mode 100644 setup-deps.sh diff --git a/.envrc b/.envrc new file mode 100644 index 0000000..5d1fb06 --- /dev/null +++ b/.envrc @@ -0,0 +1,4 @@ +export FASTLY_SERVICE_ID="lACFUzQjUGLnZsvoHgcnx6" +export PATH="$PATH:$PWD/compute-js/bin" + +[[ -f .envrc.local ]] && source .envrc.local diff --git a/.gitignore b/.gitignore index b4700f6..98e3eef 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,13 @@ # Public output site/ public/ +build/ # Docs sources docs/ + +# mkdocs cache +.cache + +# dev envrc +.envrc.local diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index e916a66..ba9e51b 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -9,3 +9,9 @@ repos: - id: check-yaml args: [--unsafe] - id: check-added-large-files +- repo: https://github.com/boidolr/pre-commit-images + rev: v1.5.2 + hooks: + - id: optimize-png + - id: optimize-svg + - id: optimize-jpg diff --git a/build-all.sh b/build-all.sh new file mode 100755 index 0000000..366f12f --- /dev/null +++ b/build-all.sh @@ -0,0 +1,27 @@ +#!/bin/bash + +test -d build || mkdir build + +cleanup() { + echo -e "\nScript interrupted. Exiting..." + exit 1 +} + +trap cleanup INT + +source .envrc + +# Build the site +mkdocs build -d build/site + +# hardlink duplicates +command -v hardlink && hardlink -t build/site || echo "no hardlink in $PATH" + +MINIFY=$(command -v minify || echo "./compute-js/bin/minify") +# minify everything +test -d build/minified || $MINIFY -r --sync --preserve=all -o build/minified build/site + +# remove locales from minified (Fastly) site +for locale in $(yq -r '.plugins[] | select(type == "object" and has("i18n")) | .i18n.languages[].locale' < mkdocs.yml | grep -v 'en'); do + rm -fr "build/minified/site/$locale" +done diff --git a/compute-js/.gitignore b/compute-js/.gitignore new file mode 100644 index 0000000..0ea589a --- /dev/null +++ b/compute-js/.gitignore @@ -0,0 +1,4 @@ +/node_modules +/bin +/pkg +/static-publisher diff --git a/compute-js/.publish-id b/compute-js/.publish-id new file mode 100644 index 0000000..5443840 --- /dev/null +++ b/compute-js/.publish-id @@ -0,0 +1,2 @@ +# Generated by @fastly/compute-js-static-publish. +2qS5iaeanC9NRRLK1pSoYu diff --git a/compute-js/fastly.toml b/compute-js/fastly.toml new file mode 100644 index 0000000..68093e9 --- /dev/null +++ b/compute-js/fastly.toml @@ -0,0 +1,19 @@ +# This file describes a Fastly Compute package. To learn more visit: +# https://developer.fastly.com/reference/fastly-toml/ + +authors = [ "neil@resf.org" ] +description = "Rocky Linux Documentation Site" +language = "javascript" +manifest_version = 2 +name = "@resf/rocky-linux-docs" +service_id = "lACFUzQjUGLnZsvoHgcnx6" +# kv_store_name = "mkdocs" + +[scripts] + build = "npm run build" + +[local_server] + [local_server.backends] + [local_server.backends.docs-vercel] + url = "https://cname.vercel-dns.com/" + override_host = "docs.rockylinux.org" diff --git a/compute-js/package-lock.json b/compute-js/package-lock.json new file mode 100644 index 0000000..ec89673 --- /dev/null +++ b/compute-js/package-lock.json @@ -0,0 +1,1275 @@ +{ + "name": "@resf/rocky-linux-docs", + "version": "0.1.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "@resf/rocky-linux-docs", + "version": "0.1.0", + "license": "MIT", + "dependencies": { + "@fastly/js-compute": "^3.0.0" + }, + "devDependencies": { + "@fastly/compute-js-static-publish": "6.0.0" + }, + "engines": { + "node": ">=18.0.0" + } + }, + "node_modules/@babel/regjsgen": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", + "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==" + }, + "node_modules/@bytecodealliance/jco": { + "version": "0.10.3", + "resolved": "https://registry.npmjs.org/@bytecodealliance/jco/-/jco-0.10.3.tgz", + "integrity": "sha512-phIs2tkH6Ru74Rw1faCU24uOYZTexlM466cP4QPSaPl3Ls6uNRYptgoof2QQWYTfu1QM9nW6YupySKAkm0zWYA==", + "dependencies": { + "@bytecodealliance/preview2-shim": "0.0.12", + "binaryen": "^111.0.0", + "chalk-template": "^0.4.0", + "commander": "^9.4.1", + "mkdirp": "^1.0.4", + "ora": "^6.1.2", + "terser": "^5.16.1" + }, + "bin": { + "jco": "src/jco.js" + } + }, + "node_modules/@bytecodealliance/preview2-shim": { + "version": "0.0.12", + "resolved": "https://registry.npmjs.org/@bytecodealliance/preview2-shim/-/preview2-shim-0.0.12.tgz", + "integrity": "sha512-X+KpYrNB2LKKLzP7XcgNfu0zN3Gr3yTw4RGcj0k8k1MMUuwQdc/Mg+lzD6mEBHOLmVgvH5L1323Jy/+CHpnjKg==" + }, + "node_modules/@bytecodealliance/wizer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@bytecodealliance/wizer/-/wizer-3.0.1.tgz", + "integrity": "sha512-f0NBiBHCNBkbFHTPRbA7aKf/t4KyNhi2KvSqw3QzCgi8wFF/uLZ0dhejj93rbiKO/iwWbmU7v9K3SVkW81mcjQ==", + "bin": { + "wizer": "wizer.js" + }, + "engines": { + "node": ">=16" + }, + "optionalDependencies": { + "@bytecodealliance/wizer-darwin-arm64": "3.0.1", + "@bytecodealliance/wizer-darwin-x64": "3.0.1", + "@bytecodealliance/wizer-linux-arm64": "3.0.1", + "@bytecodealliance/wizer-linux-s390x": "3.0.1", + "@bytecodealliance/wizer-linux-x64": "3.0.1", + "@bytecodealliance/wizer-win32-x64": "3.0.1" + } + }, + "node_modules/@bytecodealliance/wizer-darwin-arm64": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@bytecodealliance/wizer-darwin-arm64/-/wizer-darwin-arm64-3.0.1.tgz", + "integrity": "sha512-/8KYSajyhO9koAE3qQhYfC6belZheJw9X3XqW7hrizTpj6n4z4OJFhhqwJmiYFUUsPtC7OxcXMFFPbTuSQPBcw==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "darwin" + ], + "bin": { + "wizer-darwin-arm64": "wizer" + } + }, + "node_modules/@bytecodealliance/wizer-darwin-x64": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@bytecodealliance/wizer-darwin-x64/-/wizer-darwin-x64-3.0.1.tgz", + "integrity": "sha512-bMReultN/r+W/BRXV0F+28U5dZwbQT/ZO0k4icZlhUhrv5/wpQJix7Z/ZvBnVQ+/JHb0QDUpFk2/zCtgkRXP6Q==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "darwin" + ], + "bin": { + "wizer-darwin-x64": "wizer" + } + }, + "node_modules/@bytecodealliance/wizer-linux-arm64": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@bytecodealliance/wizer-linux-arm64/-/wizer-linux-arm64-3.0.1.tgz", + "integrity": "sha512-35ZhAeYxWK3bTqqgwysbBWlGlrlMNKNng3ZITQV2PAtafpE7aCeqywl7VAS4lLRG5eTb7wxNgN7zf8d3wiIFTQ==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "linux" + ], + "bin": { + "wizer-linux-arm64": "wizer" + } + }, + "node_modules/@bytecodealliance/wizer-linux-s390x": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@bytecodealliance/wizer-linux-s390x/-/wizer-linux-s390x-3.0.1.tgz", + "integrity": "sha512-Smvy9mguEMtX0lupDLTPshXUzAHeOhgscr1bhGNjeCCLD1sd8rIjBvWV19Wtra0BL1zTuU2EPOHjR/4k8WoyDg==", + "cpu": [ + "s390x" + ], + "optional": true, + "os": [ + "linux" + ], + "bin": { + "wizer-linux-s390x": "wizer" + } + }, + "node_modules/@bytecodealliance/wizer-linux-x64": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@bytecodealliance/wizer-linux-x64/-/wizer-linux-x64-3.0.1.tgz", + "integrity": "sha512-uUue78xl7iwndsGgTsagHLTLyLBVHhwzuywiwHt1xw8y0X0O8REKRLBoB7+LdM+pttDPdFtKJgbTFL4UPAA7Yw==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "linux" + ], + "bin": { + "wizer-linux-x64": "wizer" + } + }, + "node_modules/@bytecodealliance/wizer-win32-x64": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@bytecodealliance/wizer-win32-x64/-/wizer-win32-x64-3.0.1.tgz", + "integrity": "sha512-ycd38sx1UTZpHZwh8IfH/4N3n0OQUB8awxkUSLXf9PolEd088YbxoPB3noHy4E+L2oYN7KZMrg9517pX0z2RhQ==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "win32" + ], + "bin": { + "wizer-win32-x64": "wizer" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.17.19.tgz", + "integrity": "sha512-rIKddzqhmav7MSmoFCmDIb6e2W57geRsM94gV2l38fzhXMwq7hZoClug9USI2pFRGL06f4IOPHHpFNOkWieR8A==", + "cpu": [ + "arm" + ], + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.17.19.tgz", + "integrity": "sha512-KBMWvEZooR7+kzY0BtbTQn0OAYY7CsiydT63pVEaPtVYF0hXbUaOyZog37DKxK7NF3XacBJOpYT4adIJh+avxA==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.17.19.tgz", + "integrity": "sha512-uUTTc4xGNDT7YSArp/zbtmbhO0uEEK9/ETW29Wk1thYUJBz3IVnvgEiEwEa9IeLyvnpKrWK64Utw2bgUmDveww==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.17.19.tgz", + "integrity": "sha512-80wEoCfF/hFKM6WE1FyBHc9SfUblloAWx6FJkFWTWiCoht9Mc0ARGEM47e67W9rI09YoUxJL68WHfDRYEAvOhg==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.17.19.tgz", + "integrity": "sha512-IJM4JJsLhRYr9xdtLytPLSH9k/oxR3boaUIYiHkAawtwNOXKE8KoU8tMvryogdcT8AU+Bflmh81Xn6Q0vTZbQw==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.19.tgz", + "integrity": "sha512-pBwbc7DufluUeGdjSU5Si+P3SoMF5DQ/F/UmTSb8HXO80ZEAJmrykPyzo1IfNbAoaqw48YRpv8shwd1NoI0jcQ==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.17.19.tgz", + "integrity": "sha512-4lu+n8Wk0XlajEhbEffdy2xy53dpR06SlzvhGByyg36qJw6Kpfk7cp45DR/62aPH9mtJRmIyrXAS5UWBrJT6TQ==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.17.19.tgz", + "integrity": "sha512-cdmT3KxjlOQ/gZ2cjfrQOtmhG4HJs6hhvm3mWSRDPtZ/lP5oe8FWceS10JaSJC13GBd4eH/haHnqf7hhGNLerA==", + "cpu": [ + "arm" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.17.19.tgz", + "integrity": "sha512-ct1Tg3WGwd3P+oZYqic+YZF4snNl2bsnMKRkb3ozHmnM0dGWuxcPTTntAF6bOP0Sp4x0PjSF+4uHQ1xvxfRKqg==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.17.19.tgz", + "integrity": "sha512-w4IRhSy1VbsNxHRQpeGCHEmibqdTUx61Vc38APcsRbuVgK0OPEnQ0YD39Brymn96mOx48Y2laBQGqgZ0j9w6SQ==", + "cpu": [ + "ia32" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.17.19.tgz", + "integrity": "sha512-2iAngUbBPMq439a+z//gE+9WBldoMp1s5GWsUSgqHLzLJ9WoZLZhpwWuym0u0u/4XmZ3gpHmzV84PonE+9IIdQ==", + "cpu": [ + "loong64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.17.19.tgz", + "integrity": "sha512-LKJltc4LVdMKHsrFe4MGNPp0hqDFA1Wpt3jE1gEyM3nKUvOiO//9PheZZHfYRfYl6AwdTH4aTcXSqBerX0ml4A==", + "cpu": [ + "mips64el" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.17.19.tgz", + "integrity": "sha512-/c/DGybs95WXNS8y3Ti/ytqETiW7EU44MEKuCAcpPto3YjQbyK3IQVKfF6nbghD7EcLUGl0NbiL5Rt5DMhn5tg==", + "cpu": [ + "ppc64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.17.19.tgz", + "integrity": "sha512-FC3nUAWhvFoutlhAkgHf8f5HwFWUL6bYdvLc/TTuxKlvLi3+pPzdZiFKSWz/PF30TB1K19SuCxDTI5KcqASJqA==", + "cpu": [ + "riscv64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.17.19.tgz", + "integrity": "sha512-IbFsFbxMWLuKEbH+7sTkKzL6NJmG2vRyy6K7JJo55w+8xDk7RElYn6xvXtDW8HCfoKBFK69f3pgBJSUSQPr+4Q==", + "cpu": [ + "s390x" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.17.19.tgz", + "integrity": "sha512-68ngA9lg2H6zkZcyp22tsVt38mlhWde8l3eJLWkyLrp4HwMUr3c1s/M2t7+kHIhvMjglIBrFpncX1SzMckomGw==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.17.19.tgz", + "integrity": "sha512-CwFq42rXCR8TYIjIfpXCbRX0rp1jo6cPIUPSaWwzbVI4aOfX96OXY8M6KNmtPcg7QjYeDmN+DD0Wp3LaBOLf4Q==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.17.19.tgz", + "integrity": "sha512-cnq5brJYrSZ2CF6c35eCmviIN3k3RczmHz8eYaVlNasVqsNY+JKohZU5MKmaOI+KkllCdzOKKdPs762VCPC20g==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.17.19.tgz", + "integrity": "sha512-vCRT7yP3zX+bKWFeP/zdS6SqdWB8OIpaRq/mbXQxTGHnIxspRtigpkUcDMlSCOejlHowLqII7K2JKevwyRP2rg==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.17.19.tgz", + "integrity": "sha512-yYx+8jwowUstVdorcMdNlzklLYhPxjniHWFKgRqH7IFlUEa0Umu3KuYplf1HUZZ422e3NU9F4LGb+4O0Kdcaag==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.17.19.tgz", + "integrity": "sha512-eggDKanJszUtCdlVs0RB+h35wNlb5v4TWEkq4vZcmVt5u/HiDZrTXe2bWFQUez3RgNHwx/x4sk5++4NSSicKkw==", + "cpu": [ + "ia32" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.17.19.tgz", + "integrity": "sha512-lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@fastly/compute-js-static-publish": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/@fastly/compute-js-static-publish/-/compute-js-static-publish-6.0.0.tgz", + "integrity": "sha512-Y/BXpnUrJRWHVHZ/PuiTjhm7DTrLcft0wvmmyOKQz1iRLypjwSrxWKPLI5MbezzVHskjRUQsF1CJ6myBnJ39BA==", + "dev": true, + "dependencies": { + "command-line-args": "^5.2.1", + "glob-to-regexp": "^0.4.1" + }, + "bin": { + "compute-js-static-publish": "build/cli/index.js" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@fastly/js-compute": "^2.0.0 || ^3.0.0" + } + }, + "node_modules/@fastly/js-compute": { + "version": "3.8.3", + "resolved": "https://registry.npmjs.org/@fastly/js-compute/-/js-compute-3.8.3.tgz", + "integrity": "sha512-Ep6Y0xX5hZTrr2gt/OQyNStdWmrgthUrMHsgMXSCwN8w9lzRGorWlVKXwcxp50a6OX9vH/uu8hMLPOivaFGb/w==", + "dependencies": { + "@bytecodealliance/jco": "^0.10.0", + "@bytecodealliance/wizer": "^3.0.1", + "acorn": "^8.8.2", + "acorn-walk": "^8.2.0", + "esbuild": "^0.17.18", + "magic-string": "^0.30.0", + "regexpu-core": "^5.3.2" + }, + "bin": { + "js-compute-runtime": "js-compute-runtime-cli.js" + }, + "engines": { + "node": "16 - 20", + "npm": "^8 || ^9" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/source-map": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.5.tgz", + "integrity": "sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.22", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.22.tgz", + "integrity": "sha512-Wf963MzWtA2sjrNt+g18IAln9lKnlRp+K2eH4jjIoF1wYeq3aMREpG09xhlhdzS0EjwU7qmUJYangWa+151vZw==", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/acorn": { + "version": "8.11.3", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", + "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-walk": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.2.tgz", + "integrity": "sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/array-back": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/array-back/-/array-back-3.1.0.tgz", + "integrity": "sha512-TkuxA4UCOvxuDK6NZYXCalszEzj+TLszyASooky+i742l9TqsOdYCMJJupxRic61hwquNtppB3hgcuq9SVSH1Q==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/binaryen": { + "version": "111.0.0", + "resolved": "https://registry.npmjs.org/binaryen/-/binaryen-111.0.0.tgz", + "integrity": "sha512-PEXOSHFO85aj1aP4t+KGzvxQ00qXbjCysWlsDjlGkP1e9owNiYdpEkLej21Ax8LDD7xJ01rEmJDqZ/JPoW2GXw==", + "bin": { + "wasm-opt": "bin/wasm-opt", + "wasm2js": "bin/wasm2js" + } + }, + "node_modules/bl": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-5.1.0.tgz", + "integrity": "sha512-tv1ZJHLfTDnXE6tMHv73YgSJaWR2AFuPwMntBe7XL/GBFHnT0CLnsHMogfk5+GzCDC5ZWarSCYaIGATZt9dNsQ==", + "dependencies": { + "buffer": "^6.0.3", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "node_modules/buffer": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", + "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.2.1" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/chalk-template": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/chalk-template/-/chalk-template-0.4.0.tgz", + "integrity": "sha512-/ghrgmhfY8RaSdeo43hNXxpoHAtxdbskUHjPpfqUWGttFgycUhYPGx3YZBCnUCvOa7Doivn1IZec3DEGFoMgLg==", + "dependencies": { + "chalk": "^4.1.2" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/chalk-template?sponsor=1" + } + }, + "node_modules/cli-cursor": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-4.0.0.tgz", + "integrity": "sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==", + "dependencies": { + "restore-cursor": "^4.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cli-spinners": { + "version": "2.9.2", + "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz", + "integrity": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/clone": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", + "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/command-line-args": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/command-line-args/-/command-line-args-5.2.1.tgz", + "integrity": "sha512-H4UfQhZyakIjC74I9d34fGYDwk3XpSr17QhEd0Q3I9Xq1CETHo4Hcuo87WyWHpAF1aSLjLRf5lD9ZGX2qStUvg==", + "dev": true, + "dependencies": { + "array-back": "^3.1.0", + "find-replace": "^3.0.0", + "lodash.camelcase": "^4.3.0", + "typical": "^4.0.0" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/commander": { + "version": "9.5.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", + "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", + "engines": { + "node": "^12.20.0 || >=14" + } + }, + "node_modules/defaults": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", + "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", + "dependencies": { + "clone": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/esbuild": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.17.19.tgz", + "integrity": "sha512-XQ0jAPFkK/u3LcVRcvVHQcTIqD6E2H1fvZMA5dQPSOWb3suUbWbfbRf94pjc0bNzRYLfIrDRQXr7X+LHIm5oHw==", + "hasInstallScript": true, + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/android-arm": "0.17.19", + "@esbuild/android-arm64": "0.17.19", + "@esbuild/android-x64": "0.17.19", + "@esbuild/darwin-arm64": "0.17.19", + "@esbuild/darwin-x64": "0.17.19", + "@esbuild/freebsd-arm64": "0.17.19", + "@esbuild/freebsd-x64": "0.17.19", + "@esbuild/linux-arm": "0.17.19", + "@esbuild/linux-arm64": "0.17.19", + "@esbuild/linux-ia32": "0.17.19", + "@esbuild/linux-loong64": "0.17.19", + "@esbuild/linux-mips64el": "0.17.19", + "@esbuild/linux-ppc64": "0.17.19", + "@esbuild/linux-riscv64": "0.17.19", + "@esbuild/linux-s390x": "0.17.19", + "@esbuild/linux-x64": "0.17.19", + "@esbuild/netbsd-x64": "0.17.19", + "@esbuild/openbsd-x64": "0.17.19", + "@esbuild/sunos-x64": "0.17.19", + "@esbuild/win32-arm64": "0.17.19", + "@esbuild/win32-ia32": "0.17.19", + "@esbuild/win32-x64": "0.17.19" + } + }, + "node_modules/find-replace": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-replace/-/find-replace-3.0.0.tgz", + "integrity": "sha512-6Tb2myMioCAgv5kfvP5/PkZZ/ntTpVK39fHY7WkWBgvbeE+VHd/tZuZ4mrC+bxh4cfOZeYKVPaJIZtZXV7GNCQ==", + "dev": true, + "dependencies": { + "array-back": "^3.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", + "dev": true + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "node_modules/is-interactive": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-2.0.0.tgz", + "integrity": "sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-unicode-supported": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-1.3.0.tgz", + "integrity": "sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", + "bin": { + "jsesc": "bin/jsesc" + } + }, + "node_modules/lodash.camelcase": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", + "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==", + "dev": true + }, + "node_modules/log-symbols": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-5.1.0.tgz", + "integrity": "sha512-l0x2DvrW294C9uDCoQe1VSU4gf529FkSZ6leBl4TiqZH/e+0R7hSfHQBNut2mNygDgHwvYHfFLn6Oxb3VWj2rA==", + "dependencies": { + "chalk": "^5.0.0", + "is-unicode-supported": "^1.1.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/log-symbols/node_modules/chalk": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/magic-string": { + "version": "0.30.7", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.7.tgz", + "integrity": "sha512-8vBuFF/I/+OSLRmdf2wwFCJCz+nSn0m6DPvGH1fS/KiQoSaR+sETbov0eIk9KhEKy8CYqIkIAnbohxT/4H0kuA==", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.4.15" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ora": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/ora/-/ora-6.3.1.tgz", + "integrity": "sha512-ERAyNnZOfqM+Ao3RAvIXkYh5joP220yf59gVe2X/cI6SiCxIdi4c9HZKZD8R6q/RDXEje1THBju6iExiSsgJaQ==", + "dependencies": { + "chalk": "^5.0.0", + "cli-cursor": "^4.0.0", + "cli-spinners": "^2.6.1", + "is-interactive": "^2.0.0", + "is-unicode-supported": "^1.1.0", + "log-symbols": "^5.1.0", + "stdin-discarder": "^0.1.0", + "strip-ansi": "^7.0.1", + "wcwidth": "^1.0.1" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ora/node_modules/chalk": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" + }, + "node_modules/regenerate-unicode-properties": { + "version": "10.1.1", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz", + "integrity": "sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==", + "dependencies": { + "regenerate": "^1.4.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regexpu-core": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz", + "integrity": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==", + "dependencies": { + "@babel/regjsgen": "^0.8.0", + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^10.1.0", + "regjsparser": "^0.9.1", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regjsparser": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", + "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", + "dependencies": { + "jsesc": "~0.5.0" + }, + "bin": { + "regjsparser": "bin/parser" + } + }, + "node_modules/restore-cursor": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-4.0.0.tgz", + "integrity": "sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==", + "dependencies": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" + }, + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/stdin-discarder": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/stdin-discarder/-/stdin-discarder-0.1.0.tgz", + "integrity": "sha512-xhV7w8S+bUwlPTb4bAOUQhv8/cSS5offJuX8GQGq32ONF0ZtDWKfkdomM3HMRA+LhX6um/FZ0COqlwsjD53LeQ==", + "dependencies": { + "bl": "^5.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/terser": { + "version": "5.28.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.28.1.tgz", + "integrity": "sha512-wM+bZp54v/E9eRRGXb5ZFDvinrJIOaTapx3WUokyVGZu5ucVCK55zEgGd5Dl2fSr3jUo5sDiERErUWLY6QPFyA==", + "dependencies": { + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.8.2", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/terser/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, + "node_modules/typical": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/typical/-/typical-4.0.0.tgz", + "integrity": "sha512-VAH4IvQ7BDFYglMd7BPRDfLgxZZX4O4TFcRDA6EN5X7erNJJq+McIEp8np9aVtxrCJ6qx4GTYVfOWNjcqwZgRw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/unicode-canonical-property-names-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", + "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "dependencies": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-value-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", + "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-property-aliases-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", + "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", + "engines": { + "node": ">=4" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" + }, + "node_modules/wcwidth": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", + "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", + "dependencies": { + "defaults": "^1.0.3" + } + } + } +} diff --git a/compute-js/package.json b/compute-js/package.json new file mode 100644 index 0000000..54e9956 --- /dev/null +++ b/compute-js/package.json @@ -0,0 +1,23 @@ +{ + "name": "@resf/rocky-linux-docs", + "version": "0.1.0", + "description": "Rocky Linux Documentation Site", + "author": "neil@resf.org", + "type": "module", + "devDependencies": { + "@fastly/compute-js-static-publish": "6.0.0" + }, + "dependencies": { + "@fastly/js-compute": "^3.0.0" + }, + "engines": { + "node": ">=18.0.0" + }, + "license": "MIT", + "private": true, + "scripts": { + "deploy": "fastly compute deploy", + "prebuild": "npx @fastly/compute-js-static-publish --build-static", + "build": "js-compute-runtime ./src/index.js ./bin/main.wasm" + } +} diff --git a/compute-js/src/index.js b/compute-js/src/index.js new file mode 100644 index 0000000..c7f3382 --- /dev/null +++ b/compute-js/src/index.js @@ -0,0 +1,71 @@ +/// +import { getServer } from '../static-publisher/statics.js'; +import { CacheOverride } from "fastly:cache-override"; +// import { allowDynamicBackends } from "fastly:experimental"; +// +// allowDynamicBackends(true); +const staticContentServer = getServer(); + +const backendName = "docs-vercel"; + +import { Logger } from "fastly:logger"; + +// eslint-disable-next-line no-restricted-globals +addEventListener("fetch", (event) => event.respondWith(handleRequest(event))); +async function handleRequest(event) { + const originalRequest = event.request; + const url = new URL(event.request.url); + const path = url.pathname; + + const logger = new Logger("JavaScriptLog"); + + function doLog(msg) { + console.log("[" + path + "]" + msg); + logger.log("[" + path + "]" + msg); + } + + // Check if the requested path has a locale slug (e.g., /fr/) + const localeRegex = /\/(af|de|fr|es|id|it|ja|ko|zh|sv|tr|pl|pt|pt-BR|ru|uk)\// + const hasLocaleSlug = localeRegex.test(path); + + // If there's a locale slug, try serving the translation + if (hasLocaleSlug) { + doLog("Attempting to serve localized page for " + path); + var response = await staticContentServer.serveRequest(event.request); + if (response == null || response.status > 400) { + doLog("Failed to serve localized page. Attempting to serve page from Vercel"); + // let cacheOverride = new CacheOverride("override", { ttl: 60 }); + response = await fetch(event.request, { backend: backendName }); + doLog("[vercel] " +response.url+"|"+response.status); + if (response != null && response.status < 400) { + doLog("Fetched localized content from Vercel"); + return response + } + } + } + + doLog("begin default route handling"); + // If no translation is found or there's no locale slug, serve the English version + const englishPath = path.replace(localeRegex, '/'); + const englishRequest = new Request(url.origin + englishPath); + const englishResponse = await staticContentServer.serveRequest(englishRequest); + + if (englishResponse != null && englishResponse.status < 400) { + doLog("fetched content from edge cache"); + return englishResponse; + } + + doLog("failed to fetch content from edge cache; attempt to serve from vercel"); + // If we **still** can't find the artifact, try to find it on docs.r.o for the user, I guess + // let cacheOverride = new CacheOverride("override", { ttl: 60 }); + response = await fetch(originalRequest, { backend: backendName }); + + if (response != null && response.status < 400) { + doLog("fetched content from vercel"); + return response + } + + doLog("request failed. return 404"); + // If neither translation nor English version is found, return a 404 response + return new Response('Not found', { status: 404 }); +} diff --git a/compute-js/static-publish.rc.js b/compute-js/static-publish.rc.js new file mode 100644 index 0000000..0af6195 --- /dev/null +++ b/compute-js/static-publish.rc.js @@ -0,0 +1,34 @@ +/* + * Copyright Fastly, Inc. + * Licensed under the MIT license. See LICENSE file for details. + */ + +// Commented items are defaults + +/** @type {import('@fastly/compute-js-static-publish').StaticPublisherConfig} */ +const config = { + rootDir: "../build/minified/site", + staticContentRootDir: "./static-publisher", + // kvStoreName: "mkdocs", + // excludeDirs: [ './node_modules' ], + // excludeDotFiles: true, + // includeWellKnown: true, + // contentAssetInclusionTest: (filename) => true, + // contentCompression: [ 'br', 'gzip' ], // For this config value, default is [] if kvStoreName is null. + // moduleAssetInclusionTest: (filename) => false, + // contentTypes: [ + // { test: /.custom$/, contentType: 'application/x-custom', text: false }, + // ], + server: { + publicDirPrefix: "", + staticItems: ["search/search_index.json"], + staticDir: "../build/minified/assets", + // compression: [ 'br', 'gzip' ], + spaFile: false, + notFoundPageFile: "/404.html", + autoExt: [], + autoIndex: ["index.html","index.htm"], + }, +}; + +export default config; diff --git a/deploy.sh b/deploy.sh new file mode 100644 index 0000000..9195a0e --- /dev/null +++ b/deploy.sh @@ -0,0 +1,28 @@ +#!/bin/bash + +cleanup() { + echo -e "\nScript interrupted. Exiting..." + exit 1 +} + +trap cleanup INT + +source .envrc + +FASTLY=$(command -v fastly) +test -x "$FASTLY" || exit 2 + +if [[ -z $FASTLY_API_TOKEN ]]; then + # shellcheck disable=2016 + echo 'missing $FASTLY_API_TOKEN'; exit 1 +fi +if [[ -z $FASTLY_SERVICE_ID ]]; then + # shellcheck disable=2016 + echo 'missing $FASTLY_API_TOKEN'; exit 1 +fi + +pushd compute-js || exit $? +$FASTLY compute build || exit $? +$FASTLY compute deploy -p pkg/resf-rocky-linux-docs.tar.gz + +popd || exit diff --git a/mkdocs.yml b/mkdocs.yml index c0b7a0b..e9ae3bb 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -67,13 +67,13 @@ markdown_extensions: plugins: - search - - social - awesome-pages - i18n: docs_structure: suffix fallback_to_default: true reconfigure_material: true reconfigure_search: true + # build_only_locale: !ENV [BUILD_ONLY_LOCALE] languages: - build: true default: true @@ -149,7 +149,8 @@ plugins: redirect_maps: "guides/add_mirror_manager.md": "guides/mirror_management/add_mirror_manager.md" - tags - + - privacy + - optimize extra: social: - icon: fontawesome/brands/twitter diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..6e02079 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,2160 @@ +{ + "name": "@resf/rocky-linux-docs", + "version": "2.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "@resf/rocky-linux-docs", + "version": "2.0.0", + "dependencies": { + "pngquant": "^4.2.0" + } + }, + "node_modules/@sindresorhus/is": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.7.0.tgz", + "integrity": "sha512-ONhaKPIufzzrlNbqtWFFd+jlnemX6lJAgq9ZeiZtS7I1PIf/la7CW4m83rTXRnVnsMbW2k56pGYu7AUFJD9Pow==", + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/arch": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz", + "integrity": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "optional": true + }, + "node_modules/archive-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/archive-type/-/archive-type-4.0.0.tgz", + "integrity": "sha512-zV4Ky0v1F8dBrdYElwTvQhweQ0P7Kwc1aluqJsYtOBP01jXcWCyW2IEfI1YiqsG+Iy7ZR+o5LF1N+PGECBxHWA==", + "optional": true, + "dependencies": { + "file-type": "^4.2.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/archive-type/node_modules/file-type": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-4.4.0.tgz", + "integrity": "sha512-f2UbFQEk7LXgWpi5ntcO86OeA/cC80fuDDDaX/fZ2ZGel+AF7leRQqBBW1eJNiiQkrZlAoM6P+VYP5P6bOlDEQ==", + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "optional": true + }, + "node_modules/bin-build": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bin-build/-/bin-build-3.0.0.tgz", + "integrity": "sha512-jcUOof71/TNAI2uM5uoUaDq2ePcVBQ3R/qhxAz1rX7UfvduAL/RXD3jXzvn8cVcDJdGVkiR1shal3OH0ImpuhA==", + "optional": true, + "dependencies": { + "decompress": "^4.0.0", + "download": "^6.2.2", + "execa": "^0.7.0", + "p-map-series": "^1.0.0", + "tempfile": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/bin-build/node_modules/cross-spawn": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", + "integrity": "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==", + "optional": true, + "dependencies": { + "lru-cache": "^4.0.1", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "node_modules/bin-build/node_modules/execa": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", + "integrity": "sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==", + "optional": true, + "dependencies": { + "cross-spawn": "^5.0.1", + "get-stream": "^3.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/bin-build/node_modules/get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/bin-build/node_modules/lru-cache": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", + "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", + "optional": true, + "dependencies": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + } + }, + "node_modules/bin-build/node_modules/npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", + "optional": true, + "dependencies": { + "path-key": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/bin-build/node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/bin-build/node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "optional": true, + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/bin-build/node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/bin-build/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "optional": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/bin-check": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bin-check/-/bin-check-4.1.0.tgz", + "integrity": "sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA==", + "optional": true, + "dependencies": { + "execa": "^0.7.0", + "executable": "^4.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/bin-check/node_modules/cross-spawn": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", + "integrity": "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==", + "optional": true, + "dependencies": { + "lru-cache": "^4.0.1", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "node_modules/bin-check/node_modules/execa": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", + "integrity": "sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==", + "optional": true, + "dependencies": { + "cross-spawn": "^5.0.1", + "get-stream": "^3.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/bin-check/node_modules/get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/bin-check/node_modules/lru-cache": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", + "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", + "optional": true, + "dependencies": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + } + }, + "node_modules/bin-check/node_modules/npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", + "optional": true, + "dependencies": { + "path-key": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/bin-check/node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/bin-check/node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "optional": true, + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/bin-check/node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/bin-check/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "optional": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/bin-version": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/bin-version/-/bin-version-3.1.0.tgz", + "integrity": "sha512-Mkfm4iE1VFt4xd4vH+gx+0/71esbfus2LsnCGe8Pi4mndSPyT+NGES/Eg99jx8/lUGWfu3z2yuB/bt5UB+iVbQ==", + "optional": true, + "dependencies": { + "execa": "^1.0.0", + "find-versions": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/bin-version-check": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/bin-version-check/-/bin-version-check-4.0.0.tgz", + "integrity": "sha512-sR631OrhC+1f8Cvs8WyVWOA33Y8tgwjETNPyyD/myRBXLkfS/vl74FmH/lFcRl9KY3zwGh7jFhvyk9vV3/3ilQ==", + "optional": true, + "dependencies": { + "bin-version": "^3.0.0", + "semver": "^5.6.0", + "semver-truncate": "^1.1.2" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/bin-version/node_modules/cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "optional": true, + "dependencies": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "engines": { + "node": ">=4.8" + } + }, + "node_modules/bin-version/node_modules/execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "optional": true, + "dependencies": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/bin-version/node_modules/get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "optional": true, + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/bin-version/node_modules/npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", + "optional": true, + "dependencies": { + "path-key": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/bin-version/node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/bin-version/node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "optional": true, + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/bin-version/node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/bin-version/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "optional": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/bin-wrapper": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bin-wrapper/-/bin-wrapper-4.1.0.tgz", + "integrity": "sha512-hfRmo7hWIXPkbpi0ZltboCMVrU+0ClXR/JgbCKKjlDjQf6igXa7OwdqNcFWQZPZTgiY7ZpzE3+LjjkLiTN2T7Q==", + "optional": true, + "dependencies": { + "bin-check": "^4.1.0", + "bin-version-check": "^4.0.0", + "download": "^7.1.0", + "import-lazy": "^3.1.0", + "os-filter-obj": "^2.0.0", + "pify": "^4.0.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/bin-wrapper/node_modules/download": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/download/-/download-7.1.0.tgz", + "integrity": "sha512-xqnBTVd/E+GxJVrX5/eUJiLYjCGPwMpdL+jGhGU57BvtcA7wwhtHVbXBeUk51kOpW3S7Jn3BQbN9Q1R1Km2qDQ==", + "optional": true, + "dependencies": { + "archive-type": "^4.0.0", + "caw": "^2.0.1", + "content-disposition": "^0.5.2", + "decompress": "^4.2.0", + "ext-name": "^5.0.0", + "file-type": "^8.1.0", + "filenamify": "^2.0.0", + "get-stream": "^3.0.0", + "got": "^8.3.1", + "make-dir": "^1.2.0", + "p-event": "^2.1.0", + "pify": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/bin-wrapper/node_modules/download/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/bin-wrapper/node_modules/file-type": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-8.1.0.tgz", + "integrity": "sha512-qyQ0pzAy78gVoJsmYeNgl8uH8yKhr1lVhW7JbzJmnlRi0I4R2eEDEJZVKG8agpDnLpacwNbDhLNG/LMdxHD2YQ==", + "optional": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/bin-wrapper/node_modules/get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/bin-wrapper/node_modules/got": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/got/-/got-8.3.2.tgz", + "integrity": "sha512-qjUJ5U/hawxosMryILofZCkm3C84PLJS/0grRIpjAwu+Lkxxj5cxeCU25BG0/3mDSpXKTyZr8oh8wIgLaH0QCw==", + "optional": true, + "dependencies": { + "@sindresorhus/is": "^0.7.0", + "cacheable-request": "^2.1.1", + "decompress-response": "^3.3.0", + "duplexer3": "^0.1.4", + "get-stream": "^3.0.0", + "into-stream": "^3.1.0", + "is-retry-allowed": "^1.1.0", + "isurl": "^1.0.0-alpha5", + "lowercase-keys": "^1.0.0", + "mimic-response": "^1.0.0", + "p-cancelable": "^0.4.0", + "p-timeout": "^2.0.1", + "pify": "^3.0.0", + "safe-buffer": "^5.1.1", + "timed-out": "^4.0.1", + "url-parse-lax": "^3.0.0", + "url-to-options": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/bin-wrapper/node_modules/got/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/bin-wrapper/node_modules/p-cancelable": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.4.1.tgz", + "integrity": "sha512-HNa1A8LvB1kie7cERyy21VNeHb2CWJJYqyyC2o3klWFfMGlFmWv2Z7sFgZH8ZiaYL95ydToKTFVXgMV/Os0bBQ==", + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/bin-wrapper/node_modules/p-event": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/p-event/-/p-event-2.3.1.tgz", + "integrity": "sha512-NQCqOFhbpVTMX4qMe8PF8lbGtzZ+LCiN7pcNrb/413Na7+TRoe1xkKUzuWa/YEJdGQ0FvKtj35EEbDoVPO2kbA==", + "optional": true, + "dependencies": { + "p-timeout": "^2.0.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/bin-wrapper/node_modules/p-timeout": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-2.0.1.tgz", + "integrity": "sha512-88em58dDVB/KzPEx1X0N3LwFfYZPyDc4B6eF38M1rk9VTZMbxXXgjugz8mmwpS9Ox4BDZ+t6t3QP5+/gazweIA==", + "optional": true, + "dependencies": { + "p-finally": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/bin-wrapper/node_modules/prepend-http": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", + "integrity": "sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==", + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/bin-wrapper/node_modules/url-parse-lax": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz", + "integrity": "sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==", + "optional": true, + "dependencies": { + "prepend-http": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/bl": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/bl/-/bl-1.2.3.tgz", + "integrity": "sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww==", + "optional": true, + "dependencies": { + "readable-stream": "^2.3.5", + "safe-buffer": "^5.1.1" + } + }, + "node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "optional": true, + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/buffer-alloc": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz", + "integrity": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==", + "optional": true, + "dependencies": { + "buffer-alloc-unsafe": "^1.1.0", + "buffer-fill": "^1.0.0" + } + }, + "node_modules/buffer-alloc-unsafe": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz", + "integrity": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==", + "optional": true + }, + "node_modules/buffer-crc32": { + "version": "0.2.13", + "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", + "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", + "optional": true, + "engines": { + "node": "*" + } + }, + "node_modules/buffer-fill": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz", + "integrity": "sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ==", + "optional": true + }, + "node_modules/cacheable-request": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-2.1.4.tgz", + "integrity": "sha512-vag0O2LKZ/najSoUwDbVlnlCFvhBE/7mGTY2B5FgCBDcRD+oVV1HYTOwM6JZfMg/hIcM6IwnTZ1uQQL5/X3xIQ==", + "optional": true, + "dependencies": { + "clone-response": "1.0.2", + "get-stream": "3.0.0", + "http-cache-semantics": "3.8.1", + "keyv": "3.0.0", + "lowercase-keys": "1.0.0", + "normalize-url": "2.0.1", + "responselike": "1.0.2" + } + }, + "node_modules/cacheable-request/node_modules/get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/cacheable-request/node_modules/lowercase-keys": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.0.tgz", + "integrity": "sha512-RPlX0+PHuvxVDZ7xX+EBVAp4RsVxP/TdDSN2mJYdiq1Lc4Hz7EUSjUI7RZrKKlmrIzVhf6Jo2stj7++gVarS0A==", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/caw": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/caw/-/caw-2.0.1.tgz", + "integrity": "sha512-Cg8/ZSBEa8ZVY9HspcGUYaK63d/bN7rqS3CYCzEGUxuYv6UlmcjzDUz2fCFFHyTvUW5Pk0I+3hkA3iXlIj6guA==", + "optional": true, + "dependencies": { + "get-proxy": "^2.0.0", + "isurl": "^1.0.0-alpha5", + "tunnel-agent": "^0.6.0", + "url-to-options": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/clone-response": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz", + "integrity": "sha512-yjLXh88P599UOyPTFX0POsd7WxnbsVsGohcwzHOLspIhhpalPw1BcqED8NblyZLKcGrL8dTgMlcaZxV2jAD41Q==", + "optional": true, + "dependencies": { + "mimic-response": "^1.0.0" + } + }, + "node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "optional": true + }, + "node_modules/config-chain": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz", + "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==", + "optional": true, + "dependencies": { + "ini": "^1.3.4", + "proto-list": "~1.2.1" + } + }, + "node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "optional": true, + "dependencies": { + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "optional": true + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "optional": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/decode-uri-component": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", + "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==", + "optional": true, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/decompress": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/decompress/-/decompress-4.2.1.tgz", + "integrity": "sha512-e48kc2IjU+2Zw8cTb6VZcJQ3lgVbS4uuB1TfCHbiZIP/haNXm+SVyhu+87jts5/3ROpd82GSVCoNs/z8l4ZOaQ==", + "optional": true, + "dependencies": { + "decompress-tar": "^4.0.0", + "decompress-tarbz2": "^4.0.0", + "decompress-targz": "^4.0.0", + "decompress-unzip": "^4.0.1", + "graceful-fs": "^4.1.10", + "make-dir": "^1.0.0", + "pify": "^2.3.0", + "strip-dirs": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/decompress-response": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", + "integrity": "sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==", + "optional": true, + "dependencies": { + "mimic-response": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/decompress-tar": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/decompress-tar/-/decompress-tar-4.1.1.tgz", + "integrity": "sha512-JdJMaCrGpB5fESVyxwpCx4Jdj2AagLmv3y58Qy4GE6HMVjWz1FeVQk1Ct4Kye7PftcdOo/7U7UKzYBJgqnGeUQ==", + "optional": true, + "dependencies": { + "file-type": "^5.2.0", + "is-stream": "^1.1.0", + "tar-stream": "^1.5.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/decompress-tarbz2": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/decompress-tarbz2/-/decompress-tarbz2-4.1.1.tgz", + "integrity": "sha512-s88xLzf1r81ICXLAVQVzaN6ZmX4A6U4z2nMbOwobxkLoIIfjVMBg7TeguTUXkKeXni795B6y5rnvDw7rxhAq9A==", + "optional": true, + "dependencies": { + "decompress-tar": "^4.1.0", + "file-type": "^6.1.0", + "is-stream": "^1.1.0", + "seek-bzip": "^1.0.5", + "unbzip2-stream": "^1.0.9" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/decompress-tarbz2/node_modules/file-type": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-6.2.0.tgz", + "integrity": "sha512-YPcTBDV+2Tm0VqjybVd32MHdlEGAtuxS3VAYsumFokDSMG+ROT5wawGlnHDoz7bfMcMDt9hxuXvXwoKUx2fkOg==", + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/decompress-targz": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/decompress-targz/-/decompress-targz-4.1.1.tgz", + "integrity": "sha512-4z81Znfr6chWnRDNfFNqLwPvm4db3WuZkqV+UgXQzSngG3CEKdBkw5jrv3axjjL96glyiiKjsxJG3X6WBZwX3w==", + "optional": true, + "dependencies": { + "decompress-tar": "^4.1.1", + "file-type": "^5.2.0", + "is-stream": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/decompress-unzip": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/decompress-unzip/-/decompress-unzip-4.0.1.tgz", + "integrity": "sha512-1fqeluvxgnn86MOh66u8FjbtJpAFv5wgCT9Iw8rcBqQcCo5tO8eiJw7NNTrvt9n4CRBVq7CstiS922oPgyGLrw==", + "optional": true, + "dependencies": { + "file-type": "^3.8.0", + "get-stream": "^2.2.0", + "pify": "^2.3.0", + "yauzl": "^2.4.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/decompress-unzip/node_modules/file-type": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz", + "integrity": "sha512-RLoqTXE8/vPmMuTI88DAzhMYC99I8BWv7zYP4A1puo5HIjEJ5EX48ighy4ZyKMG9EDXxBgW6e++cn7d1xuFghA==", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decompress-unzip/node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decompress/node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/download": { + "version": "6.2.5", + "resolved": "https://registry.npmjs.org/download/-/download-6.2.5.tgz", + "integrity": "sha512-DpO9K1sXAST8Cpzb7kmEhogJxymyVUd5qz/vCOSyvwtp2Klj2XcDt5YUuasgxka44SxF0q5RriKIwJmQHG2AuA==", + "optional": true, + "dependencies": { + "caw": "^2.0.0", + "content-disposition": "^0.5.2", + "decompress": "^4.0.0", + "ext-name": "^5.0.0", + "file-type": "5.2.0", + "filenamify": "^2.0.0", + "get-stream": "^3.0.0", + "got": "^7.0.0", + "make-dir": "^1.0.0", + "p-event": "^1.0.0", + "pify": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/download/node_modules/get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/download/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/duplexer3": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.5.tgz", + "integrity": "sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==", + "optional": true + }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "optional": true, + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "optional": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/execa": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz", + "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==", + "optional": true, + "dependencies": { + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/execa/node_modules/get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "optional": true, + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/execa/node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "optional": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/executable": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/executable/-/executable-4.1.1.tgz", + "integrity": "sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==", + "optional": true, + "dependencies": { + "pify": "^2.2.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/executable/node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ext-list": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/ext-list/-/ext-list-2.2.2.tgz", + "integrity": "sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==", + "optional": true, + "dependencies": { + "mime-db": "^1.28.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ext-name": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ext-name/-/ext-name-5.0.0.tgz", + "integrity": "sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==", + "optional": true, + "dependencies": { + "ext-list": "^2.0.0", + "sort-keys-length": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/fd-slicer": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", + "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", + "optional": true, + "dependencies": { + "pend": "~1.2.0" + } + }, + "node_modules/file-type": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz", + "integrity": "sha512-Iq1nJ6D2+yIO4c8HHg4fyVb8mAJieo1Oloy1mLLaB2PvezNedhBVm+QU7g0qM42aiMbRXTxKKwGD17rjKNJYVQ==", + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/filename-reserved-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz", + "integrity": "sha512-lc1bnsSr4L4Bdif8Xb/qrtokGbq5zlsms/CYH8PP+WtCkGNF65DPiQY8vG3SakEdRn8Dlnm+gW/qWKKjS5sZzQ==", + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/filenamify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/filenamify/-/filenamify-2.1.0.tgz", + "integrity": "sha512-ICw7NTT6RsDp2rnYKVd8Fu4cr6ITzGy3+u4vUujPkabyaz+03F24NWEX7fs5fp+kBonlaqPH8fAO2NM+SXt/JA==", + "optional": true, + "dependencies": { + "filename-reserved-regex": "^2.0.0", + "strip-outer": "^1.0.0", + "trim-repeated": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/find-versions": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/find-versions/-/find-versions-3.2.0.tgz", + "integrity": "sha512-P8WRou2S+oe222TOCHitLy8zj+SIsVJh52VP4lvXkaFVnOFFdoWv1H1Jjvel1aI6NCFOAaeAVm8qrI0odiLcww==", + "optional": true, + "dependencies": { + "semver-regex": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/from2": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", + "integrity": "sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==", + "optional": true, + "dependencies": { + "inherits": "^2.0.1", + "readable-stream": "^2.0.0" + } + }, + "node_modules/fs-constants": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", + "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", + "optional": true + }, + "node_modules/get-proxy": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/get-proxy/-/get-proxy-2.1.0.tgz", + "integrity": "sha512-zmZIaQTWnNQb4R4fJUEp/FC51eZsc6EkErspy3xtIYStaq8EB/hDIWipxsal+E8rz0qD7f2sL/NA9Xee4RInJw==", + "optional": true, + "dependencies": { + "npm-conf": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/get-stream": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-2.3.1.tgz", + "integrity": "sha512-AUGhbbemXxrZJRD5cDvKtQxLuYaIbNtDTK8YqupCI393Q2KSTreEsLUN3ZxAWFGiKTzL6nKuzfcIvieflUX9qA==", + "optional": true, + "dependencies": { + "object-assign": "^4.0.1", + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/got": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/got/-/got-7.1.0.tgz", + "integrity": "sha512-Y5WMo7xKKq1muPsxD+KmrR8DH5auG7fBdDVueZwETwV6VytKyU9OX/ddpq2/1hp1vIPvVb4T81dKQz3BivkNLw==", + "optional": true, + "dependencies": { + "decompress-response": "^3.2.0", + "duplexer3": "^0.1.4", + "get-stream": "^3.0.0", + "is-plain-obj": "^1.1.0", + "is-retry-allowed": "^1.0.0", + "is-stream": "^1.0.0", + "isurl": "^1.0.0-alpha5", + "lowercase-keys": "^1.0.0", + "p-cancelable": "^0.3.0", + "p-timeout": "^1.1.1", + "safe-buffer": "^5.0.1", + "timed-out": "^4.0.0", + "url-parse-lax": "^1.0.0", + "url-to-options": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/got/node_modules/get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "optional": true + }, + "node_modules/has-symbol-support-x": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz", + "integrity": "sha512-3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw==", + "optional": true, + "engines": { + "node": "*" + } + }, + "node_modules/has-to-string-tag-x": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz", + "integrity": "sha512-vdbKfmw+3LoOYVr+mtxHaX5a96+0f3DljYd8JOqvOLsf5mw2Otda2qCDT9qRqLAhrjyQ0h7ual5nOiASpsGNFw==", + "optional": true, + "dependencies": { + "has-symbol-support-x": "^1.4.1" + }, + "engines": { + "node": "*" + } + }, + "node_modules/http-cache-semantics": { + "version": "3.8.1", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz", + "integrity": "sha512-5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w==", + "optional": true + }, + "node_modules/human-signals": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz", + "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==", + "optional": true, + "engines": { + "node": ">=8.12.0" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "optional": true + }, + "node_modules/import-lazy": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-3.1.0.tgz", + "integrity": "sha512-8/gvXvX2JMn0F+CDlSC4l6kOmVaLOO3XLkksI7CI3Ud95KDYJuYur2b9P/PUt/i/pDAMd/DulQsNbbbmRRsDIQ==", + "optional": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "optional": true + }, + "node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "optional": true + }, + "node_modules/into-stream": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/into-stream/-/into-stream-3.1.0.tgz", + "integrity": "sha512-TcdjPibTksa1NQximqep2r17ISRiNE9fwlfbg3F8ANdvP5/yrFTew86VcO//jk4QTaMlbjypPBq76HN2zaKfZQ==", + "optional": true, + "dependencies": { + "from2": "^2.1.1", + "p-is-promise": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/is-natural-number": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/is-natural-number/-/is-natural-number-4.0.1.tgz", + "integrity": "sha512-Y4LTamMe0DDQIIAlaer9eKebAlDSV6huy+TWhJVPlzZh2o4tRP5SQWFlLn5N0To4mDD22/qdOq+veo1cSISLgQ==", + "optional": true + }, + "node_modules/is-object": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-object/-/is-object-1.0.2.tgz", + "integrity": "sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==", + "optional": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-retry-allowed": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz", + "integrity": "sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "optional": true + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" + }, + "node_modules/isurl": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isurl/-/isurl-1.0.0.tgz", + "integrity": "sha512-1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w==", + "optional": true, + "dependencies": { + "has-to-string-tag-x": "^1.2.0", + "is-object": "^1.0.1" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/json-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz", + "integrity": "sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==", + "optional": true + }, + "node_modules/keyv": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.0.0.tgz", + "integrity": "sha512-eguHnq22OE3uVoSYG0LVWNP+4ppamWr9+zWBe1bsNcovIMy6huUJFPgy4mGwCd/rnl3vOLGW1MTlu4c57CT1xA==", + "optional": true, + "dependencies": { + "json-buffer": "3.0.0" + } + }, + "node_modules/lowercase-keys": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", + "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/lru-cache": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.5.0.tgz", + "integrity": "sha512-dVmQmXPBlTgFw77hm60ud//l2bCuDKkqC2on1EBoM7s9Urm9IQDrnujwZ93NFnAq0dVZ0HBXTS7PwEG+YE7+EQ==" + }, + "node_modules/make-dir": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", + "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", + "optional": true, + "dependencies": { + "pify": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/make-dir/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/memoizeasync": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/memoizeasync/-/memoizeasync-1.1.0.tgz", + "integrity": "sha512-HMfzdLqClZo8HMyuM9B6TqnXCNhw82iVWRLqd2cAdXi063v2iJB4mQfWFeKVByN8VUwhmDZ8NMhryBwKrPRf8Q==", + "dependencies": { + "lru-cache": "2.5.0", + "passerror": "1.1.1" + } + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "optional": true + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "optional": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "optional": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/mimic-response": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", + "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", + "optional": true + }, + "node_modules/normalize-url": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-2.0.1.tgz", + "integrity": "sha512-D6MUW4K/VzoJ4rJ01JFKxDrtY1v9wrgzCX5f2qj/lzH1m/lW6MhUZFKerVsnyjOhOsYzI9Kqqak+10l4LvLpMw==", + "optional": true, + "dependencies": { + "prepend-http": "^2.0.0", + "query-string": "^5.0.1", + "sort-keys": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/normalize-url/node_modules/prepend-http": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", + "integrity": "sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==", + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/normalize-url/node_modules/sort-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-2.0.0.tgz", + "integrity": "sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==", + "optional": true, + "dependencies": { + "is-plain-obj": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/npm-conf": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/npm-conf/-/npm-conf-1.1.3.tgz", + "integrity": "sha512-Yic4bZHJOt9RCFbRP3GgpqhScOY4HH3V2P8yBj6CeYq118Qr+BLXqT2JvpJ00mryLESpgOxf5XlFv4ZjXxLScw==", + "optional": true, + "dependencies": { + "config-chain": "^1.1.11", + "pify": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/npm-conf/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "optional": true, + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "optional": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "optional": true, + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/os-filter-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/os-filter-obj/-/os-filter-obj-2.0.0.tgz", + "integrity": "sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg==", + "optional": true, + "dependencies": { + "arch": "^2.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/p-cancelable": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.3.0.tgz", + "integrity": "sha512-RVbZPLso8+jFeq1MfNvgXtCRED2raz/dKpacfTNxsx6pLEpEomM7gah6VeHSYV3+vo0OAi4MkArtQcWWXuQoyw==", + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/p-event": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-event/-/p-event-1.3.0.tgz", + "integrity": "sha512-hV1zbA7gwqPVFcapfeATaNjQ3J0NuzorHPyG8GPL9g/Y/TplWVBVoCKCXL6Ej2zscrCEv195QNWJXuBH6XZuzA==", + "optional": true, + "dependencies": { + "p-timeout": "^1.1.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/p-is-promise": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-1.1.0.tgz", + "integrity": "sha512-zL7VE4JVS2IFSkR2GQKDSPEVxkoH43/p7oEnwpdCndKYJO0HVeRB7fA8TJwuLOTBREtK0ea8eHaxdwcpob5dmg==", + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/p-map-series": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-map-series/-/p-map-series-1.0.0.tgz", + "integrity": "sha512-4k9LlvY6Bo/1FcIdV33wqZQES0Py+iKISU9Uc8p8AjWoZPnFKMpVIVD3s0EYn4jzLh1I+WeUZkJ0Yoa4Qfw3Kg==", + "optional": true, + "dependencies": { + "p-reduce": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/p-reduce": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-reduce/-/p-reduce-1.0.0.tgz", + "integrity": "sha512-3Tx1T3oM1xO/Y8Gj0sWyE78EIJZ+t+aEmXUdvQgvGmSMri7aPTHoovbXEreWKkL5j21Er60XAWLTzKbAKYOujQ==", + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/p-timeout": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-1.2.1.tgz", + "integrity": "sha512-gb0ryzr+K2qFqFv6qi3khoeqMZF/+ajxQipEF6NteZVnvz9tzdsfAVj3lYtn1gAXvH5lfLwfxEII799gt/mRIA==", + "optional": true, + "dependencies": { + "p-finally": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/passerror": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/passerror/-/passerror-1.1.1.tgz", + "integrity": "sha512-PwrEQJBkJMxnxG+tdraz95vTstYnCRqiURNbGtg/vZHLgcAODc9hbiD5ZumGUoh3bpw0F0qKLje7Vd2Fd5Lx3g==", + "engines": { + "node": "*" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "optional": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/pend": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", + "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==", + "optional": true + }, + "node_modules/pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "optional": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", + "optional": true, + "dependencies": { + "pinkie": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pngquant": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pngquant/-/pngquant-4.2.0.tgz", + "integrity": "sha512-MTwjMjf8++Z6UxxTrez/A3zXGk29KgpZa1U9tktNqYQvMhJFK5Uq1pr7rLcWQNMG3U19S48SV2ncS0q0dCIV+Q==", + "dependencies": { + "memoizeasync": "1.1.0", + "which": "2.0.2" + }, + "optionalDependencies": { + "pngquant-bin": "^6.0.1" + } + }, + "node_modules/pngquant-bin": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/pngquant-bin/-/pngquant-bin-6.0.1.tgz", + "integrity": "sha512-Q3PUyolfktf+hYio6wsg3SanQzEU/v8aICg/WpzxXcuCMRb7H2Q81okfpcEztbMvw25ILjd3a87doj2N9kvbpQ==", + "hasInstallScript": true, + "optional": true, + "dependencies": { + "bin-build": "^3.0.0", + "bin-wrapper": "^4.0.1", + "execa": "^4.0.0" + }, + "bin": { + "pngquant": "cli.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/prepend-http": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", + "integrity": "sha512-PhmXi5XmoyKw1Un4E+opM2KcsJInDvKyuOumcjjw3waw86ZNjHwVUOOWLc4bCzLdcKNaWBH9e99sbWzDQsVaYg==", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "optional": true + }, + "node_modules/proto-list": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", + "integrity": "sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==", + "optional": true + }, + "node_modules/pseudomap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", + "integrity": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==", + "optional": true + }, + "node_modules/pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "optional": true, + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/query-string": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/query-string/-/query-string-5.1.1.tgz", + "integrity": "sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==", + "optional": true, + "dependencies": { + "decode-uri-component": "^0.2.0", + "object-assign": "^4.1.0", + "strict-uri-encode": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "optional": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/readable-stream/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "optional": true + }, + "node_modules/responselike": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", + "integrity": "sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==", + "optional": true, + "dependencies": { + "lowercase-keys": "^1.0.0" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "optional": true + }, + "node_modules/seek-bzip": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/seek-bzip/-/seek-bzip-1.0.6.tgz", + "integrity": "sha512-e1QtP3YL5tWww8uKaOCQ18UxIT2laNBXHjV/S2WYCiK4udiv8lkG89KRIoCjUagnAmCBurjF4zEVX2ByBbnCjQ==", + "optional": true, + "dependencies": { + "commander": "^2.8.1" + }, + "bin": { + "seek-bunzip": "bin/seek-bunzip", + "seek-table": "bin/seek-bzip-table" + } + }, + "node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "optional": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/semver-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/semver-regex/-/semver-regex-2.0.0.tgz", + "integrity": "sha512-mUdIBBvdn0PLOeP3TEkMH7HHeUP3GjsXCwKarjv/kGmUFOYg1VqEemKhoQpWMu6X2I8kHeuVdGibLGkVK+/5Qw==", + "optional": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/semver-truncate": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/semver-truncate/-/semver-truncate-1.1.2.tgz", + "integrity": "sha512-V1fGg9i4CL3qesB6U0L6XAm4xOJiHmt4QAacazumuasc03BvtFGIMCduv01JWQ69Nv+JST9TqhSCiJoxoY031w==", + "optional": true, + "dependencies": { + "semver": "^5.3.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "optional": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "optional": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "optional": true + }, + "node_modules/sort-keys": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz", + "integrity": "sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==", + "optional": true, + "dependencies": { + "is-plain-obj": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sort-keys-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/sort-keys-length/-/sort-keys-length-1.0.1.tgz", + "integrity": "sha512-GRbEOUqCxemTAk/b32F2xa8wDTs+Z1QHOkbhJDQTvv/6G3ZkbJ+frYWsTcc7cBB3Fu4wy4XlLCuNtJuMn7Gsvw==", + "optional": true, + "dependencies": { + "sort-keys": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strict-uri-encode": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", + "integrity": "sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ==", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "optional": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/string_decoder/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "optional": true + }, + "node_modules/strip-dirs": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/strip-dirs/-/strip-dirs-2.1.0.tgz", + "integrity": "sha512-JOCxOeKLm2CAS73y/U4ZeZPTkE+gNVCzKt7Eox84Iej1LT/2pTWYpZKJuxwQpvX1LiZb1xokNR7RLfuBAa7T3g==", + "optional": true, + "dependencies": { + "is-natural-number": "^4.0.1" + } + }, + "node_modules/strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "optional": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/strip-outer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/strip-outer/-/strip-outer-1.0.1.tgz", + "integrity": "sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==", + "optional": true, + "dependencies": { + "escape-string-regexp": "^1.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/tar-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.6.2.tgz", + "integrity": "sha512-rzS0heiNf8Xn7/mpdSVVSMAWAoy9bfb1WOTYC78Z0UQKeKa/CWS8FOq0lKGNa8DWKAn9gxjCvMLYc5PGXYlK2A==", + "optional": true, + "dependencies": { + "bl": "^1.0.0", + "buffer-alloc": "^1.2.0", + "end-of-stream": "^1.0.0", + "fs-constants": "^1.0.0", + "readable-stream": "^2.3.0", + "to-buffer": "^1.1.1", + "xtend": "^4.0.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/temp-dir": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-1.0.0.tgz", + "integrity": "sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==", + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/tempfile": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/tempfile/-/tempfile-2.0.0.tgz", + "integrity": "sha512-ZOn6nJUgvgC09+doCEF3oB+r3ag7kUvlsXEGX069QRD60p+P3uP7XG9N2/at+EyIRGSN//ZY3LyEotA1YpmjuA==", + "optional": true, + "dependencies": { + "temp-dir": "^1.0.0", + "uuid": "^3.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", + "optional": true + }, + "node_modules/timed-out": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz", + "integrity": "sha512-G7r3AhovYtr5YKOWQkta8RKAPb+J9IsO4uVmzjl8AZwfhs8UcUwTiD6gcJYSgOtzyjvQKrKYn41syHbUWMkafA==", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-buffer": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/to-buffer/-/to-buffer-1.1.1.tgz", + "integrity": "sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg==", + "optional": true + }, + "node_modules/trim-repeated": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/trim-repeated/-/trim-repeated-1.0.0.tgz", + "integrity": "sha512-pkonvlKk8/ZuR0D5tLW8ljt5I8kmxp2XKymhepUeOdCEfKpZaktSArkLHZt76OB1ZvO9bssUsDty4SWhLvZpLg==", + "optional": true, + "dependencies": { + "escape-string-regexp": "^1.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", + "optional": true, + "dependencies": { + "safe-buffer": "^5.0.1" + }, + "engines": { + "node": "*" + } + }, + "node_modules/unbzip2-stream": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz", + "integrity": "sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==", + "optional": true, + "dependencies": { + "buffer": "^5.2.1", + "through": "^2.3.8" + } + }, + "node_modules/url-parse-lax": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz", + "integrity": "sha512-BVA4lR5PIviy2PMseNd2jbFQ+jwSwQGdJejf5ctd1rEXt0Ypd7yanUK9+lYechVlN5VaTJGsu2U/3MDDu6KgBA==", + "optional": true, + "dependencies": { + "prepend-http": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/url-to-options": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/url-to-options/-/url-to-options-1.0.1.tgz", + "integrity": "sha512-0kQLIzG4fdk/G5NONku64rSH/x32NOA39LVQqlK8Le6lvTF6GGRJpqaQFGgU+CLwySIqBSMdwYM0sYcW9f6P4A==", + "optional": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "optional": true + }, + "node_modules/uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", + "optional": true, + "bin": { + "uuid": "bin/uuid" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "optional": true + }, + "node_modules/xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "optional": true, + "engines": { + "node": ">=0.4" + } + }, + "node_modules/yallist": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==", + "optional": true + }, + "node_modules/yauzl": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", + "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", + "optional": true, + "dependencies": { + "buffer-crc32": "~0.2.3", + "fd-slicer": "~1.1.0" + } + } + } +} diff --git a/package.json b/package.json index 5020036..cd6c816 100644 --- a/package.json +++ b/package.json @@ -1,10 +1,13 @@ { "name": "@resf/rocky-linux-docs", - "version": "1.0.0", + "version": "2.0.0", "private": true, "scripts": { "load-docs": "rm -rf docs; git clone https://github.com/rocky-linux/documentation docs", "dev": "mkdocs serve", - "build": "pip install 'urllib3<2' && mkdocs build -d public" + "build": "bash setup-deps.sh && bash build-all.sh && bash deploy.sh" + }, + "dependencies": { + "pngquant": "^4.2.0" } } diff --git a/requirements.txt b/requirements.txt index 4815262..79c7380 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,9 +1,9 @@ mkdocs mkdocs-awesome-pages-plugin mkdocs-git-revision-date-localized-plugin -mkdocs-localsearch mkdocs-material mkdocs-redirects mkdocs-static-i18n mkdocs-material[imaging] +mkdocs-minify-plugin jieba diff --git a/setup-deps.sh b/setup-deps.sh new file mode 100644 index 0000000..7d05637 --- /dev/null +++ b/setup-deps.sh @@ -0,0 +1,29 @@ +#!/bin/bash + +cleanup() { + echo -e "\nScript interrupted. Exiting..." + exit 1 +} + +trap cleanup INT + +pip install 'urllib3<2' yq +pip install -r requirements.txt + +# Only install insiders package if it's available +if [[ -n "$GH_TOKEN" ]]; then + pip install "git+https://${GH_TOKEN}@github.com/squidfunk/mkdocs-material-insiders.git" +fi + +test -d compute-js/bin || mkdir compute-js/bin +test -x compute-js/bin/fastly || ( curl -L https://github.com/fastly/cli/releases/download/v10.8.3/fastly_v10.8.3_linux-amd64.tar.gz | tar -xzf /dev/stdin -C compute-js/bin/ ) + +# mkdocs optimize plugin requires pngquant +npm install pngquant + +# minify for reducing deployment size +test -x compute-js/bin/minify || (curl -L https://github.com/tdewolff/minify/releases/download/v2.20.18/minify_linux_amd64.tar.gz | tar -C compute-js/bin/ -xz minify) + +# jq (for yq) +test -x compute-js/bin/jq || curl -L https://github.com/jqlang/jq/releases/download/jq-1.7.1/jq-linux-amd64 -o compute-js/bin/jq +chmod +x compute-js/bin/jq diff --git a/vercel.json b/vercel.json index 1e9c7bc..7f37ce5 100644 --- a/vercel.json +++ b/vercel.json @@ -1,3 +1,4 @@ { - "trailingSlash": true + "trailingSlash": true, + "outputDirectory": "build/site" } From 10be481201279bb56a2078b2b3f5adb01e352b3f Mon Sep 17 00:00:00 2001 From: Neil Hanlon Date: Mon, 26 Feb 2024 22:35:56 -0500 Subject: [PATCH 2/6] need to install deps --- deploy.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/deploy.sh b/deploy.sh index 9195a0e..99fc0e2 100644 --- a/deploy.sh +++ b/deploy.sh @@ -22,6 +22,7 @@ if [[ -z $FASTLY_SERVICE_ID ]]; then fi pushd compute-js || exit $? +npm install $FASTLY compute build || exit $? $FASTLY compute deploy -p pkg/resf-rocky-linux-docs.tar.gz From a681bb6fb0a76e064bd28da1bdff6678081b3bf3 Mon Sep 17 00:00:00 2001 From: Neil Hanlon Date: Mon, 26 Feb 2024 22:23:00 -0500 Subject: [PATCH 3/6] use fork of static-publisher; add caching --- compute-js/.npmrc | 2 ++ compute-js/package-lock.json | 12 +++----- compute-js/package.json | 2 +- compute-js/src/index.js | 54 ++++++++++++++++++--------------- compute-js/static-publish.rc.js | 6 ++-- deploy.sh | 2 +- package.json | 4 ++- 7 files changed, 44 insertions(+), 38 deletions(-) create mode 100644 compute-js/.npmrc diff --git a/compute-js/.npmrc b/compute-js/.npmrc new file mode 100644 index 0000000..859abf7 --- /dev/null +++ b/compute-js/.npmrc @@ -0,0 +1,2 @@ +# temporarily override until https://github.com/fastly/compute-js-static-publish/pull/13 is merged +npm config set @fastly:registry https://git.resf.org/api/packages/sig_core/npm/ diff --git a/compute-js/package-lock.json b/compute-js/package-lock.json index ec89673..90953d6 100644 --- a/compute-js/package-lock.json +++ b/compute-js/package-lock.json @@ -12,7 +12,7 @@ "@fastly/js-compute": "^3.0.0" }, "devDependencies": { - "@fastly/compute-js-static-publish": "6.0.0" + "@fastly/compute-js-static-publish": "^6.0.2" }, "engines": { "node": ">=18.0.0" @@ -485,10 +485,11 @@ } }, "node_modules/@fastly/compute-js-static-publish": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/@fastly/compute-js-static-publish/-/compute-js-static-publish-6.0.0.tgz", - "integrity": "sha512-Y/BXpnUrJRWHVHZ/PuiTjhm7DTrLcft0wvmmyOKQz1iRLypjwSrxWKPLI5MbezzVHskjRUQsF1CJ6myBnJ39BA==", + "version": "6.0.2", + "resolved": "https://git.resf.org/api/packages/sig_core/npm/%40fastly%2Fcompute-js-static-publish/-/6.0.2/compute-js-static-publish-6.0.2.tgz", + "integrity": "sha512-EMLX54rg4wq6427rrv2ToXxBYdwvfC/3gl18LSoKfOjF9Wn3WiQF54Pi11uR3LUYG4Vmqsh9f3y96RKBylbtIA==", "dev": true, + "license": "MIT", "dependencies": { "command-line-args": "^5.2.1", "glob-to-regexp": "^0.4.1" @@ -496,9 +497,6 @@ "bin": { "compute-js-static-publish": "build/cli/index.js" }, - "engines": { - "node": ">=18" - }, "peerDependencies": { "@fastly/js-compute": "^2.0.0 || ^3.0.0" } diff --git a/compute-js/package.json b/compute-js/package.json index 54e9956..12a4d52 100644 --- a/compute-js/package.json +++ b/compute-js/package.json @@ -5,7 +5,7 @@ "author": "neil@resf.org", "type": "module", "devDependencies": { - "@fastly/compute-js-static-publish": "6.0.0" + "@fastly/compute-js-static-publish": "^6.0.1" }, "dependencies": { "@fastly/js-compute": "^3.0.0" diff --git a/compute-js/src/index.js b/compute-js/src/index.js index c7f3382..a563fb4 100644 --- a/compute-js/src/index.js +++ b/compute-js/src/index.js @@ -15,57 +15,61 @@ addEventListener("fetch", (event) => event.respondWith(handleRequest(event))); async function handleRequest(event) { const originalRequest = event.request; const url = new URL(event.request.url); - const path = url.pathname; + let path = url.pathname; const logger = new Logger("JavaScriptLog"); function doLog(msg) { - console.log("[" + path + "]" + msg); - logger.log("[" + path + "]" + msg); + console.log("[" + path + "] " + msg); + logger.log("[" + path + "] " + msg); } + let cacheOverride = new CacheOverride("override", { + swr: '600', // stale while revalidate + surrogateKey: 'docs', + ttl: 21600, + }); + // Check if the requested path has a locale slug (e.g., /fr/) const localeRegex = /\/(af|de|fr|es|id|it|ja|ko|zh|sv|tr|pl|pt|pt-BR|ru|uk)\// const hasLocaleSlug = localeRegex.test(path); + var beresp; + // If there's a locale slug, try serving the translation if (hasLocaleSlug) { doLog("Attempting to serve localized page for " + path); - var response = await staticContentServer.serveRequest(event.request); - if (response == null || response.status > 400) { - doLog("Failed to serve localized page. Attempting to serve page from Vercel"); - // let cacheOverride = new CacheOverride("override", { ttl: 60 }); - response = await fetch(event.request, { backend: backendName }); - doLog("[vercel] " +response.url+"|"+response.status); - if (response != null && response.status < 400) { - doLog("Fetched localized content from Vercel"); - return response + beresp = await staticContentServer.serveRequest(event.request, 'public, max-age=21600, stale-while-revalidate=600'); + if (beresp == null || beresp.status > 400) { + // doLog("Failed to serve localized page. Attempting to serve page from Vercel"); + beresp = await fetch(event.request, {backend: backendName, cacheOverride}); + // doLog("[vercel] " +beresp.url+"|"+beresp.status); + if (beresp != null && beresp.status < 400) { + doLog("Localized content fetched from Vercel"); + return beresp } } } - doLog("begin default route handling"); // If no translation is found or there's no locale slug, serve the English version - const englishPath = path.replace(localeRegex, '/'); - const englishRequest = new Request(url.origin + englishPath); - const englishResponse = await staticContentServer.serveRequest(englishRequest); + path = hasLocaleSlug ? path.replace(localeRegex, '/') : path; + const bereq = new Request(url.origin + path); + beresp = await staticContentServer.serveRequest(bereq, 'public, max-age=21600, stale-while-revalidate=600'); - if (englishResponse != null && englishResponse.status < 400) { - doLog("fetched content from edge cache"); - return englishResponse; + if (beresp != null && beresp.status < 400) { + doLog("Static content fetched from edge cache"); + return beresp; } - doLog("failed to fetch content from edge cache; attempt to serve from vercel"); // If we **still** can't find the artifact, try to find it on docs.r.o for the user, I guess // let cacheOverride = new CacheOverride("override", { ttl: 60 }); - response = await fetch(originalRequest, { backend: backendName }); + beresp = await fetch(originalRequest, {backend: backendName, cacheOverride}); - if (response != null && response.status < 400) { - doLog("fetched content from vercel"); - return response + if (beresp != null && beresp.status < 400) { + doLog("content fetched from vercel (fallback)"); + return beresp } - doLog("request failed. return 404"); // If neither translation nor English version is found, return a 404 response return new Response('Not found', { status: 404 }); } diff --git a/compute-js/static-publish.rc.js b/compute-js/static-publish.rc.js index 0af6195..9b6a2a3 100644 --- a/compute-js/static-publish.rc.js +++ b/compute-js/static-publish.rc.js @@ -14,15 +14,15 @@ const config = { // excludeDotFiles: true, // includeWellKnown: true, // contentAssetInclusionTest: (filename) => true, - // contentCompression: [ 'br', 'gzip' ], // For this config value, default is [] if kvStoreName is null. + // contentCompression: [ 'br' ], // For this config value, default is [] if kvStoreName is null. // moduleAssetInclusionTest: (filename) => false, // contentTypes: [ // { test: /.custom$/, contentType: 'application/x-custom', text: false }, // ], server: { publicDirPrefix: "", - staticItems: ["search/search_index.json"], - staticDir: "../build/minified/assets", + staticItems: ["/search/search_index.json"], + staticDir: "../build/minified/site/assets", // compression: [ 'br', 'gzip' ], spaFile: false, notFoundPageFile: "/404.html", diff --git a/deploy.sh b/deploy.sh index 99fc0e2..743cb46 100644 --- a/deploy.sh +++ b/deploy.sh @@ -24,6 +24,6 @@ fi pushd compute-js || exit $? npm install $FASTLY compute build || exit $? -$FASTLY compute deploy -p pkg/resf-rocky-linux-docs.tar.gz +$FASTLY compute deploy -p pkg/resf-rocky-linux-docs.tar.gz || exit $? popd || exit diff --git a/package.json b/package.json index cd6c816..81cdfbe 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,9 @@ "scripts": { "load-docs": "rm -rf docs; git clone https://github.com/rocky-linux/documentation docs", "dev": "mkdocs serve", - "build": "bash setup-deps.sh && bash build-all.sh && bash deploy.sh" + "prebuild": "bash setup-deps.sh", + "build": "bash build-all.sh", + "postbuild": "bash deploy.sh" }, "dependencies": { "pngquant": "^4.2.0" From 71afe57f51a93215cf544e74a278e6b7a0166dbf Mon Sep 17 00:00:00 2001 From: Neil Hanlon Date: Tue, 27 Feb 2024 22:15:10 -0500 Subject: [PATCH 4/6] use kv store instead of embedding in wasm --- .gitignore | 2 ++ compute-js/fastly.toml | 4 +++- compute-js/package-lock.json | 8 +++---- compute-js/package.json | 2 +- compute-js/src/index.js | 42 ++++++++++++++++++--------------- compute-js/static-publish.rc.js | 4 ++-- 6 files changed, 35 insertions(+), 27 deletions(-) diff --git a/.gitignore b/.gitignore index 98e3eef..e437981 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,5 @@ docs/ # dev envrc .envrc.local + +node_modules/ diff --git a/compute-js/fastly.toml b/compute-js/fastly.toml index 68093e9..634c406 100644 --- a/compute-js/fastly.toml +++ b/compute-js/fastly.toml @@ -7,7 +7,7 @@ language = "javascript" manifest_version = 2 name = "@resf/rocky-linux-docs" service_id = "lACFUzQjUGLnZsvoHgcnx6" -# kv_store_name = "mkdocs" +kv_store_name = "docs.rockylinux.org" [scripts] build = "npm run build" @@ -17,3 +17,5 @@ service_id = "lACFUzQjUGLnZsvoHgcnx6" [local_server.backends.docs-vercel] url = "https://cname.vercel-dns.com/" override_host = "docs.rockylinux.org" + [local_server.kv_stores] + [[local_server.kv_stores."docs.rockylinux.org"]] diff --git a/compute-js/package-lock.json b/compute-js/package-lock.json index 90953d6..72f013f 100644 --- a/compute-js/package-lock.json +++ b/compute-js/package-lock.json @@ -12,7 +12,7 @@ "@fastly/js-compute": "^3.0.0" }, "devDependencies": { - "@fastly/compute-js-static-publish": "^6.0.2" + "@fastly/compute-js-static-publish": "^6.0.3" }, "engines": { "node": ">=18.0.0" @@ -485,9 +485,9 @@ } }, "node_modules/@fastly/compute-js-static-publish": { - "version": "6.0.2", - "resolved": "https://git.resf.org/api/packages/sig_core/npm/%40fastly%2Fcompute-js-static-publish/-/6.0.2/compute-js-static-publish-6.0.2.tgz", - "integrity": "sha512-EMLX54rg4wq6427rrv2ToXxBYdwvfC/3gl18LSoKfOjF9Wn3WiQF54Pi11uR3LUYG4Vmqsh9f3y96RKBylbtIA==", + "version": "6.0.3", + "resolved": "https://git.resf.org/api/packages/sig_core/npm/%40fastly%2Fcompute-js-static-publish/-/6.0.3/compute-js-static-publish-6.0.3.tgz", + "integrity": "sha512-rUioUnt2KhQ4dqfeGQQUrmsog75Yx6x2854sm3X4+wsVkRGrwXWihkY3sHdDZUmBxmCi/JQrFsYP1gr/8fUI3g==", "dev": true, "license": "MIT", "dependencies": { diff --git a/compute-js/package.json b/compute-js/package.json index 12a4d52..4514872 100644 --- a/compute-js/package.json +++ b/compute-js/package.json @@ -5,7 +5,7 @@ "author": "neil@resf.org", "type": "module", "devDependencies": { - "@fastly/compute-js-static-publish": "^6.0.1" + "@fastly/compute-js-static-publish": "^6.0.3" }, "dependencies": { "@fastly/js-compute": "^3.0.0" diff --git a/compute-js/src/index.js b/compute-js/src/index.js index a563fb4..9af5e60 100644 --- a/compute-js/src/index.js +++ b/compute-js/src/index.js @@ -1,27 +1,32 @@ /// import { getServer } from '../static-publisher/statics.js'; import { CacheOverride } from "fastly:cache-override"; -// import { allowDynamicBackends } from "fastly:experimental"; -// -// allowDynamicBackends(true); +// import { SimpleCache } from 'fastly:cache'; + const staticContentServer = getServer(); const backendName = "docs-vercel"; import { Logger } from "fastly:logger"; +import { env } from "fastly:env"; // eslint-disable-next-line no-restricted-globals addEventListener("fetch", (event) => event.respondWith(handleRequest(event))); async function handleRequest(event) { const originalRequest = event.request; - const url = new URL(event.request.url); - let path = url.pathname; + const url = new URL(originalRequest.url); + const path = url.pathname; const logger = new Logger("JavaScriptLog"); - function doLog(msg) { - console.log("[" + path + "] " + msg); - logger.log("[" + path + "] " + msg); + const region = env("FASTLY_REGION"); + const devMode = region === "Somewhere" ? true : false; + + async function debugLog(msg) { + if (devMode) { + console.log("[" + path + "] " + msg); + logger.log("[" + path + "] " + msg); + } } let cacheOverride = new CacheOverride("override", { @@ -38,36 +43,35 @@ async function handleRequest(event) { // If there's a locale slug, try serving the translation if (hasLocaleSlug) { - doLog("Attempting to serve localized page for " + path); + debugLog("Attempting to serve localized page for " + path); beresp = await staticContentServer.serveRequest(event.request, 'public, max-age=21600, stale-while-revalidate=600'); if (beresp == null || beresp.status > 400) { // doLog("Failed to serve localized page. Attempting to serve page from Vercel"); beresp = await fetch(event.request, {backend: backendName, cacheOverride}); // doLog("[vercel] " +beresp.url+"|"+beresp.status); if (beresp != null && beresp.status < 400) { - doLog("Localized content fetched from Vercel"); - return beresp + debugLog("Localized content fetched from Vercel"); + return beresp; } } } // If no translation is found or there's no locale slug, serve the English version - path = hasLocaleSlug ? path.replace(localeRegex, '/') : path; + fallbackPath = hasLocaleSlug ? path.replace(localeRegex, '/') : path; const bereq = new Request(url.origin + path); - beresp = await staticContentServer.serveRequest(bereq, 'public, max-age=21600, stale-while-revalidate=600'); - - if (beresp != null && beresp.status < 400) { - doLog("Static content fetched from edge cache"); + beresp = await staticContentServer.serveRequest(bereq, 'public, max-age=21600, stale-while-revalidate=600') + if (beresp != null && beresp.ok) { + debugLog("Static content fetched from edge cache"); return beresp; } + // If we **still** can't find the artifact, try to find it on docs.r.o for the user, I guess - // let cacheOverride = new CacheOverride("override", { ttl: 60 }); beresp = await fetch(originalRequest, {backend: backendName, cacheOverride}); if (beresp != null && beresp.status < 400) { - doLog("content fetched from vercel (fallback)"); - return beresp + debugLog("content fetched from vercel (fallback)"); + return beresp; } // If neither translation nor English version is found, return a 404 response diff --git a/compute-js/static-publish.rc.js b/compute-js/static-publish.rc.js index 9b6a2a3..100b9b9 100644 --- a/compute-js/static-publish.rc.js +++ b/compute-js/static-publish.rc.js @@ -9,12 +9,12 @@ const config = { rootDir: "../build/minified/site", staticContentRootDir: "./static-publisher", - // kvStoreName: "mkdocs", + kvStoreName: "docs.rockylinux.org", // excludeDirs: [ './node_modules' ], // excludeDotFiles: true, // includeWellKnown: true, // contentAssetInclusionTest: (filename) => true, - // contentCompression: [ 'br' ], // For this config value, default is [] if kvStoreName is null. + contentCompression: [ 'br', 'gzip' ], // For this config value, default is [] if kvStoreName is null. // moduleAssetInclusionTest: (filename) => false, // contentTypes: [ // { test: /.custom$/, contentType: 'application/x-custom', text: false }, From 140893f8d1c267f41a2f11e5b1759c65ea173716 Mon Sep 17 00:00:00 2001 From: Neil Hanlon Date: Tue, 27 Feb 2024 23:22:29 -0500 Subject: [PATCH 5/6] enable server compression --- compute-js/static-publish.rc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compute-js/static-publish.rc.js b/compute-js/static-publish.rc.js index 100b9b9..5532573 100644 --- a/compute-js/static-publish.rc.js +++ b/compute-js/static-publish.rc.js @@ -23,7 +23,7 @@ const config = { publicDirPrefix: "", staticItems: ["/search/search_index.json"], staticDir: "../build/minified/site/assets", - // compression: [ 'br', 'gzip' ], + compression: [ 'br', 'gzip' ], spaFile: false, notFoundPageFile: "/404.html", autoExt: [], From b237807707d0295163d794d9b2fbe4b0ec9e7899 Mon Sep 17 00:00:00 2001 From: Neil Hanlon Date: Tue, 19 Mar 2024 23:17:17 -0400 Subject: [PATCH 6/6] final update before going live (famous last words) - set unique surrogate key for vercel-hosted content being served - pay no attention to the insanity that now will become fastly.toml. - set surrogate key for vercel content - disable font: false - strip non-EN for now --- build-all.sh | 11 +- compute-js/fastly.toml | 51654 ++++++++++++++++++++++++++++++++++++++ compute-js/package.json | 2 +- compute-js/src/index.js | 6 +- mkdocs.yml | 2 - 5 files changed, 51666 insertions(+), 9 deletions(-) diff --git a/build-all.sh b/build-all.sh index 366f12f..7848ba5 100755 --- a/build-all.sh +++ b/build-all.sh @@ -21,7 +21,10 @@ MINIFY=$(command -v minify || echo "./compute-js/bin/minify") # minify everything test -d build/minified || $MINIFY -r --sync --preserve=all -o build/minified build/site -# remove locales from minified (Fastly) site -for locale in $(yq -r '.plugins[] | select(type == "object" and has("i18n")) | .i18n.languages[].locale' < mkdocs.yml | grep -v 'en'); do - rm -fr "build/minified/site/$locale" -done +STRIP_NONENGLISH_LOCALES=${STRIP_LOCALES:-true} +if ${STRIP_NONENGLISH_LOCALES}; then + # remove locales from minified (Fastly) site + for locale in $(yq -r '.plugins[] | select(type == "object" and has("i18n")) | .i18n.languages[].locale' < mkdocs.yml | grep -v 'en'); do + rm -fr "build/minified/site/$locale" + done +fi diff --git a/compute-js/fastly.toml b/compute-js/fastly.toml index 634c406..d5f21d9 100644 --- a/compute-js/fastly.toml +++ b/compute-js/fastly.toml @@ -19,3 +19,51657 @@ kv_store_name = "docs.rockylinux.org" override_host = "docs.rockylinux.org" [local_server.kv_stores] [[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/404.html_5f215e81a4c861719c33565aea72574457a45058339d0603fdb281736ad220a5" +path = "../build/minified/site/404.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/404.html_br_e911f0707c88de21646a6509e22ce2bbf520299264de825ce88cb046d1ab9a2a" +path = "static-publisher/static-content/file1.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/404.html_gzip_9ad0d41e3028f05e674171784e0b3c7acd17163c90eb8b3f005051d2cbc92043" +path = "static-publisher/static-content/file1.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/admin_guide/00-toc/index.html_8e67ee62380f03e28b69846f32fcea6a9950471077f72fa40d3cc0f712efd1d2" +path = "../build/minified/site/af/books/admin_guide/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/admin_guide/00-toc/index.html_br_0e39734bec7a60c6b8c05885597f340690ac0a00c8745b4a24bf096b73e305d2" +path = "static-publisher/static-content/file2.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/admin_guide/00-toc/index.html_gzip_22f545f729ffa4ce3e92879d2326c42803e35734ada4902114361d3348516e74" +path = "static-publisher/static-content/file2.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/admin_guide/01-presentation/index.html_794bb5888a233986125e1bd4a2493b62e03c9353b3b5441d9db396657589758b" +path = "../build/minified/site/af/books/admin_guide/01-presentation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/admin_guide/01-presentation/index.html_br_bd2ad06d64eb26e0410b72605e8fbaccaf0681947fd7591e03bf1aadb1fcb43c" +path = "static-publisher/static-content/file3.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/admin_guide/01-presentation/index.html_gzip_9ae844f37416553f37efd83b41e92477d5dca79904ea8edec235a3d4e27cc8bd" +path = "static-publisher/static-content/file3.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/admin_guide/03-commands/index.html_318c4db5579c773cd686912ec0507c6429b4bcd4136fdf17385ccb67a2bc4d09" +path = "../build/minified/site/af/books/admin_guide/03-commands/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/admin_guide/03-commands/index.html_br_6f9c30a5133ddaee671fb962dcdad749dfad8a2017ba28a3289c813a727dda4f" +path = "static-publisher/static-content/file4.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/admin_guide/03-commands/index.html_gzip_a27db52c9a420ca17fa571a2f025a86bb7c9366283eef9ec240ac11e9f06af11" +path = "static-publisher/static-content/file4.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/admin_guide/04-advanced-commands/index.html_7410c915918d441005965b2e4fc360fb1b6ec4b3c9bd7f1be58cf2d0ad7f68c4" +path = "../build/minified/site/af/books/admin_guide/04-advanced-commands/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/admin_guide/04-advanced-commands/index.html_br_510ce1067e7d5b99ec0d7cc35d17a328d2a63a55f1244361b23a54517b7ca0d8" +path = "static-publisher/static-content/file5.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/admin_guide/04-advanced-commands/index.html_gzip_f0becd1b9a8d19872823b5a1d2272c0a369b3b3229202121c0d820f7aa301a48" +path = "static-publisher/static-content/file5.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/admin_guide/05-vi/index.html_c8b253a8029439e2f39663956326cd4aca79e7068d17a19c7a027ad5264ab514" +path = "../build/minified/site/af/books/admin_guide/05-vi/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/admin_guide/05-vi/index.html_br_0fa921f81c52afd32b32dfaacfba1d61551e20ff7886202d06d3815aadc35ae7" +path = "static-publisher/static-content/file6.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/admin_guide/05-vi/index.html_gzip_dd6086b4e1b0a9f8855b526ac9cd0e48c53292c43143da259bf308eaebb9c462" +path = "static-publisher/static-content/file6.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/admin_guide/06-users/index.html_fb13bec81d85205c4a76354499872762f4f851180186044c5a28b65f3bb1ecf7" +path = "../build/minified/site/af/books/admin_guide/06-users/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/admin_guide/06-users/index.html_br_30274e82fb076c806db57661721853c460f8081d13202efbb14eafaeeafba745" +path = "static-publisher/static-content/file7.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/admin_guide/06-users/index.html_gzip_68cfccfd9cc05a710b156464f53985008395b393b8c21071825dae30278eb4b9" +path = "static-publisher/static-content/file7.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/admin_guide/07-file-systems/index.html_d7049c917624d7ca18473196f7b98eafeec19304391d07ff6a415c0dc99775c2" +path = "../build/minified/site/af/books/admin_guide/07-file-systems/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/admin_guide/07-file-systems/index.html_br_112c0e011ff9d34291c5d2dbe5c87df1ec7b82e43204e118ed56da65382b96dd" +path = "static-publisher/static-content/file8.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/admin_guide/07-file-systems/index.html_gzip_1f09a92ec57b4db0b65085a457f0e2a99d6dc1837223aa9a69367746791dc579" +path = "static-publisher/static-content/file8.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/admin_guide/08-process/index.html_1ebb98f055ab050827390ab1aa28aa06d35585b1d48f5429efda86cd94be6881" +path = "../build/minified/site/af/books/admin_guide/08-process/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/admin_guide/08-process/index.html_br_3d11f1a602a5988fb008337463e2d2d076f8a8ddf600d1ad5707280055d14828" +path = "static-publisher/static-content/file9.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/admin_guide/08-process/index.html_gzip_9020fdecf756776d4a2dab3bbe7a4390c41f8d59073682f807e9aaf1d1c1047d" +path = "static-publisher/static-content/file9.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/admin_guide/09-backups/index.html_e8cd72e7a600fcf346cf6f9231916964dfe960aa82a47a15c03147b55a37e83b" +path = "../build/minified/site/af/books/admin_guide/09-backups/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/admin_guide/09-backups/index.html_br_e867541151f0d5ba4174fe839ec01bfaa5cba1d3d3169b7fcd853857f2b132d9" +path = "static-publisher/static-content/file10.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/admin_guide/09-backups/index.html_gzip_1bd9622a3d98b509e94ad7df255d42c666d2473df394a35be1f35f374a6e0b8b" +path = "static-publisher/static-content/file10.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/admin_guide/10-boot/index.html_186d19add0581b9827dc5a35fad7fc0213b7b8f838defc3c908a43ccc0e364a4" +path = "../build/minified/site/af/books/admin_guide/10-boot/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/admin_guide/10-boot/index.html_br_d29320f695ebe73ab1870889172a048f7cde24378d76500c5bf69d1f86fdbee0" +path = "static-publisher/static-content/file11.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/admin_guide/10-boot/index.html_gzip_63047d9b609932824fa560f65740854284b8c2034c06fb81eed04ccc513c75df" +path = "static-publisher/static-content/file11.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/admin_guide/11-tasks/index.html_202c6fe294c31304695c984517d000066e6229e944aa5c3eda43765e1a58ea7c" +path = "../build/minified/site/af/books/admin_guide/11-tasks/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/admin_guide/11-tasks/index.html_br_0c53fe9febe5ca09dab059f1fe3bb43a29c4f33fbdd8d63c9589f25853fdc967" +path = "static-publisher/static-content/file12.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/admin_guide/11-tasks/index.html_gzip_fa7b9765ed0bc14bd66cb09042b6702bb84a5ca3091e047b6e656cb3790ffa63" +path = "static-publisher/static-content/file12.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/admin_guide/12-network/index.html_a96ea3644e48394abee472c9f9eacf036b0f4255f9c0d995b8cb25fc7d25026e" +path = "../build/minified/site/af/books/admin_guide/12-network/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/admin_guide/12-network/index.html_br_f8340bd5432c51fb09ed69fdd00e7282b09db071445e1aa372ee78ad407c0f9b" +path = "static-publisher/static-content/file13.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/admin_guide/12-network/index.html_gzip_3426be3691e22ad90c4912868cca922bd1cd95983fd4212b08256b8a84d992c7" +path = "static-publisher/static-content/file13.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/admin_guide/13-softwares/index.html_5939564c787e7b54e831055a58c505b6cfd9e4ae2680b41d5a2ccd0d6ad6cb0e" +path = "../build/minified/site/af/books/admin_guide/13-softwares/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/admin_guide/13-softwares/index.html_br_61c6401f0ad052e1fac222ab87775ae24dfd638968529ea6e7c6e5c88618a1c9" +path = "static-publisher/static-content/file14.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/admin_guide/13-softwares/index.html_gzip_b498efbd6e8cb20e86c43a4a8bb2b61054bdf7c1a6245615707a541d49f380a5" +path = "static-publisher/static-content/file14.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/admin_guide/14-special-authority/index.html_e38432e62bf14543f016275f7ba66a5e605b4c53a19d84c8b7ec7f269ab5478a" +path = "../build/minified/site/af/books/admin_guide/14-special-authority/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/admin_guide/14-special-authority/index.html_br_527b204556146dd3a3c696ac3bb93d394e8dff52280ef6879fb7da4195caea82" +path = "static-publisher/static-content/file15.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/admin_guide/14-special-authority/index.html_gzip_cef6ed8c30af14c61641247a26a674241024e18a577b80b53546618f1007685d" +path = "static-publisher/static-content/file15.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/admin_guide/16-about-sytemd/index.html_39aa812b8e612f5a533a57fe7a13552762cab976b97c06039c010487cedd725b" +path = "../build/minified/site/af/books/admin_guide/16-about-sytemd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/admin_guide/16-about-sytemd/index.html_br_d8b72acfe84d023f1798c37cfe0183618eb7476c42ad38672871f23e79a2d626" +path = "static-publisher/static-content/file16.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/admin_guide/16-about-sytemd/index.html_gzip_627983dad7d6e42f89362b0c6a57662378798166fbfa64d01376294606d09b48" +path = "static-publisher/static-content/file16.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/bash_programming/01-Shell-overview/index.html_44bc738cd9ef7b492bada3a804c349dcc458017fae9281bc6ea3b24369ab7651" +path = "../build/minified/site/af/books/bash_programming/01-Shell-overview/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/bash_programming/01-Shell-overview/index.html_br_70957754d322ecee4a9989e957440ba2fa36cfea62a87946333f8315d10fefb9" +path = "static-publisher/static-content/file17.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/bash_programming/01-Shell-overview/index.html_gzip_87dd2e42ec6fed148071e48277c7b9f6caa1d96546e901bb19eb28f16382e130" +path = "static-publisher/static-content/file17.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/disa_stig/disa_stig_part1/index.html_0564dbf7de53b621427ccfc8f198523fff3c82c5d934a9a1825cf3a75247c13f" +path = "../build/minified/site/af/books/disa_stig/disa_stig_part1/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/disa_stig/disa_stig_part1/index.html_br_fd3f0e74068c2f5cceb71d168d8ab71d44980989cf794a10f6028c96e904c9dc" +path = "static-publisher/static-content/file18.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/disa_stig/disa_stig_part1/index.html_gzip_d4b72fc209197abc297ddd77d63d8c588cdd2e4fb8b432d162fcb1f0e6ed04ae" +path = "static-publisher/static-content/file18.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/disa_stig/disa_stig_part2/index.html_543cb8567f66669457448604c1ba7cf29fd775c8aa82c7abbf9dd05389c88f6b" +path = "../build/minified/site/af/books/disa_stig/disa_stig_part2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/disa_stig/disa_stig_part2/index.html_br_6093c552acfa3cd3b94fe56b3fd69ad93c3ddac897ceddb6531ef7639294a9a0" +path = "static-publisher/static-content/file19.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/disa_stig/disa_stig_part2/index.html_gzip_50cf95e1d10ef36bec360b0d3b743930153188ad73a04f983391b4adba3ab435" +path = "static-publisher/static-content/file19.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/disa_stig/disa_stig_part3/index.html_8e6f839193d837650d537f293bfa19d082b531f487716f00c01f29d47556daf7" +path = "../build/minified/site/af/books/disa_stig/disa_stig_part3/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/disa_stig/disa_stig_part3/index.html_br_265604cef105ecbf2357ca7de12cb87627148ae6ebbd38760970cf8236d12e68" +path = "static-publisher/static-content/file20.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/disa_stig/disa_stig_part3/index.html_gzip_656c985f808734bb5b20ed7dfd6e65052af72c8d88e6552baa7963e2a32c5520" +path = "static-publisher/static-content/file20.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/index.html_038e049a3df3015742e248cf1a122034891728b24328246b1a089e96d805aa75" +path = "../build/minified/site/af/books/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/index.html_br_ebd012b5f160d41927afe317a55b185003f042a7fa35b430ae307a4e21443716" +path = "static-publisher/static-content/file21.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/index.html_gzip_568eabe9f9fbec5ff0da4ead3fba228ddefd8e488618fa21baec711e50317144" +path = "static-publisher/static-content/file21.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_ansible/00-toc/index.html_4b4ec3ed7e2ec10821a082117a84473060b467cc79f225c999abae085ce722b2" +path = "../build/minified/site/af/books/learning_ansible/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_ansible/00-toc/index.html_br_65db7e4b835a5045aff8636f11f6dbef70651938c0262196049e12d19ee3f508" +path = "static-publisher/static-content/file22.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_ansible/00-toc/index.html_gzip_ffda889f7a5b5512fd691daafe4aec6bc67a7e8f814eeed861acb5f50543a213" +path = "static-publisher/static-content/file22.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_ansible/01-basic/index.html_055153ea05c2299daed07a128f8a5b605c79e930eade989af7f9c951a75d4642" +path = "../build/minified/site/af/books/learning_ansible/01-basic/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_ansible/01-basic/index.html_br_e958212af939fee2c4209571be28b0ac7aa1d84ec0700fa17a5111c60332edea" +path = "static-publisher/static-content/file23.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_ansible/01-basic/index.html_gzip_32b484ff8ba9d3816daf2b4920526f376b64977673670f64ba4e24f8aea418e2" +path = "static-publisher/static-content/file23.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_ansible/02-advanced/index.html_d5ed159e01a4d932116a16a463c7f4fc13377ac58a5ad77d632709b3be0f2af8" +path = "../build/minified/site/af/books/learning_ansible/02-advanced/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_ansible/02-advanced/index.html_br_2b92175d54742472f8d72d01c4ebf414f15f90c7c4a8d8ee58080edbfaca3f0c" +path = "static-publisher/static-content/file24.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_ansible/02-advanced/index.html_gzip_2fe5e8d5956e17dcde8ae818e7547cce830e846e25d42c544b44b15f4123fea3" +path = "static-publisher/static-content/file24.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_ansible/03-working-with-files/index.html_816c1d48f4cee36fe754521234468681fc1a7f9e285899fc0433d9f228d1915c" +path = "../build/minified/site/af/books/learning_ansible/03-working-with-files/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_ansible/03-working-with-files/index.html_br_08705c4212d92cab81742e13f4c090975fc9457de869d70e113dce7f2a1aac01" +path = "static-publisher/static-content/file25.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_ansible/03-working-with-files/index.html_gzip_a0c5ffff8e99dddf2add6f8394fcbbe53c5e32ea75148a5479290bf111693e09" +path = "static-publisher/static-content/file25.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_ansible/04-ansible-galaxy/index.html_85d9d125ff98c65b5ed46f922fe40563f835de766e3ea9ea8c4e3ce2c22e951f" +path = "../build/minified/site/af/books/learning_ansible/04-ansible-galaxy/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_ansible/04-ansible-galaxy/index.html_br_3d573022f401fa5fe1d2facb233097cb55ca293ecddd17eec656b92311033877" +path = "static-publisher/static-content/file26.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_ansible/04-ansible-galaxy/index.html_gzip_d0d6fbb410ee44cd75d9c0361865eb0fbfd82de600faf6783c3196886ac10ff5" +path = "static-publisher/static-content/file26.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_ansible/05-deployments/index.html_e39d82461c89b1e71a2ca3c5b5a3792cddfcd22b659c208840a720aadc9b1d9b" +path = "../build/minified/site/af/books/learning_ansible/05-deployments/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_ansible/05-deployments/index.html_br_14d6d9b0c3d960aa989e367b1a87863528d5a74ba863968beb6c464f7a987b88" +path = "static-publisher/static-content/file27.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_ansible/05-deployments/index.html_gzip_b1dfc36096b14ce72c7c42e2856e1f74ff9ac8b5bee26b8b040291f334834bd7" +path = "static-publisher/static-content/file27.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_ansible/06-large-scale-infrastructure/index.html_bf9b1a856fe8fbfea811024753a3ec318f4b6c80ee0d70af698ff024301c673e" +path = "../build/minified/site/af/books/learning_ansible/06-large-scale-infrastructure/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_ansible/06-large-scale-infrastructure/index.html_br_d5e58d058af70d9abb726f9796ab5e35edcfca67303bbdf14b884fc1e4894f91" +path = "static-publisher/static-content/file28.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_ansible/06-large-scale-infrastructure/index.html_gzip_4353ee4ecd5db84215b65048f735f6ac9ae703c5d18653b4dca9c3d867a81029" +path = "static-publisher/static-content/file28.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_ansible/07-working-with-filters/index.html_b7da61993a9bd15cdd5289caef4ff57b1cb901c75b1667ddfb271fad578df2a4" +path = "../build/minified/site/af/books/learning_ansible/07-working-with-filters/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_ansible/07-working-with-filters/index.html_br_a50eecb366514b2069a916bd8f045d01263a1b95298a1e2ae296a107c6ab359d" +path = "static-publisher/static-content/file29.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_ansible/07-working-with-filters/index.html_gzip_3aa69b92b7bee7d8500d6ff0d962d35e08adc6568f895839c3bb628d96dabd02" +path = "static-publisher/static-content/file29.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_ansible/08-management-server-optimizations/index.html_b857ece9303a2260e76bdf63260d66d218cf422d0e665188816580eb73dbc9f5" +path = "../build/minified/site/af/books/learning_ansible/08-management-server-optimizations/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_ansible/08-management-server-optimizations/index.html_br_000043467f67ce1b940e8e90a6b6832c7eaf608b38361eb82abd08aa9b029850" +path = "static-publisher/static-content/file30.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_ansible/08-management-server-optimizations/index.html_gzip_61506b9970bab5fdf457e98dabbebfc8372ec2ad8d30babcee1b0f7a546124f9" +path = "static-publisher/static-content/file30.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_bash/00-toc/index.html_64b2cf66ced20d31202ed01cd5d3545659bda1963ad3bf599deee064240b7048" +path = "../build/minified/site/af/books/learning_bash/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_bash/00-toc/index.html_br_834e5aa372e711f726ddb191dc6095050de5c8b535074d3ac19e9f50be813c5c" +path = "static-publisher/static-content/file31.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_bash/00-toc/index.html_gzip_e9d1b2d878c60fb205e898225aa32d952c47167b5f7cbfbadda2729b9ec949ce" +path = "static-publisher/static-content/file31.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_bash/01-first-script/index.html_0d3a543c42cab4990201787408b56ef894f9f78dbcbe111c920087d06bf37e63" +path = "../build/minified/site/af/books/learning_bash/01-first-script/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_bash/01-first-script/index.html_br_a2d2c4cb1ca0708d827790d27a1ed6f0d82f92029516c65d7a51550727057b87" +path = "static-publisher/static-content/file32.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_bash/01-first-script/index.html_gzip_6c5d5f1ff17101fc570e9dc931eed6afce64def77f69a91e6de1213a2bcebe3c" +path = "static-publisher/static-content/file32.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_bash/02-using-variables/index.html_1bb9d9805a35b8034ba932a6545161ac81c46a97ced3a68d955c1ba97db503bc" +path = "../build/minified/site/af/books/learning_bash/02-using-variables/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_bash/02-using-variables/index.html_br_b7f74fdb3ccf7a3e8e828b06580524bcd8de596db64ae4a965c3bb881e849e57" +path = "static-publisher/static-content/file33.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_bash/02-using-variables/index.html_gzip_a3a1f668aeb2247a47d169e7e31f0b6bad8df0629c3dacdd8e1b2c42baa30717" +path = "static-publisher/static-content/file33.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_bash/03-data-entry-and-manipulations/index.html_539c43646fbb5ee6aa2d9ab1bd43eab5362e8d3a4c96181ad64c57adddadf34c" +path = "../build/minified/site/af/books/learning_bash/03-data-entry-and-manipulations/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_bash/03-data-entry-and-manipulations/index.html_br_53e4ea2ea07f225492f168f23a7d4d9913a0e41a9578409a4f42f7a03bd442f1" +path = "static-publisher/static-content/file34.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_bash/03-data-entry-and-manipulations/index.html_gzip_d8299fa475be2864b49bde5d997400c3dbb22c1bcdedd0a0fc59e034dbd661f6" +path = "static-publisher/static-content/file34.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_bash/04-check-your-knowledge/index.html_ccd47bcc9e4d410fef48313edbc923748d8cefe25735b20e37b4f7a5bf504ab2" +path = "../build/minified/site/af/books/learning_bash/04-check-your-knowledge/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_bash/04-check-your-knowledge/index.html_br_320c1cb8d366405c20ff1d8a39503bb539745fac63415bb865c3990bc4385829" +path = "static-publisher/static-content/file35.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_bash/04-check-your-knowledge/index.html_gzip_692508d0b9fdbb17174e23b0095c34b54ce0b7aecf4de8efae9bdb5179a791d0" +path = "static-publisher/static-content/file35.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_bash/05-tests/index.html_86e836a36e00f23cd1c52299676eec9345e07c7438d1e857794a31a3fa7220d4" +path = "../build/minified/site/af/books/learning_bash/05-tests/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_bash/05-tests/index.html_br_8df1c4c585802a5b152ba60be66cfed43aa3da116f19716a1b7442afd0c16798" +path = "static-publisher/static-content/file36.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_bash/05-tests/index.html_gzip_e3cae464217b6def0e4456a38a4c89364cdac65d5efec1fced6017b78fcb9779" +path = "static-publisher/static-content/file36.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_bash/06-conditional-structures/index.html_32b2d8d5f9a1f86b9e1e1de92aaa2fe5fcfd0ec67396ba3e516818c6b15e3029" +path = "../build/minified/site/af/books/learning_bash/06-conditional-structures/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_bash/06-conditional-structures/index.html_br_b7e1a602692c1bf0b8e2a3a687add9ba45c7009d7ac13d8a43ada0d96e717ccb" +path = "static-publisher/static-content/file37.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_bash/06-conditional-structures/index.html_gzip_680ab6c9c63cdfdf7d5bb912330d5afce9f544f5d01c7ac125cabffdb5e504ca" +path = "static-publisher/static-content/file37.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_bash/07-loops/index.html_40b7b3d7da97c0c0822a46efb12446146906915fcb784ad846f70bcbedf2649d" +path = "../build/minified/site/af/books/learning_bash/07-loops/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_bash/07-loops/index.html_br_a4f1b83a826804c2058325d91c44bfaaffbf30bb8569e2d03873cdeeed5ee69d" +path = "static-publisher/static-content/file38.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_bash/07-loops/index.html_gzip_7d0b370ac0661e0b057b83f799a8020b576f820fda68d2497133f65f8fe6f05d" +path = "static-publisher/static-content/file38.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_bash/08-check-your-knowledge/index.html_e85eaa4714a84293268cc21fad90a9d0ab147dd6fb7cc1020ad6d23c77d62cde" +path = "../build/minified/site/af/books/learning_bash/08-check-your-knowledge/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_bash/08-check-your-knowledge/index.html_br_94faadeed2bba2a10f8ba014c9f688158c73ebebde88df99dcd4261e6395a69a" +path = "static-publisher/static-content/file39.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_bash/08-check-your-knowledge/index.html_gzip_aad9abf94e56acbae2363d4bc36264c815ce4d737a3cdf1a930edfc9fa53cdc3" +path = "static-publisher/static-content/file39.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_bash/appendix/02-variables-logs/index.html_918ff61571d7fd4e647fe8584b24100c5b0165100a597db29104280d38f69feb" +path = "../build/minified/site/af/books/learning_bash/appendix/02-variables-logs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_bash/appendix/02-variables-logs/index.html_br_99cc0acde1a5a6204fa0dce919d6d1f524824eab6df2408739c9b578b234894f" +path = "static-publisher/static-content/file40.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_bash/appendix/02-variables-logs/index.html_gzip_425a8df8787528bee4da3c25c9f114abd232c5aabad6f0623bd92b8832bc5447" +path = "static-publisher/static-content/file40.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_rsync/01_rsync_overview/index.html_788df5b1777f5e0e8752cd98325d7018a47903fddcd614510fd8c688486e8b93" +path = "../build/minified/site/af/books/learning_rsync/01_rsync_overview/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_rsync/01_rsync_overview/index.html_br_25f6dcb7552b0cf0ef8a69bb72b3fb98f0974e331aa8494d9ddf427eb3142ae2" +path = "static-publisher/static-content/file41.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_rsync/01_rsync_overview/index.html_gzip_0a6e70b5a533fb8df73cd080c765dee914bfc9690e920b827483697e724ede12" +path = "static-publisher/static-content/file41.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_rsync/02_rsync_demo01/index.html_25d3962d0626f73cfe24709caa15f2ad48b28d3083ac3d0aefcc4ad46ab84be2" +path = "../build/minified/site/af/books/learning_rsync/02_rsync_demo01/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_rsync/02_rsync_demo01/index.html_br_b5570c638650fcbc86dd27ca3644ea4be32312167e2b59902991e6792760a08c" +path = "static-publisher/static-content/file42.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_rsync/02_rsync_demo01/index.html_gzip_efa149e61ae8088e427efca0d4f0effa1d825dc060d1fc38bb45776fa2232cda" +path = "static-publisher/static-content/file42.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_rsync/03_rsync_demo02/index.html_e0630940c17f1e691bf00de9fb59d26394ea90d010768e49e3f4e81962fd7ba6" +path = "../build/minified/site/af/books/learning_rsync/03_rsync_demo02/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_rsync/03_rsync_demo02/index.html_br_9dabacabc39612419b7fe101fe35e65a3db32aa023e4187ba799e2b6e2f83efc" +path = "static-publisher/static-content/file43.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_rsync/03_rsync_demo02/index.html_gzip_a7e5c94f9295e9a46bd61e0f3d37897cf850a7b5ca1287100918a8383f13709a" +path = "static-publisher/static-content/file43.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_rsync/04_rsync_configure/index.html_d7fe2ee79eae0f6e90cf993cb53f3f57b4ca80181ddec278cd7772d6e2820e9a" +path = "../build/minified/site/af/books/learning_rsync/04_rsync_configure/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_rsync/04_rsync_configure/index.html_br_e046f40d08f26008c83c56d42c7f23c1c247d4dae9fc94229733c6eba325bc8f" +path = "static-publisher/static-content/file44.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_rsync/04_rsync_configure/index.html_gzip_2b2d318e67c885a3842ad78c5b24e46f298a38f72ba5e3408efdc3d4610a7085" +path = "static-publisher/static-content/file44.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_rsync/05_rsync_authentication-free_login/index.html_f2a218ad519b0bc399cec783074bbd57fb60a6c9687e80d1fc8663f593a463ec" +path = "../build/minified/site/af/books/learning_rsync/05_rsync_authentication-free_login/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_rsync/05_rsync_authentication-free_login/index.html_br_9d6a27cd172a6e87cb00f8f81693f882d85b9f2566a9064fb0884efbbd2aa774" +path = "static-publisher/static-content/file45.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_rsync/05_rsync_authentication-free_login/index.html_gzip_5dd688b0247f983e9ef5df99e0fec9ac988a8b4b842fcc22ecb37783d86d4a90" +path = "static-publisher/static-content/file45.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_rsync/06_rsync_inotify/index.html_322386b5f80511624aab4e1efc5fd8cf170a737224bd7c8490e02d028df392cc" +path = "../build/minified/site/af/books/learning_rsync/06_rsync_inotify/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_rsync/06_rsync_inotify/index.html_br_8ce06206060e447df0f13a7e8211480aaadd4b78f7318805c0fc0ccc73c64045" +path = "static-publisher/static-content/file46.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_rsync/06_rsync_inotify/index.html_gzip_c8ab904f94538e70e352a1e4bc824799ee0cc23e5a88e330b52b48d07714a921" +path = "static-publisher/static-content/file46.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_rsync/07_rsync_unison_use/index.html_d8750de73c07242cf874ecdba9d6d4178afdde82f836ecc6c374ecf5ce62410d" +path = "../build/minified/site/af/books/learning_rsync/07_rsync_unison_use/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_rsync/07_rsync_unison_use/index.html_br_9106dc94f8187977258027f9b23ff3654fe57977a06fa694a8cff8e363a3d24d" +path = "static-publisher/static-content/file47.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/learning_rsync/07_rsync_unison_use/index.html_gzip_eb9a6638283964dcddad0e1ff2315093c118b9e415c0b6009eb22644bd0044ea" +path = "static-publisher/static-content/file47.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/licence/index.html_a1c4137d90c5595cd3dba4acbcb55dbc8388298edde291698102ebf4b5e73f16" +path = "../build/minified/site/af/books/licence/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/licence/index.html_br_1bb3778aa3a9a3549b550b143badce8a11c81511452cc05912a9ae230435e628" +path = "static-publisher/static-content/file48.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/licence/index.html_gzip_42543aafc354f3d9152a82fdf026e5e437b8e8b6e6c9e659408e524aaad82115" +path = "static-publisher/static-content/file48.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/lxd_server/00-toc/index.html_ec30a372d6359c0462cefbe425e8f116a5ae3a155492d7c8ea84a548c4ca8519" +path = "../build/minified/site/af/books/lxd_server/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/lxd_server/00-toc/index.html_br_e4c23d3f0de2d07f921b26e1d7abc62481a9750fa8eeeb05053754232460fdd9" +path = "static-publisher/static-content/file49.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/lxd_server/00-toc/index.html_gzip_cf3b8aa56493dab9f15be9f2a789beacc3d6285476a7115d53300114c3cfa1a7" +path = "static-publisher/static-content/file49.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/lxd_server/01-install/index.html_4eee7ff4c13cbfd8aa3e69278515d1f04c4d9e7b153755947867b14363589c8c" +path = "../build/minified/site/af/books/lxd_server/01-install/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/lxd_server/01-install/index.html_br_8ef633a1a99d5fcdc5279e08e02ee34fb2a4bb5160e4ec717c0db7ea7875aa0b" +path = "static-publisher/static-content/file50.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/lxd_server/01-install/index.html_gzip_b7162df8d96ac490de9b19799913ec5a710e81a097d18d5cfe4ec393a277d147" +path = "static-publisher/static-content/file50.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/lxd_server/02-zfs_setup/index.html_849d20198a6b01bd14c9cc8d1f4547831bda90badd13c77f31a90102c461a3f5" +path = "../build/minified/site/af/books/lxd_server/02-zfs_setup/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/lxd_server/02-zfs_setup/index.html_br_2a8d901c3707df68d0d0641b6cc19850af77fbbf84ed9ace0250c42d09832425" +path = "static-publisher/static-content/file51.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/lxd_server/02-zfs_setup/index.html_gzip_c763b2bd85e65dfb62a0346e3cd568b001e33d483c81c35d92b959b6dcf43cb6" +path = "static-publisher/static-content/file51.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/lxd_server/03-lxdinit/index.html_507eae7791c31aebd4cfd42940c48a5892c0a42e196313163b62b1a6d66785a7" +path = "../build/minified/site/af/books/lxd_server/03-lxdinit/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/lxd_server/03-lxdinit/index.html_br_52d79e809717907056d7750d8569019129a0ef8692185c605465fecaebb241dc" +path = "static-publisher/static-content/file52.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/lxd_server/03-lxdinit/index.html_gzip_f7e7aa4a543a49e359da18cb4c8f2db2c904ecafb2948ec39f66aca3498d1dab" +path = "static-publisher/static-content/file52.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/lxd_server/04-firewall/index.html_a238ff39e075cb9650e827b82e8a4371078845a7c3124c2c4ef35b399618db3a" +path = "../build/minified/site/af/books/lxd_server/04-firewall/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/lxd_server/04-firewall/index.html_br_8dfaa9d650ea92244b1739f59937dc24720bcfacf1029677f2acdfe217aef8b4" +path = "static-publisher/static-content/file53.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/lxd_server/04-firewall/index.html_gzip_cdcefe0e2f096eb95747b5585b0bad692e492bd824fa619f674cc81037e94f4d" +path = "static-publisher/static-content/file53.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/lxd_server/05-lxd_images/index.html_e65bfb3ff1a171c46b54e3716d9a9b98646e6b89aa355c307b09c483fc59b06e" +path = "../build/minified/site/af/books/lxd_server/05-lxd_images/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/lxd_server/05-lxd_images/index.html_br_6ed291f25c59daf7ef212ca37a5137ea4bd8365d0bcb4d170bcbd0d89c1c75ba" +path = "static-publisher/static-content/file54.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/lxd_server/05-lxd_images/index.html_gzip_bb84bb4557de4a02d28b8c9b8083c9d5dbb301103200be8536c9459850ef0cc4" +path = "static-publisher/static-content/file54.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/lxd_server/06-profiles/index.html_d9d80f586ca9b3a325cf96ccdb49eb1125bd29530e46f7900b290777947f702f" +path = "../build/minified/site/af/books/lxd_server/06-profiles/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/lxd_server/06-profiles/index.html_br_1bfc388a86b501f908665e187ec0f32146a409501adb7eb345955844cc8d2dab" +path = "static-publisher/static-content/file55.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/lxd_server/06-profiles/index.html_gzip_608ec705f5f18ec522d945af35e129f514e3b7b4a1edcd5f1014f52cbae017eb" +path = "static-publisher/static-content/file55.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/lxd_server/07-configurations/index.html_529cbe587720e224a3c4b97d16afc7df2836cc5094820b356056757a8879836b" +path = "../build/minified/site/af/books/lxd_server/07-configurations/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/lxd_server/07-configurations/index.html_br_76134ef94417a3531dc5d0e278bafdf24299ab77a9971b74843538618c43a174" +path = "static-publisher/static-content/file56.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/lxd_server/07-configurations/index.html_gzip_5ef85ed486865a51e88ada7452283a0eccea419e17c14cc48c8fb5c73179f8b1" +path = "static-publisher/static-content/file56.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/lxd_server/08-snapshots/index.html_ed5402db8de47c5314dced1ad71bbe508c85463d8a7837e3626da5c3633a85eb" +path = "../build/minified/site/af/books/lxd_server/08-snapshots/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/lxd_server/08-snapshots/index.html_br_154739654452c9d8d0790575478e25e54c2eaa4d1d9d2e2da68fc19fad16bc6e" +path = "static-publisher/static-content/file57.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/lxd_server/08-snapshots/index.html_gzip_d483fc69b90ff2572869a83b3c4575ccdfd66ebd5b4b2694aa536458bd2b4e3e" +path = "static-publisher/static-content/file57.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/lxd_server/09-snapshot_server/index.html_1d4f3ac369ba8bca3a5aa927aaf26d4715b897d15d29473ea89713a20937692b" +path = "../build/minified/site/af/books/lxd_server/09-snapshot_server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/lxd_server/09-snapshot_server/index.html_br_9f33418fa0f2aec3afecaf557edf247a12391e3bab9c1502842a85c6e0df8110" +path = "static-publisher/static-content/file58.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/lxd_server/09-snapshot_server/index.html_gzip_05ab9acbda5a79643a7b828797406938a815c3672ed7012b028fa1a38846653d" +path = "static-publisher/static-content/file58.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/lxd_server/10-automating/index.html_843a20dea82eb39cc945c5706a2d5428e63fd1e99afdf559bb1611b0a269336f" +path = "../build/minified/site/af/books/lxd_server/10-automating/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/lxd_server/10-automating/index.html_br_25c8be7df24e4efd9d0f73c72421f3ed11dace6997a1a98f7e0cc3fdb2f72aa8" +path = "static-publisher/static-content/file59.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/lxd_server/10-automating/index.html_gzip_69aa28d0b881146909ffcddf4caa19d3985cf37886a0a5afabe24b3325aecb67" +path = "static-publisher/static-content/file59.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/lxd_server/30-appendix_a/index.html_2365a736f3c5dfae95dcce017c093eef3d998db6ac653925cd1c6942b50c1f66" +path = "../build/minified/site/af/books/lxd_server/30-appendix_a/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/lxd_server/30-appendix_a/index.html_br_8d5bbd39a1c4c2f5c4a351877c84c5836e98815ca4776f2365eb29c74381875f" +path = "static-publisher/static-content/file60.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/lxd_server/30-appendix_a/index.html_gzip_42ab7e6263182d3945350f42db36bc930f70a21f4907151d60de0d465dc7621a" +path = "static-publisher/static-content/file60.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/nvchad/additional_software/index.html_b21047894d8d9fb8824a12a155af6f5155eb63d73958a82c8276a226181f57e8" +path = "../build/minified/site/af/books/nvchad/additional_software/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/nvchad/additional_software/index.html_br_5b07cdfc6c769cf0957fad9dd519abc2a9243d1f3d78c0cebcb37b6df3c09f86" +path = "static-publisher/static-content/file61.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/nvchad/additional_software/index.html_gzip_601d4d5b1a4f411e5ce0f5f68a2340e1aed8af500d223d9763857e19a547d074" +path = "static-publisher/static-content/file61.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/nvchad/index.html_a20f374e1bd0765cc1567032e0700060f8efee86eeb73025d6a619e25fde8b82" +path = "../build/minified/site/af/books/nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/nvchad/index.html_br_20df27c12889737d7f05debf1f13ccba001b4cc484a7bc85816668e947bceff6" +path = "static-publisher/static-content/file62.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/nvchad/index.html_gzip_b82b392e5a3cf6094da9c6d0969da86eaf55547ed95ae324d9fd3013d76bd6f5" +path = "static-publisher/static-content/file62.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/nvchad/install_nvchad/index.html_803a549ec953b097664dbbff33baefe74a09138adba2d6acbf585ea71532986c" +path = "../build/minified/site/af/books/nvchad/install_nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/nvchad/install_nvchad/index.html_br_6a016108454ee9577cf79aca3989d499f2f1781ec8c77baa9d4484e6aa22254a" +path = "static-publisher/static-content/file63.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/nvchad/install_nvchad/index.html_gzip_f6733b2c119638d7a39405b80a5ca76c667c52867ccbf125cd6b3c3df9d7a6bd" +path = "static-publisher/static-content/file63.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/nvchad/install_nvim/index.html_ece4d1cb45fb20809cb4c7bf16960b4a0c4531ee0201ccb358c4f12c87339838" +path = "../build/minified/site/af/books/nvchad/install_nvim/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/nvchad/install_nvim/index.html_br_4c69a607d59146282389682b19c9ceb603ccd8e706badaff1ddcd786aaaa44e5" +path = "static-publisher/static-content/file64.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/nvchad/install_nvim/index.html_gzip_f1d083f28a6f3e2ebd26b471382ff1d8f08ed8bbca688bdf155edd092dcfc12d" +path = "static-publisher/static-content/file64.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/nvchad/marksman/index.html_9589b046fc168af05fb8b5bb1a794a87d905e5e9a2988b66a1aaeaf490037a46" +path = "../build/minified/site/af/books/nvchad/marksman/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/nvchad/marksman/index.html_br_96a625193516d7d762b1b75019f77515b3d8a5455f3e14bb9a32b94f08d918fd" +path = "static-publisher/static-content/file65.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/nvchad/marksman/index.html_gzip_47dd070fdcf42449faa81fb27077d4dc11ceadc665616c2ca6ac383de28799a0" +path = "static-publisher/static-content/file65.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/nvchad/nerd_fonts/index.html_d2bce980a1d403f8cd7a3c974d12e2810643d32d9f80b22ccfe78d0e7b54519b" +path = "../build/minified/site/af/books/nvchad/nerd_fonts/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/nvchad/nerd_fonts/index.html_br_5f517e164bc70722f6dbc78d6d3bf1509fed43112522850b1719c3f6f42fb23a" +path = "static-publisher/static-content/file66.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/nvchad/nerd_fonts/index.html_gzip_a9688ecc8872a0de70bf08c259968a3a9599234112c7adba426b0ed2872f0bb2" +path = "static-publisher/static-content/file66.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/nvchad/nvchad_ui/builtin_plugins/index.html_e730585c19ba37b07ee51574804f3373ab689c0c66ae6ece1510c1a53538b2cd" +path = "../build/minified/site/af/books/nvchad/nvchad_ui/builtin_plugins/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/nvchad/nvchad_ui/builtin_plugins/index.html_br_8c124a3b746a1a0e39a558807cae03436b3934d208ed07826b0fd7311627a5b1" +path = "static-publisher/static-content/file67.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/nvchad/nvchad_ui/builtin_plugins/index.html_gzip_d161276933370c3592145de9cc178081d11bb7fe1a998f47603eca03bf5cf697" +path = "static-publisher/static-content/file67.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/nvchad/nvchad_ui/nvchad_ui/index.html_158d3e1f0b480535b6711e767e94c4f9f745b3b995d8ecbc1fc5a2b5020d7f1a" +path = "../build/minified/site/af/books/nvchad/nvchad_ui/nvchad_ui/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/nvchad/nvchad_ui/nvchad_ui/index.html_br_999be4f3866e203bcfe693f15c9b2eaee7eff1a64cbe977808fe8d5e3b5bb3bb" +path = "static-publisher/static-content/file68.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/nvchad/nvchad_ui/nvchad_ui/index.html_gzip_af9c3e3d954a1d8ff70a22d90c9d7edd0fe0f0e2eff9ba9abb5bbed9e4415b09" +path = "static-publisher/static-content/file68.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/nvchad/nvchad_ui/nvimtree/index.html_c15da0b0536ad8e1dde7327c686a122ec7685e3f8fa075127639034e1888cd62" +path = "../build/minified/site/af/books/nvchad/nvchad_ui/nvimtree/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/nvchad/nvchad_ui/nvimtree/index.html_br_303c8a42d577951fd54eff9efd4af3c3fe4f2659ec4f65d767cdefe37131cb95" +path = "static-publisher/static-content/file69.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/nvchad/nvchad_ui/nvimtree/index.html_gzip_89807fcd4f95625cdde4f63a8dcd6ab20e2583a23c6d2f52e1f02a8670639661" +path = "static-publisher/static-content/file69.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/nvchad/nvchad_ui/plugins_manager/index.html_295a4eb43f6c276e3b1212f1367d41e49071fb076688c17b2a089d26fe34973b" +path = "../build/minified/site/af/books/nvchad/nvchad_ui/plugins_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/nvchad/nvchad_ui/plugins_manager/index.html_br_a0585bf60e2f475b479fbdbac4c0b2a5dff7bbe35ad236568995bb5496d04623" +path = "static-publisher/static-content/file70.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/nvchad/nvchad_ui/plugins_manager/index.html_gzip_976686d6e31bafbd382fd2b8a76f7de261eb61a2fa81adbdf35262435cc9f4d2" +path = "static-publisher/static-content/file70.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/nvchad/nvchad_ui/using_nvchad/index.html_f5b2a104011e45e1fa5b30e9beb93406d9e501b9664a27aa35ea9cff53c5c288" +path = "../build/minified/site/af/books/nvchad/nvchad_ui/using_nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/nvchad/nvchad_ui/using_nvchad/index.html_br_234ca4dc5f14763f000b811dccdb662204b9c7c65a0545ffe0d739505a7da9f6" +path = "static-publisher/static-content/file71.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/nvchad/nvchad_ui/using_nvchad/index.html_gzip_643225e10eba0f36d866f4c971ec5cb764addd6d1fb03052df84250a7ade64a6" +path = "static-publisher/static-content/file71.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/nvchad/plugins/index.html_a7ca4fcebc87d522d3f081019511253194c4baafb509f0f0bed4cc4ab7c4cc83" +path = "../build/minified/site/af/books/nvchad/plugins/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/nvchad/plugins/index.html_br_0011a7be89b5eb7b2d0e6de28301d2dc8a580c96950dbbe1ff0564dff30fd264" +path = "static-publisher/static-content/file72.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/nvchad/plugins/index.html_gzip_8b3e051e4be444ed8b6da343db5c78158cd32a8a91b6020cebb392ac2f9b7bd1" +path = "static-publisher/static-content/file72.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/nvchad/plugins/md_preview/index.html_6722a4be687d1323a4caa00c3ea8b3b6f811e440a540b82c22deb00642565635" +path = "../build/minified/site/af/books/nvchad/plugins/md_preview/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/nvchad/plugins/md_preview/index.html_br_4b04bf2fa17c093eb2db3bdc45c1edcadc16d94e67fc9066ac105fac3ec4edca" +path = "static-publisher/static-content/file73.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/nvchad/plugins/md_preview/index.html_gzip_fd4a56ae753879af187cb1ef592a1e02c065945ba4f49d156add2e0c0a21a777" +path = "static-publisher/static-content/file73.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/nvchad/plugins/projectmgr/index.html_0110a43196508fbaa3fb8589070d24cf1c8eb50cd4d6045c7edb7aff8a53c36d" +path = "../build/minified/site/af/books/nvchad/plugins/projectmgr/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/nvchad/plugins/projectmgr/index.html_br_e780aa51e9d567dce6f4c91f7258e9a90ed3aa1f15b3ed24f323becf59d6425e" +path = "static-publisher/static-content/file74.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/nvchad/plugins/projectmgr/index.html_gzip_18e3e53bc2279854e2d8db4c92c58d644b39cb5660ce10f6b864e815ec1cc2bd" +path = "static-publisher/static-content/file74.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/nvchad/template_chadrc/index.html_58edc9adbbc2b7e0b70eb2c56b0fb4e076cf9a7dec8e321e3b58be1a60bcae4d" +path = "../build/minified/site/af/books/nvchad/template_chadrc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/nvchad/template_chadrc/index.html_br_a7b51a799b5e6294db415e83e792f6ef812939b82077c7c3672dcfa3cc1d70b3" +path = "static-publisher/static-content/file75.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/nvchad/template_chadrc/index.html_gzip_8d7d736a5e3f601cf599649fb13cee11f4af33ad6527f1dc09c2f3f2897d850b" +path = "static-publisher/static-content/file75.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/nvchad/vale_nvchad/index.html_81ecc15dbf6ace7695973da80f3520ae8fd70e151e236652b784740510b36544" +path = "../build/minified/site/af/books/nvchad/vale_nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/nvchad/vale_nvchad/index.html_br_d0caa8e4ea48c5beab51bc648cdf44244b41b0f969db2bef3c7634cd71cad52c" +path = "static-publisher/static-content/file76.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/nvchad/vale_nvchad/index.html_gzip_26c24ffdbd3c0d50bd93971853e21f1afa74a1ca134b059764aae057c4a53467" +path = "static-publisher/static-content/file76.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html_82ae1813fbc7da7ecc9b8175fa8c9ef8614a9f633b27375c3082d07cab6508c6" +path = "../build/minified/site/af/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html_br_d031ccbdeaf9e632388cda2167e9585f68581fe0b3cfd5a77b1fd25b0c64d9ef" +path = "static-publisher/static-content/file77.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html_gzip_00dcf61ba8c0c41f5a10ebc579f5514af269aa6be9af6a84c9e224085298e33b" +path = "static-publisher/static-content/file77.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/sed_awk_grep/2_grep_command/index.html_f9804907436b40f1faf21f2b68eb5cf56d4079b300555e2c74fd242bcd5a6bd9" +path = "../build/minified/site/af/books/sed_awk_grep/2_grep_command/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/sed_awk_grep/2_grep_command/index.html_br_0701d139b6212d4aef1d79e79e6f55af5580c759aea46af74dd5df5c29ffb36a" +path = "static-publisher/static-content/file78.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/sed_awk_grep/2_grep_command/index.html_gzip_78d4edd0e3ee2bcb7df06fc1f51ac6fc7064d6733cd7e3388435d0038be7bb3b" +path = "static-publisher/static-content/file78.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/sed_awk_grep/3_sed_command/index.html_41c8fa0b2d2f9a02a61190e1a7c6775fbf967ff23e65a3c10e5a6e7e15bcb946" +path = "../build/minified/site/af/books/sed_awk_grep/3_sed_command/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/sed_awk_grep/3_sed_command/index.html_br_6c02c4d73119216b303aaed9fdac067da0772dd8c666925ca778acb30bdd3938" +path = "static-publisher/static-content/file79.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/sed_awk_grep/3_sed_command/index.html_gzip_05b1959423e5217d99f2d3c40d6af70476df50e7068da974831bb30f87d2ae62" +path = "static-publisher/static-content/file79.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/sed_awk_grep/4_awk_command/index.html_bf11705586195f2d176e34a47878fae95cce2caf8a94fe126fca50d68ea63a04" +path = "../build/minified/site/af/books/sed_awk_grep/4_awk_command/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/sed_awk_grep/4_awk_command/index.html_br_895e7cd4b433252d2942b432d5b54f16c475c74eba52ad2c593e52d3724518f9" +path = "static-publisher/static-content/file80.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/sed_awk_grep/4_awk_command/index.html_gzip_4296d5bdc0e22e4fe46a5231f1cbc9d2cfbc1322b5629c47b6a0c6635a0e497d" +path = "static-publisher/static-content/file80.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/sed_awk_grep/index.html_e74aa5d6ee1447d0ee4dd5194e9641643203d2ab16321c6536aceb6231fec121" +path = "../build/minified/site/af/books/sed_awk_grep/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/sed_awk_grep/index.html_br_1f954f8b84a227637532d528d9562e79517770abaa9b51b2b22aa4b0f34882ff" +path = "static-publisher/static-content/file81.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/books/sed_awk_grep/index.html_gzip_2428dfcd0aaf451993f5b26cabb704ae8013774c0b90d0c5851007e7b4e6b337" +path = "static-publisher/static-content/file81.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/containers/docker/index.html_7857f019aa7df33870b26520c6a1737a659f6226939e4399c48c15f5a632e0ef" +path = "../build/minified/site/af/gemstones/containers/docker/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/containers/docker/index.html_br_44e91e34b8ebdae7f51dfb3d208b1d4961530e015478f1949f0e70bc7f6673bf" +path = "static-publisher/static-content/file82.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/containers/docker/index.html_gzip_9699f02eaf0d86721f07a60fb1fbd1597146e8ba6dced5489e571cd71d80b9d3" +path = "static-publisher/static-content/file82.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/containers/podman/index.html_cd8ea6eeba4a196da5754c613aba8517c5f7e398701b4124683f7b5d4b3f8362" +path = "../build/minified/site/af/gemstones/containers/podman/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/containers/podman/index.html_br_bd0f687f04a726b42daae15325597690de1ef0ae9f57fde0041dc3877d77a2b5" +path = "static-publisher/static-content/file83.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/containers/podman/index.html_gzip_674d8f9253406decf373a73dddb558ce90d93a71d9705201d037279f0cceb1a2" +path = "static-publisher/static-content/file83.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/core/view_kernel_conf/index.html_bb7f5fba665125da7f97ff65849bde52743ed3aca0a8d089625e33cf096952ad" +path = "../build/minified/site/af/gemstones/core/view_kernel_conf/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/core/view_kernel_conf/index.html_br_e2eaf8f2bb2564f65633f29e794948795298ea3399a46d98d8cb860263120ac8" +path = "static-publisher/static-content/file84.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/core/view_kernel_conf/index.html_gzip_eabd6145b404c40f22ecb4fc6c6da33f09a1890f5ba363ecb521a08d663f99e9" +path = "static-publisher/static-content/file84.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/dnf-swap/index.html_f60f18184f4ddf687ac4d5ad2bc1c10c66f8a437a827fb19317228e47e8c8ebf" +path = "../build/minified/site/af/gemstones/dnf-swap/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/dnf-swap/index.html_br_4f9835860b8e9e5d46cea3b198a954ca260bdaef8fc43fa866966a7becd6cf14" +path = "static-publisher/static-content/file85.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/dnf-swap/index.html_gzip_cc2f74be2cb4bd80af4c3b0cb1213e4ece784870adb2b07e63868fea3b8074c3" +path = "static-publisher/static-content/file85.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/gemstone_template/index.html_3d9c23e4e6d9d9c4f8c7fae33b0ec9c17308257c262147035522f707af86a10c" +path = "../build/minified/site/af/gemstones/gemstone_template/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/gemstone_template/index.html_br_f93be25547629511fc1ff1593edd842c06fe81c0d1f4475f46250b8736c0246b" +path = "static-publisher/static-content/file86.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/gemstone_template/index.html_gzip_34667a7c84dd072ecfe5fe832c56f1e5b8c2beeac5ba3e429c2500cb888aaf4f" +path = "static-publisher/static-content/file86.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/git/00-gh_cli_installation/index.html_d95a327ea2246e8ce37b2dacf704f5c831846c061fa450aaf5d022e34c70c19b" +path = "../build/minified/site/af/gemstones/git/00-gh_cli_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/git/00-gh_cli_installation/index.html_br_386df730e3895e0bb91fec9fef1053dc592ad680c09b66a4dbe5e28977bd4f11" +path = "static-publisher/static-content/file87.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/git/00-gh_cli_installation/index.html_gzip_c35c0e6c853d94b84c4d667503ef514206f56a684feac6caad5d273cb605a5fa" +path = "static-publisher/static-content/file87.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/git/01-gh_cli_1st_pr/index.html_37ea8da77bd90958ed75b5f9d97b1d51578005232407c59cd27ba6036d84b9db" +path = "../build/minified/site/af/gemstones/git/01-gh_cli_1st_pr/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/git/01-gh_cli_1st_pr/index.html_br_89c0d0f89883324fb186408dde9aadae41c595839d2684d303d96bd1c28db875" +path = "static-publisher/static-content/file88.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/git/01-gh_cli_1st_pr/index.html_gzip_48a9410959bf9cd847384ca84b3800fd5fc6b7defc0dea318d21cbf7d701cd37" +path = "static-publisher/static-content/file88.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/git/02-gh_cli_edit_pr_title/index.html_c10ca33aaea3d953e969ab3afcb08aee9e6a112eac94542105b252b99382220b" +path = "../build/minified/site/af/gemstones/git/02-gh_cli_edit_pr_title/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/git/02-gh_cli_edit_pr_title/index.html_br_cc4f0f9cd1d900e7017128a2b451d37a92d640c93d2071b45399d56076b90761" +path = "static-publisher/static-content/file89.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/git/02-gh_cli_edit_pr_title/index.html_gzip_a17fa60c0d55ef678510d1ca7315468645774cdad71969e19f1bf50ce143026e" +path = "static-publisher/static-content/file89.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/git/02_github_web_edit_pr_title/index.html_b572d7c3740920df07495bc472c6d3ad58e4aa9de12dae0d986731e28fec7a8e" +path = "../build/minified/site/af/gemstones/git/02_github_web_edit_pr_title/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/git/02_github_web_edit_pr_title/index.html_br_bbd21e292f417fd6aa69c89e3d53561b68cb461db3902589d85d6e3a552f7112" +path = "static-publisher/static-content/file90.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/git/02_github_web_edit_pr_title/index.html_gzip_98095e0afd386087bd225bd926225ef9b83c363240ca239fff207af0070de913" +path = "static-publisher/static-content/file90.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/git/feature_branch_workflow/index.html_a5ec64d6d1b0c7fe59c29fd117edab8d53f67c1961698b0d0583854cd7c472a5" +path = "../build/minified/site/af/gemstones/git/feature_branch_workflow/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/git/feature_branch_workflow/index.html_br_f5fe34e4dd5db696d6fc2e21330be7ce27c8591d6b21bbae6e555b2b5814b5c6" +path = "static-publisher/static-content/file91.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/git/feature_branch_workflow/index.html_gzip_13abcb4f6bf850a8b6c74b5b344af62e9fcb3f89e58406978df37d6d608e34fa" +path = "static-publisher/static-content/file91.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/git/fork_and_branch_workflow/index.html_44ec6390fec48b39f0be6e90dc93651abc1e32e485ec93d184cf39764bf46916" +path = "../build/minified/site/af/gemstones/git/fork_and_branch_workflow/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/git/fork_and_branch_workflow/index.html_br_bb90040b36f14f9227212ea8fbf1e8c086ff53574da106938e12a13022bf043f" +path = "static-publisher/static-content/file92.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/git/fork_and_branch_workflow/index.html_gzip_feb5445c5841a9f67d3d6512329cfbcd0c64e2fbf03857a7196e35231df4e290" +path = "static-publisher/static-content/file92.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/git/git_pull_vs_git_fetch/index.html_db59f0260725d3f447e20e2f4039e4b1a776d4af385c360fff0bde28a13744f6" +path = "../build/minified/site/af/gemstones/git/git_pull_vs_git_fetch/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/git/git_pull_vs_git_fetch/index.html_br_5be358fec0b750ccdc074299e10724e7da569eb2d2d6d526db8227fe0db62dc5" +path = "static-publisher/static-content/file93.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/git/git_pull_vs_git_fetch/index.html_gzip_98db9fa6bcf27d2972259b8a5f93ea5f6e1901283b798f2ab9716ffc9752145b" +path = "static-publisher/static-content/file93.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/git/git_remote_add/index.html_0029e4d8a3f9e56b2431396d4e30f0eb3d52e44ccd91a328621b0cd9bc9fb452" +path = "../build/minified/site/af/gemstones/git/git_remote_add/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/git/git_remote_add/index.html_br_926b8a9ae2f744edff988906da41cc11ab3fb1fee954039a95fd3fd1cc4abdfb" +path = "static-publisher/static-content/file94.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/git/git_remote_add/index.html_gzip_408d2e066ca2126afdb8641b4502d89ad3f9ba69176749a487f993603e298bb9" +path = "static-publisher/static-content/file94.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/git/tracking_and_nontracking_branch/index.html_42935057d1933e72eb5866b366e80326991ca08d74c9cd66f1df12f2d3ed7074" +path = "../build/minified/site/af/gemstones/git/tracking_and_nontracking_branch/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/git/tracking_and_nontracking_branch/index.html_br_96baa02b25dce20885f12a0cd2f01b4054301cd722ea513b0067598c564545af" +path = "static-publisher/static-content/file95.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/git/tracking_and_nontracking_branch/index.html_gzip_1629b83e6fbcb5c0137f94eeef4d04f2d934c89a4adf2922c62f89677e331797" +path = "static-publisher/static-content/file95.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/htop/index.html_579e372e0e4ced45f760baf2fa0123644869cc8e331b31960c988be94dd2d0c9" +path = "../build/minified/site/af/gemstones/htop/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/htop/index.html_br_85e091b751c8e98cdcfe048c25e7598c8e979aad99d271bf0e058808ff2a489c" +path = "static-publisher/static-content/file96.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/htop/index.html_gzip_4408fa8c0cb556cd1852eded39ace6fafe785b6f7a14a85411f20bbc59bc491d" +path = "static-publisher/static-content/file96.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/https_rsa_keygen/index.html_278a16e83c84de712629e26373bd56133078fcd878e8f3d10bab17c57f8b2c55" +path = "../build/minified/site/af/gemstones/https_rsa_keygen/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/https_rsa_keygen/index.html_br_e979acaa34493a2225cce53059ba091c27f7d576dfc254e8961ea1a3ed932a03" +path = "static-publisher/static-content/file97.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/https_rsa_keygen/index.html_gzip_c7dcd1a18f67bcb954999f60d3be4267a24f086f01561ac99984a2e8f37e7918" +path = "static-publisher/static-content/file97.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/index.html_1da03bbc4ac3ac985d20ae219d5a370b3d548585ec5fa3a9af7731118d59546f" +path = "../build/minified/site/af/gemstones/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/index.html_br_c09e8b0b9c33aa8b9b723ed68d2ebc33a1b537885ebf70a6b58cd90e756106a8" +path = "static-publisher/static-content/file98.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/index.html_gzip_48c562d28932a43ae15a36d9ffe317b29145d1dc8b178e96ef6edd032610ac24" +path = "static-publisher/static-content/file98.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/markdown-demo-v2/index.html_4d0f4b9d98b588b09f781dacc2b1385dc62ae6b79c497ae88c4519ff7a0cb5d7" +path = "../build/minified/site/af/gemstones/markdown-demo-v2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/markdown-demo-v2/index.html_br_5635719948a6295783847a4fb8d724ace53099542a66fc54461b87850f46a71a" +path = "static-publisher/static-content/file99.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/markdown-demo-v2/index.html_gzip_11da28c8c52a45ebfcc9721cd91a63ea33af0fe7fc7875095e30dda22b37ddab" +path = "static-publisher/static-content/file99.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/network/RL9_network_manager/index.html_91a853edf82162f9db25869fad6dad64bb2d88989394ee3aeacc32b9e7efd0f0" +path = "../build/minified/site/af/gemstones/network/RL9_network_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/network/RL9_network_manager/index.html_br_d7aa714eae4d869cbe31671b4a0340cf9cf364f03a570cf90431f553544fcd0e" +path = "static-publisher/static-content/file100.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/network/RL9_network_manager/index.html_gzip_3f77832568343ddd80788223551995f98ba5875b964dce48ac93142191254a13" +path = "static-publisher/static-content/file100.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/network/iftop/index.html_dc6277100d9cc613d8f07040690ecca7dd634c0e81097524fb610ed1763bf809" +path = "../build/minified/site/af/gemstones/network/iftop/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/network/iftop/index.html_br_29fdd5bd2f30f833c5261a5183ad7c6fc29ea208330165a46b0d0357a701f7e6" +path = "static-publisher/static-content/file101.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/network/iftop/index.html_gzip_358ce8ac5d9d6a7d64ddab22b644d108e3618891700e8d74e276798646046ad3" +path = "static-publisher/static-content/file101.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/network/mtr/index.html_a51bc2261d3ab82b8bc118c97906d3e973959645e94247da165800166e44a182" +path = "../build/minified/site/af/gemstones/network/mtr/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/network/mtr/index.html_br_02c8c60128e6682372d019a5f9279608de835ffd4dccf5e5afb1dcc2fd103648" +path = "static-publisher/static-content/file102.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/network/mtr/index.html_gzip_85036c76f6660685b7ff507360e2f6fa93d6cde4263ccf0564d4cca39784b239" +path = "static-publisher/static-content/file102.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/network/nload/index.html_3aa4645cd501144c34fe89447e273e13a41ae87fcc50792cc9f207e2809a8d75" +path = "../build/minified/site/af/gemstones/network/nload/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/network/nload/index.html_br_4457cc2c79361f79d3e257f9f1edf94f4129b1ce633245cfb08f97e450848771" +path = "static-publisher/static-content/file103.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/network/nload/index.html_gzip_0acd1557e3f6c6270fec3f5bded178e06eef4496ffae2160e123224ae39c861a" +path = "static-publisher/static-content/file103.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/network/nmcli/index.html_13e8e1b4e81b6d110bbac17787c21562b6a5ff894244ee90eed3da03bfbdfd41" +path = "../build/minified/site/af/gemstones/network/nmcli/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/network/nmcli/index.html_br_7d4106e8c102629ef184be42529e12d4af4fbacad161152a97045bc175beec87" +path = "static-publisher/static-content/file104.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/network/nmcli/index.html_gzip_9ea9f6b34dc1b9933453c475d40dd984dee73c85df3f9f4660955113a56f27a5" +path = "static-publisher/static-content/file104.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/network/nmtui/index.html_6f9dac5c7c226565fb9d34bea5578512594b95c65c3c5772da0661073306ba20" +path = "../build/minified/site/af/gemstones/network/nmtui/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/network/nmtui/index.html_br_12dcc566464fe00297c7d21c7b5641202dc6751492893d1843e05da0eb7a8e4e" +path = "static-publisher/static-content/file105.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/network/nmtui/index.html_gzip_693eacf82db0807694d1885de926cb8a5ff63b8320e2687964b04b7ad761ca4d" +path = "static-publisher/static-content/file105.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/perl_search_replace/index.html_6d38a41350ffc41171a644ae64bd22c048f3432cc57482bdf0822c3d2e776a64" +path = "../build/minified/site/af/gemstones/perl_search_replace/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/perl_search_replace/index.html_br_13f459273a92371d7187b6d151bbbcff6e98fe4a6ffd7e82e473f0a5a14b2abd" +path = "static-publisher/static-content/file106.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/perl_search_replace/index.html_gzip_162cbe6480feed5ff6ffc18d5ffdc8e83df542bccb099ae24923f2822c035e5f" +path = "static-publisher/static-content/file106.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/rpaste/index.html_c39ae38b560097b46cd01404e612419b701ed3fc654f91e71605cbe96ad06755" +path = "../build/minified/site/af/gemstones/rpaste/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/rpaste/index.html_br_27100be21b4a16aab761f904e0923fe97cb8f59fa5351699fb310834f64d81b5" +path = "static-publisher/static-content/file107.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/rpaste/index.html_gzip_a394143eba72874f1263d12ec624f76c10df5430f7386f0253057bd60ea322a3" +path = "static-publisher/static-content/file107.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/scripts/NoSleep/index.html_d33d55d0a49cd9f4099510d13aaefffd1335efb729164180969b828d70b4038a" +path = "../build/minified/site/af/gemstones/scripts/NoSleep/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/scripts/NoSleep/index.html_br_eb504d4047b10faa47c61a71aa4e80aa5316d94b417ca83e97c6725724c1e309" +path = "static-publisher/static-content/file108.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/scripts/NoSleep/index.html_gzip_fe1ddbc650f5c59450f4bed1a7f61ffcd8306fe03a37e9b04a995baa837d1f8d" +path = "static-publisher/static-content/file108.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/scripts/bash_stub/index.html_c04951febf1c7a5a5ebd1ca892a7920c9fd98c8703fb3a86de413722f55fcb9e" +path = "../build/minified/site/af/gemstones/scripts/bash_stub/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/scripts/bash_stub/index.html_br_cd7e5afab97e1db7e3573038f78027dc7e804e01d78eb5ff3c0806432644f234" +path = "static-publisher/static-content/file109.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/scripts/bash_stub/index.html_gzip_1915a8c9dc4f6767cecc5fa0e78de6efde6433d3c6ad26346b7f2eff59a3443f" +path = "static-publisher/static-content/file109.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/sed_search_replace/index.html_408e0722db97e50e8e6c6f6da3432a19b0c73cf322260a4592ccf2e87d777444" +path = "../build/minified/site/af/gemstones/sed_search_replace/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/sed_search_replace/index.html_br_da05e621599c08985bb05bc3dbc1e7dba0d3227f4e39c4ff900cfa7d85972446" +path = "static-publisher/static-content/file110.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/sed_search_replace/index.html_gzip_d87add0fabf9c1a1dd5f8808a490ef0088efb5d5600b39e395dd7b7b42db85be" +path = "static-publisher/static-content/file110.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/setup_local_repo/index.html_155c6b0ce2dedf50afd55e217e2ebda8eeb9ea06fd45e3d481063833fb7e6dad" +path = "../build/minified/site/af/gemstones/setup_local_repo/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/setup_local_repo/index.html_br_bdee8d4ccf67f1ae5d0cd68795ea0f1314f338a10904e4946186ff81c818c2e9" +path = "static-publisher/static-content/file111.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/setup_local_repo/index.html_gzip_d674ec719d311f343b806807cb40bbfc3fc1a313d647a8cb0f6ff5a7c6b75e87" +path = "static-publisher/static-content/file111.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/string_color/index.html_6f5c9206b4527514960ec5d5af815d630b464932032f89334ba1a3d897efdfb0" +path = "../build/minified/site/af/gemstones/string_color/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/string_color/index.html_br_08892dd25036a37dc1005c2e45232f3bcc26267bdb43575461eda768842fd050" +path = "static-publisher/static-content/file112.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/string_color/index.html_gzip_9380c955d5d5be287960c236a8cf32b1a7290037bfff892e69f9c1cac9c390b1" +path = "static-publisher/static-content/file112.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/systemd_service_for_python_script/index.html_be43edafad290621fbd33fb70c18c4bb8e0f278d32db826741b1885259c7a2cb" +path = "../build/minified/site/af/gemstones/systemd_service_for_python_script/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/systemd_service_for_python_script/index.html_br_7782d19ae55f546043e7484c42ac9f9e1548635a82e2d43f3db46f221d862e77" +path = "static-publisher/static-content/file113.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/systemd_service_for_python_script/index.html_gzip_35804b31f18a8a3cf40ac7ef38354a64a14721e6569258b8af359a9188eaf9e0" +path = "static-publisher/static-content/file113.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/test_cpu_compat/index.html_ad05c34af252ca388424cd0278384a8f6c53ef7dded28b7eae0820c422feae6a" +path = "../build/minified/site/af/gemstones/test_cpu_compat/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/test_cpu_compat/index.html_br_a5409ba594558c2a2f6f395fe32a70980789ac8c81a323f4e77a0f4831893b0b" +path = "static-publisher/static-content/file114.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/test_cpu_compat/index.html_gzip_77292de29347e69c2421d6132aed538facbb2ea94b2363f80c01c50a922878b9" +path = "static-publisher/static-content/file114.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/torsocks/index.html_51c1b3a85d77142d89fa1c32bc1963daf501a4d80c348188796412838ffea7d5" +path = "../build/minified/site/af/gemstones/torsocks/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/torsocks/index.html_br_b3dc70f993263e700986498ca8c25c1f8175c1f9560fb20b5f421b47df5a672d" +path = "static-publisher/static-content/file115.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/gemstones/torsocks/index.html_gzip_22520d2695048e5fb5aa18810185eae776eced36d7dcf3e3bcd5a83ccefab5c8" +path = "static-publisher/static-content/file115.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/8_6_installation/index.html_2e2cc5390fcfde66d06a73027a49699747c402a3385957ed4526fe5248b98a48" +path = "../build/minified/site/af/guides/8_6_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/8_6_installation/index.html_br_6b1f7517c61e51973d02a65e46633890bff5fc6310ae4afef6a214478235ad29" +path = "static-publisher/static-content/file116.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/8_6_installation/index.html_gzip_a31bd987cefec39c08ca400a105ab4ed866f96653be0da7c1b0ec6506b041f66" +path = "static-publisher/static-content/file116.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/automation/anacron/index.html_dbfe621c9ec097f0093de34cb54756afbd8fe4ef7194d7b293f27aebd6207d40" +path = "../build/minified/site/af/guides/automation/anacron/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/automation/anacron/index.html_br_e73009d32cad01966debf3c84bb59759166bbe2e6c7395d48958f1cf7b4f4746" +path = "static-publisher/static-content/file117.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/automation/anacron/index.html_gzip_0ce664fd7774d296d7e642d2a11aeed2d46654f2f2ce1818879fdd8b23ea4a5f" +path = "static-publisher/static-content/file117.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/automation/cron_jobs_howto/index.html_731dad9b0a5eea169bd1965a47d437821a402376bd0572f09bc43f07acd8c1fe" +path = "../build/minified/site/af/guides/automation/cron_jobs_howto/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/automation/cron_jobs_howto/index.html_br_e24ca06410dc8c39dccab88ecc83fdfdb306906036a4622c1ecf5dbc20eb4388" +path = "static-publisher/static-content/file118.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/automation/cron_jobs_howto/index.html_gzip_608ed134e679376160ba3e50c23f5d7a7fbb1a95193448d02cad0835e5468447" +path = "static-publisher/static-content/file118.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/automation/cronie/index.html_4a9629d6481c878a45816148e104cd150817b88c7e75e10c1e8052f4ab944ba9" +path = "../build/minified/site/af/guides/automation/cronie/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/automation/cronie/index.html_br_b2ff8c6077b2d0118daf9da04119c4b912fe12cc5b802794109e0a2d8d184f61" +path = "static-publisher/static-content/file119.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/automation/cronie/index.html_gzip_c38108bbf035d8bb6b02c2d09096e38eaaaedbab6d94deb327dcda0ee62c4677" +path = "static-publisher/static-content/file119.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/automation/olivetin/index.html_cb4c0ac6cb2a81a8fd19bd485738126ff9c104bb535c38085ea783930b9db3d8" +path = "../build/minified/site/af/guides/automation/olivetin/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/automation/olivetin/index.html_br_87a10683df1b02a789f1a023cbba70f2a4c669dc29d6b530cad25b4148fc1909" +path = "static-publisher/static-content/file120.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/automation/olivetin/index.html_gzip_77cadc4582297a9a6ed5849553812a76c5c35eec51d5b0efb1f0a4bf9e06c175" +path = "static-publisher/static-content/file120.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/automation/templates-automation-packer-vsphere/index.html_cf887dc502d0f6c48fbd2ad23712bb63eec663e66d8a12d54a5bed2b0a5c7642" +path = "../build/minified/site/af/guides/automation/templates-automation-packer-vsphere/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/automation/templates-automation-packer-vsphere/index.html_br_de924a3657960217141f35edeee1d05f4be212127f13d0c8849692024ba14311" +path = "static-publisher/static-content/file121.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/automation/templates-automation-packer-vsphere/index.html_gzip_bf2e0e08aa9d830ed58ddd5a9e8ab02a619af88df307eb63160002ac4b3b8329" +path = "static-publisher/static-content/file121.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/backup/mirroring_lsyncd/index.html_05103a25e37a46784d268a071d10536a8d133c6a272f94bedab651f1f1f34fde" +path = "../build/minified/site/af/guides/backup/mirroring_lsyncd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/backup/mirroring_lsyncd/index.html_br_806186ec73bb6038b5824e6546be5945dbeaf32a929b15e178aaf49ccfa3b0b7" +path = "static-publisher/static-content/file122.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/backup/mirroring_lsyncd/index.html_gzip_5c820091141387cf54a6de6b327136bd09ad75cbc2d3564f5a78e107c8c75db0" +path = "static-publisher/static-content/file122.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/backup/rsnapshot_backup/index.html_5ca24faadf5accf284e6caea0b089f5a2a754537eb6764c4515a2d1cb311cf36" +path = "../build/minified/site/af/guides/backup/rsnapshot_backup/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/backup/rsnapshot_backup/index.html_br_fe46f7b0796543cbe47131a5ef5e09e68c714eb05ff0eff383ccc08f864e76f7" +path = "static-publisher/static-content/file123.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/backup/rsnapshot_backup/index.html_gzip_e7aba5759bebca9c3699ab40acb9f4ff63e46d61a06324d5521cb20c3aa7dc0c" +path = "static-publisher/static-content/file123.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/backup/rsync_ssh/index.html_0782169c9bfb3049df889d43fa61b5198671f081b92e7b9c29e6056093d1c95c" +path = "../build/minified/site/af/guides/backup/rsync_ssh/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/backup/rsync_ssh/index.html_br_634a0cfff59f440fdaf6b970ea854601f5ab4ca928838393bcbed8a85b087088" +path = "static-publisher/static-content/file124.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/backup/rsync_ssh/index.html_gzip_1a467373a18b0514d59361b512112c26e46bbe71ad42a529eeef1f48457917e9" +path = "static-publisher/static-content/file124.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/cms/cloud_server_using_nextcloud/index.html_03fe91fdb73e4e39b7805f5e1da3f70d7230da207bee478182a136afe86368b9" +path = "../build/minified/site/af/guides/cms/cloud_server_using_nextcloud/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/cms/cloud_server_using_nextcloud/index.html_br_e45937bc76c7b75db036d681ef72e01b4ae03c9add963396d72a712c96e4321e" +path = "static-publisher/static-content/file125.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/cms/cloud_server_using_nextcloud/index.html_gzip_f00796f9133107fa1201b49aa4e11bc38b1554682afc3add31eb37bc7922c73e" +path = "static-publisher/static-content/file125.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/cms/dokuwiki_server/index.html_5a81ce6f71b68de1d682fe8994e234a51a205d37001f861b366070ce668b42d8" +path = "../build/minified/site/af/guides/cms/dokuwiki_server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/cms/dokuwiki_server/index.html_br_13632ddd9b99582761b1e6637f2b67b8aa060ee119994c43852d6b84c0f93a72" +path = "static-publisher/static-content/file126.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/cms/dokuwiki_server/index.html_gzip_4e823b46914225cb439bdc7059b4207ad108722f5e9fdd649a8d0aad2e46fd41" +path = "static-publisher/static-content/file126.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/communications/asterisk_installation/index.html_adde8bfeab723a6a08b6f3f32cfaa649a16ccbd602b4ca315071b3be5e4fc720" +path = "../build/minified/site/af/guides/communications/asterisk_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/communications/asterisk_installation/index.html_br_8f439734fa5cc655834817d87d97c79b65ef18dae5c0d270fbd40e3c98fb3496" +path = "static-publisher/static-content/file127.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/communications/asterisk_installation/index.html_gzip_759bbe4ea1f726c4e9b8f2d89370fa1b0334ca6a9f109d222e73457d3bb37366" +path = "static-publisher/static-content/file127.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/containers/lxd_web_servers/index.html_400d7aa02d4f160889313ca33d31199bb812cc4d855d5c7f1700968343fc93f1" +path = "../build/minified/site/af/guides/containers/lxd_web_servers/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/containers/lxd_web_servers/index.html_br_852e5a3df9ede07e8479a3d2998d2cd785c155c7e07342d1c2fffbe16c2c178c" +path = "static-publisher/static-content/file128.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/containers/lxd_web_servers/index.html_gzip_aa14a04a034290425815c33786c0f323448f2fdb9dfcb052488a6c80f74f7207" +path = "static-publisher/static-content/file128.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/containers/podman-nextcloud/index.html_26ebd1799d8f7b1e9d024aaa153f2586b4d94a6e0adae56ae3d730be049dc6df" +path = "../build/minified/site/af/guides/containers/podman-nextcloud/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/containers/podman-nextcloud/index.html_br_4285e4c44120e7ae0c87c1395598502a5b9453c4fa3eced0e768fc5420569e32" +path = "static-publisher/static-content/file129.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/containers/podman-nextcloud/index.html_gzip_510ba2231c7f85d009a8d20ac0a7600d330c9b30168dabf03d239583b3daf67c" +path = "static-publisher/static-content/file129.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/containers/rancher_and_kubernetes/index.html_adf31a514dde8837c66f000778af3be11100c46d538da0c4fa31d0465f12c457" +path = "../build/minified/site/af/guides/containers/rancher_and_kubernetes/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/containers/rancher_and_kubernetes/index.html_br_9c7b6c7c7fcd8b4a5b90a0f17b0a044eac9b032ebf007d52380a4d220aa83f82" +path = "static-publisher/static-content/file130.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/containers/rancher_and_kubernetes/index.html_gzip_e6296d7c8e8a758c1cca2247dec76ad217735848c78f0a7e0e4f9f3572e847ae" +path = "static-publisher/static-content/file130.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/contribute/beginners/index.html_a6e5c775562480ffb848153506321b536a1cd3b057cdac3fcc1f63e1c9cc0e5c" +path = "../build/minified/site/af/guides/contribute/beginners/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/contribute/beginners/index.html_br_72956ba6485646da05380a439f6e67e11b7f955d7fbb9997ce0d58eb164ecfcc" +path = "static-publisher/static-content/file131.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/contribute/beginners/index.html_gzip_db388e58d893c347da9bae8324f9b0320aabef36aa8527b3e703e8af653dfc55" +path = "static-publisher/static-content/file131.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/contribute/createnew/index.html_840b5483867c6280dc1b4b2d9b0d0f720a0c205e0f6729b47bbc389a3c67a576" +path = "../build/minified/site/af/guides/contribute/createnew/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/contribute/createnew/index.html_br_9d282f574762283dce9f3438b6aa4c306c694477c2bb61c0163e1690e6ddce74" +path = "static-publisher/static-content/file132.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/contribute/createnew/index.html_gzip_5fc7c998fc51073e9c2ea35efaa1b45d7e24afb5a9a5825c7f14fbfc622eaf01" +path = "static-publisher/static-content/file132.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/contribute/index.html_dee493e4d3da18800e76f037d10e586a0c01863bd1fa9654c735be62cb962817" +path = "../build/minified/site/af/guides/contribute/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/contribute/index.html_br_b28d158f646475e29c09ca1bb35c971893a8d05764173ff6f55685c079232bdb" +path = "static-publisher/static-content/file133.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/contribute/index.html_gzip_6476db06f42f8f2d3798d12ae126ce0c58fe67fa4adfcfb6b7539281d5c8c875" +path = "static-publisher/static-content/file133.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/contribute/localdocs/index.html_3f3ec103ede92e41dc34a2180c218b48ede2e8a8588b19b9f7995c60e0124925" +path = "../build/minified/site/af/guides/contribute/localdocs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/contribute/localdocs/index.html_br_f401db7d3b631459331a13af4c8d2d643b8d9a7c0f543c4d34a1520a5fbd2a6a" +path = "static-publisher/static-content/file134.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/contribute/localdocs/index.html_gzip_088cdd658baa8330c144c13a886493ff2a14c28af9725f0bd87db4ac8b507214" +path = "static-publisher/static-content/file134.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/contribute/localdocs/local_docs/index.html_580827c60e21a9c4bc2194502cafc17f6a1f7a0120256bcbb28bca2bf7c1a457" +path = "../build/minified/site/af/guides/contribute/localdocs/local_docs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/contribute/localdocs/local_docs/index.html_br_978f6d9db2dc195d4cf37e6a56cb1a217af73f1d3f153d9c461c43e70baa949e" +path = "static-publisher/static-content/file135.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/contribute/localdocs/local_docs/index.html_gzip_c0362da247a0274283a6665f58b5d421e866a059a6ce7b2c71035cf46701c30a" +path = "static-publisher/static-content/file135.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/contribute/localdocs/mkdocs_lsyncd/index.html_ce2d25aae015230bdfafea9ffadc226582cf864da54dc0e4ed08618473461afb" +path = "../build/minified/site/af/guides/contribute/localdocs/mkdocs_lsyncd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/contribute/localdocs/mkdocs_lsyncd/index.html_br_535e4819cb0f7c56ef680216fef1e283ae9b5f36b99fd5794ea027702b8c8e4f" +path = "static-publisher/static-content/file136.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/contribute/localdocs/mkdocs_lsyncd/index.html_gzip_ca179153e41ffd05e8bb01250da08cb25bd8faea730f1ee13fdda88f1c80f7f9" +path = "static-publisher/static-content/file136.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/contribute/localdocs/mkdocs_venv/index.html_f7053e606709e48ca02dbc60c37f0f1ec2b8038a95b76173be6d16c562ca6210" +path = "../build/minified/site/af/guides/contribute/localdocs/mkdocs_venv/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/contribute/localdocs/mkdocs_venv/index.html_br_db771ddf69c8e14fc7b5b3606d6899439a4265ce7ae5158ff4912b69a33a270b" +path = "static-publisher/static-content/file137.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/contribute/localdocs/mkdocs_venv/index.html_gzip_1fbee11a57ceb45006ea8bde1bcd6e2c1d5cd3d3f9caabcd67c26a569cd4fb10" +path = "static-publisher/static-content/file137.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/contribute/localdocs/rockydocs_web_dev/index.html_73451a73356b81928c3a37b7da1354988e3269ebe95a97bfd7f54ed813acb393" +path = "../build/minified/site/af/guides/contribute/localdocs/rockydocs_web_dev/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/contribute/localdocs/rockydocs_web_dev/index.html_br_51a4de806eb49093681d61db91c28187acb136c998d783e6ced39254a2657829" +path = "static-publisher/static-content/file138.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/contribute/localdocs/rockydocs_web_dev/index.html_gzip_1f790ba39265c60a3db9968455f6855a7b3140aab663be21d25b650c220b55d6" +path = "static-publisher/static-content/file138.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/contribute/localdocs/rockydocs_webdev_v2/index.html_8d7ce1c40d94344b96836f8a0094428f5da8013c152896358787acba683f256d" +path = "../build/minified/site/af/guides/contribute/localdocs/rockydocs_webdev_v2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/contribute/localdocs/rockydocs_webdev_v2/index.html_br_9c0045e8d41080652a35ac0f10e379136ef15cba7f0d5a0e2cabc0faf889c827" +path = "static-publisher/static-content/file139.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/contribute/localdocs/rockydocs_webdev_v2/index.html_gzip_440cb4248fb6c7a337519d8c6988a475d07eb55258e0b0cc7f52acee0d2302c1" +path = "static-publisher/static-content/file139.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/contribute/navigation/index.html_adf8497e75a849b536d5af4a27887b585e46f0a6902625e8de4a977b9e67f88a" +path = "../build/minified/site/af/guides/contribute/navigation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/contribute/navigation/index.html_br_a21e0113f292be9bf42736c507e819f3b2dc4a58e0659f2993dbfd7c627eecc3" +path = "static-publisher/static-content/file140.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/contribute/navigation/index.html_gzip_f10b7c992eff24fbb83bc814755ad05dc7a2e463f4b68308d54f42b93dfda393" +path = "static-publisher/static-content/file140.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/contribute/rockydocs_formatting/index.html_371c178177aff2103dbaddc8bdc852fd611eb25a2835d91f243874d55d4c0a05" +path = "../build/minified/site/af/guides/contribute/rockydocs_formatting/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/contribute/rockydocs_formatting/index.html_br_e77e88c65cf3bc29e4c3c6cf222106164ed30857b89e55eac77dcd5c08240fd2" +path = "static-publisher/static-content/file141.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/contribute/rockydocs_formatting/index.html_gzip_ebbf5c0152a6ce48a1e828d9ef350dcb0481a03b87cd0f04278317f1e5fe52b0" +path = "static-publisher/static-content/file141.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/contribute/style_guide/index.html_8e30dc1a31bd46f90b3beb41b099c096a9bcc1ff1b69086013de132360d26c9b" +path = "../build/minified/site/af/guides/contribute/style_guide/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/contribute/style_guide/index.html_br_dad5a1b6b542e0d3ec5c2fdf7c4ea5cb67f386f0e6dd4bdd5858dffeb049edff" +path = "static-publisher/static-content/file142.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/contribute/style_guide/index.html_gzip_43d985207fd6f497a8760f514a186ba6c686c3fcc8dd5c0674b7b530cecff46e" +path = "static-publisher/static-content/file142.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/custom-linux-kernel/index.html_cba3bd03c826fbf28b1bf4d672160a1f5f323acdba7bc282ede92f62f17ff2fe" +path = "../build/minified/site/af/guides/custom-linux-kernel/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/custom-linux-kernel/index.html_br_0761cfcd343782882564df8bd92245b7f47ef25f6484dade449307ea8e8f7846" +path = "static-publisher/static-content/file143.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/custom-linux-kernel/index.html_gzip_364b1bc0caf620c10a599e2b152b898a1bfcec78311c5bd4f195ed7f66aa6ba1" +path = "static-publisher/static-content/file143.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/database/database_mariadb-server/index.html_eaa6626adeda8283d6de0089c6667e97b5217ba7064535441ba581c86e4d1a8d" +path = "../build/minified/site/af/guides/database/database_mariadb-server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/database/database_mariadb-server/index.html_br_68a89eb75cd8d0cea759ba74e7f59f0872d553a4dcbcb81f09a7f12ad56acee8" +path = "static-publisher/static-content/file144.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/database/database_mariadb-server/index.html_gzip_399e9c22b8028c654c4bde84cf37147a26d9109481939cf21f2e88b931c28048" +path = "static-publisher/static-content/file144.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/desktop/kde_installation/index.html_0a3cf6e6e2846786b67d265294c3b22a973390b323f75ccc2465cd66f2b63451" +path = "../build/minified/site/af/guides/desktop/kde_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/desktop/kde_installation/index.html_br_6fb115856d5a13eb9e694c63fad87a71c1e410411737e459f78daf8c6e6aad53" +path = "static-publisher/static-content/file145.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/desktop/kde_installation/index.html_gzip_c2217fe94d2504728596de745305528b528b6611135eaa199ba191e672bbc300" +path = "static-publisher/static-content/file145.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/desktop/mate_installation/index.html_5fb2c46cf95153d6a4f351ccaabeacf640303c425c3019aa367d23f9e4a1d792" +path = "../build/minified/site/af/guides/desktop/mate_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/desktop/mate_installation/index.html_br_6fb23ad2ef094a95480e522c537cfba446fa1730a2ca04b8d31e8cbc8c2e5169" +path = "static-publisher/static-content/file146.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/desktop/mate_installation/index.html_gzip_f13f92fe1edade943db735f62e8a7825fde922b0d99acbbb78137d2b222caa4c" +path = "static-publisher/static-content/file146.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/desktop/xfce_installation/index.html_2e02bb8497cdad6c93d80abff9ce019be206376cf9b271342563f53770df87a3" +path = "../build/minified/site/af/guides/desktop/xfce_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/desktop/xfce_installation/index.html_br_4db67fbfa09fef5a6b20855aaa057f9c4ea5feee3f2a036f3a4ce9629eefae0b" +path = "static-publisher/static-content/file147.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/desktop/xfce_installation/index.html_gzip_2f2fa494729d713fcbc5e01971bbf671eba982f3ee32283ee1c834d3858e2f6f" +path = "static-publisher/static-content/file147.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/dns/private_dns_server_using_bind/index.html_beaec3e793e6427cd005823d2bd6644a4daf0d1a0b05ab14d08cd23ca4d604c3" +path = "../build/minified/site/af/guides/dns/private_dns_server_using_bind/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/dns/private_dns_server_using_bind/index.html_br_17e4992b0840b9ad2ea0ea77611bce47fa075911bf83679e22c13a8de4c4062b" +path = "static-publisher/static-content/file148.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/dns/private_dns_server_using_bind/index.html_gzip_19ab12bc0459757f3d20405b510c301a3abe0122cca7cc040b86d1734628057d" +path = "static-publisher/static-content/file148.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/editors/micro/index.html_8f96ee79d840ad521109ab7e354b03ca077b4e4ef9f0c3b70812949bb2616c18" +path = "../build/minified/site/af/guides/editors/micro/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/editors/micro/index.html_br_04d4857349ec4a43ddb83a1d85dcacd6a027cbbfed6fb1ba793994c48f84c44c" +path = "static-publisher/static-content/file149.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/editors/micro/index.html_gzip_6eb394cb316eb84106135a8abe1852d8a57d537748e3a8b497c7a988189faa9e" +path = "static-publisher/static-content/file149.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/email/01-email-system/index.html_19f720e11b19b7fc5cd28c37a61b970eb0d34c2c4207e4669f8ddaf28a8a3489" +path = "../build/minified/site/af/guides/email/01-email-system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/email/01-email-system/index.html_br_67ebc81ab09f69d36c8f585dbac2cbb9d0fb05eca50d2277299ebf91b66a3705" +path = "static-publisher/static-content/file150.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/email/01-email-system/index.html_gzip_a8724f604a3d49a4fcc6e4e6304e6df87205b16e0f27328380a712a8c60b5d81" +path = "static-publisher/static-content/file150.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/email/02-basic-email-system/index.html_ee72b26baacaebf0afe641043b34f6db6b2ff7900f7d1acb4ea05f37104f04c2" +path = "../build/minified/site/af/guides/email/02-basic-email-system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/email/02-basic-email-system/index.html_br_a945e32d936de0a04b2de1b3d602a76012ac0e6f9cf78a73882a5c076a35d1d0" +path = "static-publisher/static-content/file151.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/email/02-basic-email-system/index.html_gzip_f21df3ed47744d9477972b1379f4a3c6c621a8a9abc5e3202ca75a678d9d373c" +path = "static-publisher/static-content/file151.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/email/postfix_reporting/index.html_9a01a79fa124e0ef9fe015794f5e2781e1c38fa7a9d91889062609d9b03f2356" +path = "../build/minified/site/af/guides/email/postfix_reporting/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/email/postfix_reporting/index.html_br_fea0326a2dcc45a574c3f946dd437dd523316b4ee128bb0f8d082b1842cc4b9c" +path = "static-publisher/static-content/file152.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/email/postfix_reporting/index.html_gzip_a7c1c8c4ec5ffbec4b2fad844a9d77f9bd6bd86d23fdbe859e4c78e66bc31364" +path = "static-publisher/static-content/file152.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/file_sharing/glusterfs/index.html_6bc48c1d4bd77171b85ebd18add633a9002d8c139a8675b23b510ab4640a9b55" +path = "../build/minified/site/af/guides/file_sharing/glusterfs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/file_sharing/glusterfs/index.html_br_30e2947cfc637cbb58c6f5154e19c714702d4d3c803342e19cfeae681ff9732b" +path = "static-publisher/static-content/file153.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/file_sharing/glusterfs/index.html_gzip_e4d3acf8204bf6a843722fb5e8920149b043ede66a4a428b9030531d4c9b0a60" +path = "static-publisher/static-content/file153.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/file_sharing/nfsserver/index.html_0e630777879b3ec541dea26ffd7412f59efb788b96e5038dd08525b611ab89f2" +path = "../build/minified/site/af/guides/file_sharing/nfsserver/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/file_sharing/nfsserver/index.html_br_065df73267eaa586bc93486ed90ddc90ff3143449c6922cd1e499c6bc9a6dd9f" +path = "static-publisher/static-content/file154.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/file_sharing/nfsserver/index.html_gzip_79f911102748353ebdea59b7df35d5068286f60c99fa3a4a09d726ad4d4104d6" +path = "static-publisher/static-content/file154.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/file_sharing/secure_ftp_server_vsftpd/index.html_f97ea62a64cfba6d86bb3c88b7e2d3282ddd902851114c4fd5dc085c25a27e62" +path = "../build/minified/site/af/guides/file_sharing/secure_ftp_server_vsftpd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/file_sharing/secure_ftp_server_vsftpd/index.html_br_d7a9c9b62f9005a463b6f6a9fd0371533827375c1308c1686fcef10f0659cc1f" +path = "static-publisher/static-content/file155.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/file_sharing/secure_ftp_server_vsftpd/index.html_gzip_179ed2d0307e3db81880c7786ed220674dfe7057a1f779b71c9c0eb9a9375d1a" +path = "static-publisher/static-content/file155.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/file_sharing/sftp/index.html_248ff6b9e5becdcc25d9ad8bf36ef9d77587b37bcfe9fd34d5c7104820fa6aea" +path = "../build/minified/site/af/guides/file_sharing/sftp/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/file_sharing/sftp/index.html_br_729dc59c49322136f37faacec1e7312707fadf16846634f3cf5dc4ea5192068b" +path = "static-publisher/static-content/file156.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/file_sharing/sftp/index.html_gzip_fcecaa6ce5606db85d53113ae9b092ad51ff11f79da912638bfa6b24e01217c9" +path = "static-publisher/static-content/file156.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/index.html_7b4f9a456a5aa52ac8b746562cf261834623cfc6ec3937552cdc2e0840966533" +path = "../build/minified/site/af/guides/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/index.html_br_745323dbfb5bd87a4ef6ad19aef49e1e6ee7e1499a546e88595866a987677fd8" +path = "static-publisher/static-content/file157.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/index.html_gzip_1b576e4d88695b6633cc2d4d0a493ba0c18d9294381b80c1f02a975e52556382" +path = "static-publisher/static-content/file157.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/installation/index.html_7c0847e91c336214a6e2f860becec069ad0dedac262802318b66ccaf68dec3f0" +path = "../build/minified/site/af/guides/installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/installation/index.html_br_3277377308b918b6ded595e3fb666eb2fa2047e159797e4e7e617274adfe952f" +path = "static-publisher/static-content/file158.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/installation/index.html_gzip_7e11a74b964239132c43c7266f3a468a1d5e668481348376d201d4ce3948d425" +path = "static-publisher/static-content/file158.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/interoperability/import_rocky_to_wsl/index.html_de9a1af1174567a620785b10f54ee7f9b758a5cfc597f452d134a8ecbd4b27da" +path = "../build/minified/site/af/guides/interoperability/import_rocky_to_wsl/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/interoperability/import_rocky_to_wsl/index.html_br_5c59225b379b4b1ca0d94510b49d1f4ede7fd72a56b8b2c007b38524522aee86" +path = "static-publisher/static-content/file159.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/interoperability/import_rocky_to_wsl/index.html_gzip_8cd7893e14ba87df558ef9168fc93505bceddb71bb2fed4e4f98b5acb7742695" +path = "static-publisher/static-content/file159.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/migrate2rocky/index.html_e5b87ded0bcd8a90e65fbfa2027ab153adbccfdb8391f464b7a28ec2766dc85d" +path = "../build/minified/site/af/guides/migrate2rocky/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/migrate2rocky/index.html_br_07d2e527400afec1234e03059a15b2d0aa26341913ae88f1c31febaf37511f71" +path = "static-publisher/static-content/file160.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/migrate2rocky/index.html_gzip_162f1eab205e3cd1ee6fb4e5a19694aafe4662c0d7a87cd3d0d24f08e726b332" +path = "static-publisher/static-content/file160.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/mirror_management/add_mirror_manager/index.html_bfbb0e5a6b9b2104e64d5354be7eda261a560ca5eacb22be3bbfbe06acc48de6" +path = "../build/minified/site/af/guides/mirror_management/add_mirror_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/mirror_management/add_mirror_manager/index.html_br_dc14eaecf05729bf65606e479e44cc8234636991697567acdba84a33a978065f" +path = "static-publisher/static-content/file161.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/mirror_management/add_mirror_manager/index.html_gzip_0e8714110dd4bcd9ee3d24b2e6e77cfec5a245086d6c48f14d70d423fbf5bd1f" +path = "static-publisher/static-content/file161.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/network/basic_network_configuration/index.html_99130f2e3e14508afdd546807d2354a9274061102c48d91795eb9400b25d10d8" +path = "../build/minified/site/af/guides/network/basic_network_configuration/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/network/basic_network_configuration/index.html_br_3a2546aaf701f1449aacf61891f9540ce3b5332ce66065de520fc3fccdbfb6ea" +path = "static-publisher/static-content/file162.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/network/basic_network_configuration/index.html_gzip_55b16ab9da28d5ddd1500d8dd6f367bd97e7a15c12adfe5f5408e0b0e31f6d26" +path = "static-publisher/static-content/file162.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/network/librenms_monitoring_server/index.html_4fa59f90195e541f487cad17c808d0301a56e84c0ebeb952b16587dc5fa2a191" +path = "../build/minified/site/af/guides/network/librenms_monitoring_server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/network/librenms_monitoring_server/index.html_br_1b31fd63a73bda1b4297569356797803dd40f09bc2c72ac6dcbd66f6af1c41f7" +path = "static-publisher/static-content/file163.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/network/librenms_monitoring_server/index.html_gzip_cbd5279936018160fd03b0ab94e900e536c476e352e0380e22ce6a6ce3d575b2" +path = "static-publisher/static-content/file163.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/package_management/dnf_package_manager/index.html_cdc9758745703525b5216fd88cd1bb747af76e5176dc55fb3c8bce773950b51b" +path = "../build/minified/site/af/guides/package_management/dnf_package_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/package_management/dnf_package_manager/index.html_br_dcce1b317bb268f121903b0a1625205a457a1737e43919a1b615fd9db1401a03" +path = "static-publisher/static-content/file164.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/package_management/dnf_package_manager/index.html_gzip_fd208126177353f72418e817ac719590867b44f729e07deea02f037bbebc3be8" +path = "static-publisher/static-content/file164.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/package_management/index.html_5559b82894ae8f7bf0cea209101517953c02fd6bd5529d534148d267459be602" +path = "../build/minified/site/af/guides/package_management/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/package_management/index.html_br_713ea4a85c24e188587d7f573261b42680aa17da5ebe928fd443b29ee8f4472b" +path = "static-publisher/static-content/file165.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/package_management/index.html_gzip_1b5f802ab2ebcca2d82c0c6221229cf9b24daa60d3e98488eedf179efbc08aba" +path = "static-publisher/static-content/file165.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/package_management/package_build_troubleshooting/index.html_8279d4559038945ebd533f1b0673e7cd9d9d60ca0355efd62482862a24a6d4cc" +path = "../build/minified/site/af/guides/package_management/package_build_troubleshooting/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/package_management/package_build_troubleshooting/index.html_br_8101f37e49eccc6b512cd52428e8bad5b75b574e1390f058c382a4c698a14e4d" +path = "static-publisher/static-content/file166.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/package_management/package_build_troubleshooting/index.html_gzip_b496624e6a2a7f7c42a618936b55e803dedbdd8c3775467d1a69654fc786a05d" +path = "static-publisher/static-content/file166.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/package_management/package_debranding/index.html_266092ab2247f41e2ddeac8a45c612238447897e3a01bca9f3f2b288963bdfdb" +path = "../build/minified/site/af/guides/package_management/package_debranding/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/package_management/package_debranding/index.html_br_7be8bb1abe10aa94233eb3f236be5b71ab70800ea4f020b1fedc969c8b366e2d" +path = "static-publisher/static-content/file167.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/package_management/package_debranding/index.html_gzip_e7392a1529c4bda8d1251a04172454cd6850f1bbb1dfff18c4018d2d5564759a" +path = "static-publisher/static-content/file167.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/package_management/package_dev_start/index.html_a4bd623fd31c354b0327250704d23fc34193e9b4f066044abc2ab00cb0124170" +path = "../build/minified/site/af/guides/package_management/package_dev_start/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/package_management/package_dev_start/index.html_br_e1de94dba0303c0414f4fed465871c14de096e046bee137d652311c801011d2b" +path = "static-publisher/static-content/file168.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/package_management/package_dev_start/index.html_gzip_51ee13ed8fbae8f6d3a705aa9b712af5ababef37986b14a51b9febe1a4fc4840" +path = "static-publisher/static-content/file168.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/package_management/package_signing/index.html_9e385f9d23303d4013d2df22681925cf88d2acaccb3f1a145d3425a1d8e61795" +path = "../build/minified/site/af/guides/package_management/package_signing/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/package_management/package_signing/index.html_br_8ce0b1ac9f6879f32557db8698af45194730a2f001ae2d3f6fa3c1a71408f646" +path = "static-publisher/static-content/file169.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/package_management/package_signing/index.html_gzip_75da73196ec59642b21245bdcfe4c49ad90ab22c4e4530718005ea853bbdedc8" +path = "static-publisher/static-content/file169.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/proxies/haproxy_apache_lxd/index.html_520dfce805006f748f7bbdb6499e3ff03c9e93af8d6473bdcd803d3a54bf66ff" +path = "../build/minified/site/af/guides/proxies/haproxy_apache_lxd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/proxies/haproxy_apache_lxd/index.html_br_468fd6c5192dd25683cb2637e2c8592a417fea99160cfd515d587bfc1031f0ba" +path = "static-publisher/static-content/file170.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/proxies/haproxy_apache_lxd/index.html_gzip_3005142abeda8c677f9c0f59bdcb01f39f24c0569c182d3b7cd1ca8af79da626" +path = "static-publisher/static-content/file170.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/proxies/pound/index.html_e7b7c3bf6ed6c3502145d1189f85d669651df267b3905c09bbaf31a886ea86b6" +path = "../build/minified/site/af/guides/proxies/pound/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/proxies/pound/index.html_br_96dd669cdb19ccda2a7d95a66289974d26172c77275a956b8ea6203793b9efb5" +path = "static-publisher/static-content/file171.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/proxies/pound/index.html_gzip_e3bdcfadf37b5e4ddf2fd3d29f521ee303df37a27fadc94092cca9c68f997aed" +path = "static-publisher/static-content/file171.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/proxies/tor_relay/index.html_f010f201f65a938e733f7e8f535620dd33ddbf1e205d56d4d790bad47066b1a5" +path = "../build/minified/site/af/guides/proxies/tor_relay/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/proxies/tor_relay/index.html_br_3f764c69a2d733d8f6b9697354e7f463e0bc66ff24aef361169c3ee693380ce9" +path = "static-publisher/static-content/file172.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/proxies/tor_relay/index.html_gzip_fbfe683817d0d8ecc3c99895e8f74dab3a106a98c6b250d0467bf21f091eee70" +path = "static-publisher/static-content/file172.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/security/authentication/active_directory_authentication/index.html_19db222e724ded98eb7e691f404d4a619f1b10f7aa30eadf3f51b493873758f2" +path = "../build/minified/site/af/guides/security/authentication/active_directory_authentication/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/security/authentication/active_directory_authentication/index.html_br_cd66f4d384440686b649ca739670d87db5fefeeb3503ba561bc7f424030fdd8b" +path = "static-publisher/static-content/file173.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/security/authentication/active_directory_authentication/index.html_gzip_88c02247891d3ab4438c5b586ad7790c3a1e3481b9833599ceae256f8b45db81" +path = "static-publisher/static-content/file173.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/security/dnf_automatic/index.html_510ff08d13d438ec3081ff063a9566b914547f7d096909141af0bde625982b8a" +path = "../build/minified/site/af/guides/security/dnf_automatic/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/security/dnf_automatic/index.html_br_c20a20f5933ab3771ca7b473dd5e4add11f498a7cc5c4d5ac672677277fd2807" +path = "static-publisher/static-content/file174.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/security/dnf_automatic/index.html_gzip_edb8ca582fc908216067d6530176e32b0804b10f9313b61c1986a7d0c1756e69" +path = "static-publisher/static-content/file174.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/security/enabling_iptables_firewall/index.html_efdc016731ceb7c6afd72badca3b99b21af8c48f5f1e85e0d3f91c1ee8d8ffcd" +path = "../build/minified/site/af/guides/security/enabling_iptables_firewall/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/security/enabling_iptables_firewall/index.html_br_cf90c0ba0bf448ff0a34ec63214210de3294173e0041ea1b92d621d92cf5a940" +path = "static-publisher/static-content/file175.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/security/enabling_iptables_firewall/index.html_gzip_41ceae29b8811821cbf2f6f2bfb5faad44a5a4015a505cfbacd244de36ac4acb" +path = "static-publisher/static-content/file175.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/security/firewalld/index.html_4261c006f25206565139ac6295967f3bba8d90f0e90f38eccb4e29c82251f0c0" +path = "../build/minified/site/af/guides/security/firewalld/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/security/firewalld/index.html_br_828a3652425d5b2141f6f2ad3ec3f84dc4257907decdc3794cb899d80d82bdca" +path = "static-publisher/static-content/file176.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/security/firewalld/index.html_gzip_90f3e5f7b3ffc870076f20eaf7e8b6cd8853065c954d5cbb9ecdf9c8dfb5449f" +path = "static-publisher/static-content/file176.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/security/firewalld-beginners/index.html_87ab46473d33b0cb6cf4596ac6b21c72cfd09a46775f91dbb018dd634673b191" +path = "../build/minified/site/af/guides/security/firewalld-beginners/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/security/firewalld-beginners/index.html_br_5ed4ff12edbc180f0c5bf557c7f3a35e1820c2ba993da65090cea100a0bf2d36" +path = "static-publisher/static-content/file177.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/security/firewalld-beginners/index.html_gzip_e10135f8b418f5e91080959b57b9418f2e7bc6e1ad5c970a722203686e40b797" +path = "static-publisher/static-content/file177.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/security/generating_ssl_keys_lets_encrypt/index.html_395919023c1e4a6d226cc50b038b5cf8f45bdc380452ab96b74c8de3ce825c48" +path = "../build/minified/site/af/guides/security/generating_ssl_keys_lets_encrypt/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/security/generating_ssl_keys_lets_encrypt/index.html_br_9ed09682ab87539a9c5bfd2ef73c14b8efac79ebf6f5cf9eca77bdd568cb4773" +path = "static-publisher/static-content/file178.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/security/generating_ssl_keys_lets_encrypt/index.html_gzip_8433c11e94f5ab75f6025a3e51590b29c78057223f3763bd3ecd4996f9e5a26f" +path = "static-publisher/static-content/file178.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/security/learning_selinux/index.html_f59376f80c826982891c7ed23430cc42f7dc5802f486badd5d5dac4a50fe87a9" +path = "../build/minified/site/af/guides/security/learning_selinux/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/security/learning_selinux/index.html_br_d1d484937d45b8c3f946d0c21dbaea5f978c1a99bad08689ce4f48ef97e7da67" +path = "static-publisher/static-content/file179.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/security/learning_selinux/index.html_gzip_c3e1df643656926cfe38e021aafe33c2d044bc85176c8d9793211208888042f4" +path = "static-publisher/static-content/file179.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/security/pam/index.html_69c9c7894a1b41346315d4872d8abe27ba8aa4020b3ea5f506b65667c678e295" +path = "../build/minified/site/af/guides/security/pam/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/security/pam/index.html_br_17cbccd005656b063a2b2680c7368eaf9eea1802eb708128864c24b3310a472e" +path = "static-publisher/static-content/file180.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/security/pam/index.html_gzip_4c59c60238db9f343c77cd8dffb50851892c6e2f3fe1a6f678ffa5e3ace96d0b" +path = "static-publisher/static-content/file180.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/security/ssh_public_private_keys/index.html_8a89dab6722a6711b1b43a760196cd907feb65243b84415094b265c3ff4c43ae" +path = "../build/minified/site/af/guides/security/ssh_public_private_keys/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/security/ssh_public_private_keys/index.html_br_1abcc9a28987ec093553abb28156f422a68018ce9ec9d6669cdfd4b46e406545" +path = "static-publisher/static-content/file181.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/security/ssh_public_private_keys/index.html_gzip_0fe18288aa9b7d4ce55c91e9047e78a51fa09875d17af3490c0ab4696d0318ab" +path = "static-publisher/static-content/file181.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/security/ssl_keys_https/index.html_7c30f94c8225007e5d9a059fccac8aa81261db995a85709a73641b51f0375714" +path = "../build/minified/site/af/guides/security/ssl_keys_https/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/security/ssl_keys_https/index.html_br_7beae4d1103dcc24b3607abe8b09c3c90526fa0db379b27dcdf4f0599d688576" +path = "static-publisher/static-content/file182.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/security/ssl_keys_https/index.html_gzip_8804049be45d6a04f15e5163d309cbfcd6364f1ecffa89ccf55bd36704a0c889" +path = "static-publisher/static-content/file182.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/security/tailscale_vpn/index.html_1dc03ce709a231f7d20485785c38ac331b249fea5ca98f9c1b276d51a16d6d5f" +path = "../build/minified/site/af/guides/security/tailscale_vpn/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/security/tailscale_vpn/index.html_br_0274673f16674db44f4e21740899817f99fe2f19b8b24fea49657e6111e901e5" +path = "static-publisher/static-content/file183.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/security/tailscale_vpn/index.html_gzip_ea9cf17cf86637ada46663dd2212000b175d55e7ae44d0d2e0f495eeb8864537" +path = "static-publisher/static-content/file183.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/virtualization/cockpit-machines/index.html_f7b2760092e000554c9792fd74e56cada5b4b18002baf28356906f1a7631cce1" +path = "../build/minified/site/af/guides/virtualization/cockpit-machines/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/virtualization/cockpit-machines/index.html_br_8dd9077f0d69a084822775c8fba4a2b8ceaac075e3a84f1647c357a4e9866429" +path = "static-publisher/static-content/file184.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/virtualization/cockpit-machines/index.html_gzip_4243a4a91031c8c81297072649b98d2fb9ef0c33cd0f42c1bbcce74870dfd68f" +path = "static-publisher/static-content/file184.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/virtualization/vbox-rocky/index.html_d4f3c7d06c51b06512579d148f2322514557280f18f68383fecba9e51731c89c" +path = "../build/minified/site/af/guides/virtualization/vbox-rocky/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/virtualization/vbox-rocky/index.html_br_2f2457ece641e930b714568c1fdbd55e37b943ee03844fe58e43e45a293371d0" +path = "static-publisher/static-content/file185.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/virtualization/vbox-rocky/index.html_gzip_d3b417752795b0db082a2b16d9fc86ecb505dfe0ddb79365b1222b1436b2de16" +path = "static-publisher/static-content/file185.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/virtualization/vmware_tools/index.html_56d1d06ccd8f38f128fe410f799c79212e5e43931dc90298fcff7e19ecbbeb9f" +path = "../build/minified/site/af/guides/virtualization/vmware_tools/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/virtualization/vmware_tools/index.html_br_41085050b6a89ffa4eb56c4faa03d7869041a867ab285136d207276446be9e70" +path = "static-publisher/static-content/file186.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/virtualization/vmware_tools/index.html_gzip_f2d5c53809847d8735c43a4123e522f1567e756fc5d287e61a1d48418e5b5352" +path = "static-publisher/static-content/file186.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/web/apache-sites-enabled/index.html_fb23395525d29d782201a5445a5ab1e79fc025ff0127ba727bc6d04b7c0cfd0c" +path = "../build/minified/site/af/guides/web/apache-sites-enabled/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/web/apache-sites-enabled/index.html_br_dfcee64171e039c46861c0527a100f5191a6596e9fe7374927b2801229ae1815" +path = "static-publisher/static-content/file187.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/web/apache-sites-enabled/index.html_gzip_2905c5e0c8827bd948c4caa4a2a031b6646288a14bba5e51c6995be780a3c303" +path = "static-publisher/static-content/file187.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/web/apache_hardened_webserver/index.html_8f36a32a264b317ec7589e21d84354c76924a901df977774cba553695f2f7362" +path = "../build/minified/site/af/guides/web/apache_hardened_webserver/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/web/apache_hardened_webserver/index.html_br_fd773d20d498b6bc390dfede958547804a296f650a5562abb0caa7d7e2957936" +path = "static-publisher/static-content/file188.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/web/apache_hardened_webserver/index.html_gzip_36c29d72f88d096e8ba3701fe0436056696dd05c6ab500007cadd9c6cd10d8f2" +path = "static-publisher/static-content/file188.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/web/apache_hardened_webserver/modsecurity/index.html_5ef1a66385c2c67cd0df5484441b5e2f20275430767a7a16dbe13e445753a515" +path = "../build/minified/site/af/guides/web/apache_hardened_webserver/modsecurity/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/web/apache_hardened_webserver/modsecurity/index.html_br_3b9678453b0f94ef5f9d7be189104c6f568c2f729a04d31eaf4314c4a31dd8bb" +path = "static-publisher/static-content/file189.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/web/apache_hardened_webserver/modsecurity/index.html_gzip_e456cfc9f9e477383c5569792f171390420484dab7e83638491b078b89ade1e2" +path = "static-publisher/static-content/file189.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/web/apache_hardened_webserver/ossec-hids/index.html_694dabacae0e60ec46042f854513c4373329964e2274679d9b28175e21bc4343" +path = "../build/minified/site/af/guides/web/apache_hardened_webserver/ossec-hids/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/web/apache_hardened_webserver/ossec-hids/index.html_br_84f35c4ddef1adccf1759a520c5a4f58f9ebfc6b73962efd0579161c2e6cefd1" +path = "static-publisher/static-content/file190.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/web/apache_hardened_webserver/ossec-hids/index.html_gzip_9b65134515825a290d498a53a66a06781995145162116e57559498813aa1dd3b" +path = "static-publisher/static-content/file190.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/web/apache_hardened_webserver/rkhunter/index.html_e945a37f16b5c47d5ffc5e6a42bd59642d6c2a68081c4c3e7a718da654097402" +path = "../build/minified/site/af/guides/web/apache_hardened_webserver/rkhunter/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/web/apache_hardened_webserver/rkhunter/index.html_br_eada9b146e23f25c27713100be4a6d0917f8c1489bd20a0848c03d32bd66f6f9" +path = "static-publisher/static-content/file191.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/web/apache_hardened_webserver/rkhunter/index.html_gzip_57e1faf9d3afcb9327c77ebf53364158e4e07c9db4a0b6b28587f60d222246a4" +path = "static-publisher/static-content/file191.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/web/caddy/index.html_894b72f3dacd448ac81d070c018e50ce0bfe49e9814185e0b4056603c8fda5dd" +path = "../build/minified/site/af/guides/web/caddy/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/web/caddy/index.html_br_1018ed11980f653149753fd1a627cc133031d97e95af5b481e13216998fb021d" +path = "static-publisher/static-content/file192.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/web/caddy/index.html_gzip_651c7b1119294c76fe0ed7c35dc5f5ff39358781d560489667f02a3f4cb55df8" +path = "static-publisher/static-content/file192.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/web/mod_SSL_apache/index.html_cd65aa75c79cfec8d919caa6798b6628d34a64dedd55e7b65ff358d720bf8b50" +path = "../build/minified/site/af/guides/web/mod_SSL_apache/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/web/mod_SSL_apache/index.html_br_484a4fd33888fc604534bf11db951713b9c953d0f6acabaa00d1a282afdf9014" +path = "static-publisher/static-content/file193.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/web/mod_SSL_apache/index.html_gzip_44235caedf82113d43974d9b7cfbee2940aab7f5112461c01c05b6c18703d497" +path = "static-publisher/static-content/file193.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/web/nginx-mainline/index.html_087417a364fc6c468d766791cb2551f584554648674221363a0a51da766c57d2" +path = "../build/minified/site/af/guides/web/nginx-mainline/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/web/nginx-mainline/index.html_br_b7f9a377bda122eaefb2252c469a76a573747148668cbeaba4aa8aea99791786" +path = "static-publisher/static-content/file194.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/web/nginx-mainline/index.html_gzip_e42fc4f778b41d9b42e6ef1c503690096dcc546687097d55d74d5ce779bece97" +path = "static-publisher/static-content/file194.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/web/nginx-multisite/index.html_907376f26d6a71537ac6e7c7e09c7a0ede8b1480f2488e3c9e50626689d82b59" +path = "../build/minified/site/af/guides/web/nginx-multisite/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/web/nginx-multisite/index.html_br_0d7352a6ca60809d8140f93ce18b18318f49ddf83711e7a6cab0d6855c50b2b2" +path = "static-publisher/static-content/file195.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/web/nginx-multisite/index.html_gzip_65acd71b370499662868b73912f69dd82dea3cb263f9add1c88432c4514d4789" +path = "static-publisher/static-content/file195.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/web/php/index.html_6c9c7843e2de36f9c042256785ff57f20520b28384fd2c8359310c1678a4a56e" +path = "../build/minified/site/af/guides/web/php/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/web/php/index.html_br_6faa6b83f326e47b26cbff3be7314a22961200544c23466cd62c2fbcce5f90b7" +path = "static-publisher/static-content/file196.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/web/php/index.html_gzip_6ea6144cb28ddf2dca674ce3eca496a981ce8852028c394360dbccddad0ecc3f" +path = "static-publisher/static-content/file196.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/web/tor_onion_service/index.html_2cfae09e837bef9e6e2d6509c34aab57898edbf387a3d8cbfae076b1af84fcad" +path = "../build/minified/site/af/guides/web/tor_onion_service/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/web/tor_onion_service/index.html_br_9e85b0bbfc8579cb8d5b5ac1f3a1e06e21b10c1291f41a9a82aa0dc3f3ad9e79" +path = "static-publisher/static-content/file197.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/guides/web/tor_onion_service/index.html_gzip_8be9b190b7617e1233820a81822c74a17c3e4d2af7c0e3c6a3b5515d8c49420a" +path = "static-publisher/static-content/file197.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/index.html_4853ee824a4c8d682e12741e8803dd69282975a2e6835ac04f53ec23d011e774" +path = "../build/minified/site/af/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/index.html_br_870345a30d18d41d0cd4c117e8011028fe5d5a875487ad250c37d198e052bf32" +path = "static-publisher/static-content/file198.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/index.html_gzip_7092293f6ea0f21ed7ae72b2f958aa90b197118151223ba3bd02e82c3c5d2e99" +path = "static-publisher/static-content/file198.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/labs/index.html_df5f85748a256c76deb004ba34985d9d354aa5837ce3d3cf748bc777625abede" +path = "../build/minified/site/af/labs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/labs/index.html_br_e1ead4e00b2456e80fdf7946a900f4b964bd8282862280f806f5145dd858f07b" +path = "static-publisher/static-content/file199.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/labs/index.html_gzip_2f9da4c09eede7641936794d3fdda11c7bf82d39b76bebe02cbf897cd7995c89" +path = "static-publisher/static-content/file199.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/labs/networking/lab5-nfs/index.html_22367e6d43138a90f5c5fe9af0313067669deb9fffd05b1f004dfc4523be9ee0" +path = "../build/minified/site/af/labs/networking/lab5-nfs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/labs/networking/lab5-nfs/index.html_br_1cbf0361b884b2b5e7f0e98a7cfb1123ff0c0a45ca66353afb13366a25e58628" +path = "static-publisher/static-content/file200.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/labs/networking/lab5-nfs/index.html_gzip_b24b4c767aed6a43834c90c08d986992caf6ad5670d8e4db5eb813ece8fb56b8" +path = "static-publisher/static-content/file200.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/labs/security/index.html_4a0e0c94fd3858de5ebe097391f15392144162ce67bd4bd4d82a01e1d00d80ff" +path = "../build/minified/site/af/labs/security/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/labs/security/index.html_br_a7a0c98d30611d8301b1b7192285c0ab1dcdd1edb179c77a9b445dbe554e2808" +path = "static-publisher/static-content/file201.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/labs/security/index.html_gzip_cfd62a128f1076c765045d4ee322ecb82638974ea265818d6ed2c939625c7f89" +path = "static-publisher/static-content/file201.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/labs/security/introduction/index.html_f315df7a29ccb3de7ac6810a7166d409099b015f9a8686e9c34d88ae9dcfcc8c" +path = "../build/minified/site/af/labs/security/introduction/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/labs/security/introduction/index.html_br_7eb6c7fab62d67097f165ac6d215f92362bc78d3560c408e2569fe8249f73af0" +path = "static-publisher/static-content/file202.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/labs/security/introduction/index.html_gzip_f7435c8c2f99a5ce7ca87620542a5251f13ce9a411c8a38a63cc03d428c2411c" +path = "static-publisher/static-content/file202.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/labs/security/lab3-auditing_the_system/index.html_8cb29eb8a771d9bc4a2c371bd38443ca057cc4f224e225c63be2ad188f019ea4" +path = "../build/minified/site/af/labs/security/lab3-auditing_the_system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/labs/security/lab3-auditing_the_system/index.html_br_5f0f88144dd373851721f9dc6df739b7e894142055c0efedce12a17547b73491" +path = "static-publisher/static-content/file203.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/labs/security/lab3-auditing_the_system/index.html_gzip_ccfb63cd4a1d07ddefd5aa52cdd7e37731bc982faad354c4e2d2affd94947054" +path = "static-publisher/static-content/file203.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/labs/security/lab8-iptables/index.html_bd6045825e365ddf2ece6d6351a072a8ef1889dad25cc70adc078eadbcbcda12" +path = "../build/minified/site/af/labs/security/lab8-iptables/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/labs/security/lab8-iptables/index.html_br_38bdc55cca362a038f47e7590a8eba63880b56842517569f301d7d55200ce4a1" +path = "static-publisher/static-content/file204.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/labs/security/lab8-iptables/index.html_gzip_cd9df85b18c2775afa155359f2a55729af5f29c615db4917e43c06b5b4f88b70" +path = "static-publisher/static-content/file204.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/labs/security/lab9-cryptography/index.html_d74071a9b2ce6699629c148fd020b9fcdf50c276a5a87f5b62810155b402c9d9" +path = "../build/minified/site/af/labs/security/lab9-cryptography/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/labs/security/lab9-cryptography/index.html_br_dc076be9726b28b925cdd9eafce54b192e7fa3f038e82ef92152c56f048cc893" +path = "static-publisher/static-content/file205.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/labs/security/lab9-cryptography/index.html_gzip_3a64f2ff55ac7392b9d308695889fa149215f2be1126604a2d818e60e4a58769" +path = "static-publisher/static-content/file205.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/labs/systems_administration_I/lab3-system_utilities/index.html_ab0ae3c7b61747a950f0d708482dc91db4969697f9ef25911ce29caab28b6fbb" +path = "../build/minified/site/af/labs/systems_administration_I/lab3-system_utilities/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/labs/systems_administration_I/lab3-system_utilities/index.html_br_73d674a7bce8a42341c34a1386fff02d22f4cf1b9cdb79c69249504a2f8ef87e" +path = "static-publisher/static-content/file206.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/labs/systems_administration_I/lab3-system_utilities/index.html_gzip_d8f2808e2031adf69a7c8290236814f7b3f1bb7af7316afb4686df8a6ca13a0f" +path = "static-publisher/static-content/file206.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/labs/systems_administration_I/lab5-networking/index.html_7bf53f0a44cba6e13e9ff366495646c0961eed19d1185faf50da0f9a7b71b107" +path = "../build/minified/site/af/labs/systems_administration_I/lab5-networking/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/labs/systems_administration_I/lab5-networking/index.html_br_61b8bdd5adffdec7d70cf8efae7dbc8cb7a9b42c651f5476f36c6c90b1b1d2ae" +path = "static-publisher/static-content/file207.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/labs/systems_administration_I/lab5-networking/index.html_gzip_2a83c2b012f20c1995d8f1c915f970481226ee53b6e45d86dff4df81b33ecc0b" +path = "static-publisher/static-content/file207.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/labs/systems_administration_I/lab6-user_and_group_management/index.html_64a90c4a047602069f2a83b5c04935b7aabc7339bf73bc52ef1e0be0d9462515" +path = "../build/minified/site/af/labs/systems_administration_I/lab6-user_and_group_management/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/labs/systems_administration_I/lab6-user_and_group_management/index.html_br_a295fda14baea50a8315e429f28ffd740d4784f2fa921f7165cad925471a5a20" +path = "static-publisher/static-content/file208.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/labs/systems_administration_I/lab6-user_and_group_management/index.html_gzip_9c8b0134f274c5125d2da9d4e222daa16f7304220f82b9cf9ca9347056805029" +path = "static-publisher/static-content/file208.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/labs/systems_administration_I/lab7-software_management/index.html_513565d9dd0df6267f44ba083b404ea9dee5efa5f5daeb42357053a67038e76e" +path = "../build/minified/site/af/labs/systems_administration_I/lab7-software_management/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/labs/systems_administration_I/lab7-software_management/index.html_br_243b992880c57fbe52ff4b4396465c87337083a3057be9d7041000c3c2530c28" +path = "static-publisher/static-content/file209.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/labs/systems_administration_I/lab7-software_management/index.html_gzip_8165989afb0aff0062f3db57dee10d10f3880e7122e3c20a8bdc92f187e396ca" +path = "static-publisher/static-content/file209.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html_526d5252be70aa0c26d435571607275f166e546fbd8284253985a05563d8f76c" +path = "../build/minified/site/af/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html_br_b3dce8156c97ea8d6b973cb6f9b035398876f868fc875aad8689c66e9a585e26" +path = "static-publisher/static-content/file210.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html_gzip_e1a3221a18305ebd9310aaad029c1ee9d173651bb62b255c6a74e3f37e73cf24" +path = "static-publisher/static-content/file210.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/labs/systems_administration_II/lab3-bootup_and_startup/index.html_a0663b3f0fe84c433ad0bfeaa053005924a524b94cedd6257e902413c962fdee" +path = "../build/minified/site/af/labs/systems_administration_II/lab3-bootup_and_startup/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/labs/systems_administration_II/lab3-bootup_and_startup/index.html_br_368a9bfe1ae93a46747362a72ef29286e727c708fa4121688059bff969e22afd" +path = "static-publisher/static-content/file211.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/labs/systems_administration_II/lab3-bootup_and_startup/index.html_gzip_e8dd0ab049e5feaf5720620301e6b91337748ed46cb3b69c86ef794b49f41f83" +path = "static-publisher/static-content/file211.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html_47ff554eecb41cac106c74576d49c4377dd3e4605e1aaa22500f0cf6f779aa3d" +path = "../build/minified/site/af/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html_br_dac8e2fd62cc0be08ac7fdccab6389224b655a5f8b38f3eb3acbd43e94820229" +path = "static-publisher/static-content/file212.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html_gzip_4e7cab38e84f16a158c3b8fa67d5456f065f202b1a1d1cbbc97f024271220e7e" +path = "static-publisher/static-content/file212.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/labs/systems_administration_II/lab6-the_file_system/index.html_f379df4574712936d7b712eed02f20c361bcedce385f222145e99269a0029131" +path = "../build/minified/site/af/labs/systems_administration_II/lab6-the_file_system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/labs/systems_administration_II/lab6-the_file_system/index.html_br_c504e595ad3ed399675f71ad9e560042bc09f202b73db8627d6b3f12e601359c" +path = "static-publisher/static-content/file213.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/labs/systems_administration_II/lab6-the_file_system/index.html_gzip_57ae3190e66e09dd4874b0471a6329828844340e936409a1c2dcc86e6022a482" +path = "static-publisher/static-content/file213.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/labs/systems_administration_II/lab7-the_linux_kernel/index.html_c031e7ce334aab8b9876a3c1ac5893327b33350bb363a7530cd7e87fc69594e0" +path = "../build/minified/site/af/labs/systems_administration_II/lab7-the_linux_kernel/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/labs/systems_administration_II/lab7-the_linux_kernel/index.html_br_a45c88869ee9a3b6bcdef01d2d9da3795aa49100640401a4370698319e500222" +path = "static-publisher/static-content/file214.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/labs/systems_administration_II/lab7-the_linux_kernel/index.html_gzip_91a49765fc7264f07d3a263cff48b543b43ec270b57638c0c0fefa0547595c69" +path = "static-publisher/static-content/file214.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/release_notes/8-changelog/index.html_4b4be974f2dd2f82698287b8e5b26cbe632baab03d40bc6504c155f3bb5ad630" +path = "../build/minified/site/af/release_notes/8-changelog/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/release_notes/8-changelog/index.html_br_5e5ebd35f92a12c4153235bb336957f422f2a74c93e6a896bb856c56d8ee4ace" +path = "static-publisher/static-content/file215.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/release_notes/8-changelog/index.html_gzip_87155945b7fa89daba95564fe4f0ea93c197b86e35248dd336ac59eda82ea662" +path = "static-publisher/static-content/file215.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/release_notes/8_4/index.html_d6b0028b90a5688b2c0edd265d665c014e176f2aa48ee2cb1f33adbbef261a98" +path = "../build/minified/site/af/release_notes/8_4/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/release_notes/8_4/index.html_br_312996f07839b1f2eb4043d602d7ff8dcd2594d12e9cd05a4e17a67dbaf9ff6f" +path = "static-publisher/static-content/file216.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/release_notes/8_4/index.html_gzip_1a22bc1cf852f8130d994f847783e65873e9c5ef48ac0a2a2a4c62c11915a9be" +path = "static-publisher/static-content/file216.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/release_notes/8_5/index.html_11bb9b336479d9206fc7a74b65a7235b96dd108c6718ede1e8843d245d7a41a4" +path = "../build/minified/site/af/release_notes/8_5/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/release_notes/8_5/index.html_br_6f407aaa79270ff4856db9c5c3c1fed817973af04f758e0de1cbbd0f94ed2221" +path = "static-publisher/static-content/file217.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/release_notes/8_5/index.html_gzip_217a7e4fb96d95dde2bca21e55ccafd6e46ab34969da7d9004a16e3315aee08f" +path = "static-publisher/static-content/file217.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/release_notes/8_6/index.html_6b8a6089ff3a6c96f6328784b938b7fd1b368a6c60d084050b27ebd6ff2f7e75" +path = "../build/minified/site/af/release_notes/8_6/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/release_notes/8_6/index.html_br_b4883f58ec1dcb27a952fe87c220df1927fc842cd2dc4d9c79f376032887f161" +path = "static-publisher/static-content/file218.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/release_notes/8_6/index.html_gzip_d72be3ddea6cafea85a7b05e800a94cf30bcbbe7902ef3263513fb7bfd1e54e3" +path = "static-publisher/static-content/file218.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/release_notes/8_7/index.html_992e90cb81db0082fb4331eb8e0ed589fad5cd4b2dc5a0419bc2b7dd1c8cb281" +path = "../build/minified/site/af/release_notes/8_7/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/release_notes/8_7/index.html_br_5fb7844fd41918379012f953de131e90c3d5bc67921dea7b27ff0d65aab8af1a" +path = "static-publisher/static-content/file219.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/release_notes/8_7/index.html_gzip_da7f74c253500e8179c9631cce4eabaa04579c22cea571cfa1ed60416f4cd9f4" +path = "static-publisher/static-content/file219.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/release_notes/8_8/index.html_2cb65b160605275ed38d78d286979662843011605d192c8b4eb68fbeebb98bb3" +path = "../build/minified/site/af/release_notes/8_8/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/release_notes/8_8/index.html_br_bfe49b5587ed0852567e8cbf607c16f7e9e9c7b0b68d0899ca263c9fef8b4d0c" +path = "static-publisher/static-content/file220.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/release_notes/8_8/index.html_gzip_37aac1c2be8c3654485b0d9feabd1532e45b12b6ce36aff1aaa7c698664da1fa" +path = "static-publisher/static-content/file220.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/release_notes/8_9/index.html_8adb81e061cf58bccb8b07b0d49bf36adfe6c3d5cc507859730f2f58dc977830" +path = "../build/minified/site/af/release_notes/8_9/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/release_notes/8_9/index.html_br_4fc2fbebed4820056e37f94d796620f5aea45f2fc884bac1d0482bafc046728f" +path = "static-publisher/static-content/file221.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/release_notes/8_9/index.html_gzip_04726facce08d1f9fa8eed87d9438307bb14126740cfd4006cf06fdcc73dd0f1" +path = "static-publisher/static-content/file221.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/release_notes/9_0/index.html_83b4dd16e70028c7ad8a61896fefea6e6e4802959d999c7270665e5de2f41aec" +path = "../build/minified/site/af/release_notes/9_0/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/release_notes/9_0/index.html_br_f6baac5dc2c6aa3594e79b8f1ac647d5ff812e8b970ee171fcd744238a0e7495" +path = "static-publisher/static-content/file222.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/release_notes/9_0/index.html_gzip_12ed41fe4f8dfc4e54a2a0e6204ae8ff2035454b9d68142586ee8ea8db8034ce" +path = "static-publisher/static-content/file222.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/release_notes/9_1/index.html_2d2beea737169fe9264ca3747e81fbc38612f8257d77367479b1b2995d905125" +path = "../build/minified/site/af/release_notes/9_1/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/release_notes/9_1/index.html_br_8e103cf2ad047b255a35f833be9a247d16b5852e86152086184a55c28c26445e" +path = "static-publisher/static-content/file223.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/release_notes/9_1/index.html_gzip_5879303552e2ad056b2fcda597707bca0341c62caba7051eb187688e74d22ab1" +path = "static-publisher/static-content/file223.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/release_notes/9_2/index.html_2b79fd4e9e3d74e375a905edef9a71080a134237387acfd00e60ded38ad0196c" +path = "../build/minified/site/af/release_notes/9_2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/release_notes/9_2/index.html_br_da3d5cb916d18d77f5aa39ab0970f86c66b8005f106ce2b5ef872707abbce194" +path = "static-publisher/static-content/file224.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/release_notes/9_2/index.html_gzip_c651c2d64353f2b1d25f67a3c2d085967a7901c04d104f9c0737cf28edf015ce" +path = "static-publisher/static-content/file224.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/release_notes/9_3/index.html_82f0974e66e69a033ee4d718bc847d86f8485f12adf540e58c80a1cafcd9352f" +path = "../build/minified/site/af/release_notes/9_3/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/release_notes/9_3/index.html_br_4f64567489b6b0aaa674b91db3a915393cb59982e35c7a50fe1517db44f81dc9" +path = "static-publisher/static-content/file225.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/release_notes/9_3/index.html_gzip_6d8eebdc4b1dc15476fad9de143b5e3dd54fd32514ec865d734e48ce8170a986" +path = "static-publisher/static-content/file225.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/release_notes/index.html_1e797f54c57e49fb0d39e3a1876ca421a75c8e0a8b5d268d5cbc950ea295ae36" +path = "../build/minified/site/af/release_notes/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/release_notes/index.html_br_4f61f1b249c098f3ad1923b7bf900fe996e0692c3a050194cc7ea3c233045bb2" +path = "static-publisher/static-content/file226.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/af/release_notes/index.html_gzip_4c9629074390584325fa0c413f5307d7d6cb2e917e4e61bf4de6d572e1260c0e" +path = "static-publisher/static-content/file226.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/10274380.02240f69.jpg_e959ca8326d4c874b05c2b20bee8669e63f11f360b95b728660feec32c73f489" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/10274380.02240f69.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/10274380.02240f69.jpg_br_b5501880c3ba7fda11f77a6a458a52159aaca7805151789903a7b843fefd4f21" +path = "static-publisher/static-content/file227.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/10274380.02240f69.jpg_gzip_01f4fb4775e77dd89ef4dbe196f4a9384b4a615c463f894dd3c20350d39a4418" +path = "static-publisher/static-content/file227.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/10740572.02240f69.jpg_3adc2355f7808d6e7ef410d15405aa9da888af58cccb5c9a87c00d3b3c88f870" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/10740572.02240f69.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/10740572.02240f69.jpg_br_498fbafab55ce0b1fa6e8bab355cb4f1acc4a562d5134a199a542e1470f252b5" +path = "static-publisher/static-content/file228.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/10740572.02240f69.jpg_gzip_da0cbecc9a57936e1ce3f82139b1a5ce4e813b291b3848c2f5848da48a7de300" +path = "static-publisher/static-content/file228.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/10765858.02240f69.png_5a67feaeb55b4c2f7ff488baa0dab4136704510f9fd59d04b46bb22bdf5681bc" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/10765858.02240f69.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/10765858.02240f69.png_br_2b83baab5ae2b6a4bb2e060045515f5259d688e64b8b1d81dd851862a83ba6c9" +path = "static-publisher/static-content/file229.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/110078361.02240f69.png_70839dda38cb28feae8f0933220095d63a7099a541d6d7250108a2125ae96688" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/110078361.02240f69.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/112796922.02240f69.jpg_107c482c6cc04708372d40041061569accd2dc42aa7a5ebcc9a192f0dba52e28" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/112796922.02240f69.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/112796922.02240f69.jpg_br_56a01d7141326d7930dda80337faf38a4342f577868ff0131ae1e6251aa14965" +path = "static-publisher/static-content/file231.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/112796922.02240f69.jpg_gzip_b9dd06982842def74fc1ba7e2d5c16905e412157602dfc44c240ea915e8e2413" +path = "static-publisher/static-content/file231.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/11469736.02240f69.jpg_ac4fe8ed17545f65ea4e7f9fc0d72a6ad204232e51125051a7e9f2bdccacb977" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/11469736.02240f69.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/11469736.02240f69.jpg_br_6733afeb6863dd18e25ea6a0dede60558a7577008f0146eabb4d026a98e8aeee" +path = "static-publisher/static-content/file232.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/11469736.02240f69.jpg_gzip_ee431430f4a88f8809645a0d6361874ac7f6609ff4be12c1c15eb3211853b6ed" +path = "static-publisher/static-content/file232.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/11520535.02240f69.png_cebadca03431f3d095c1a968b273a77ccf78cbce82fc79b0aca25d59dd9fa441" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/11520535.02240f69.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/11520535.02240f69.png_br_c2c58b38096fa3f1c76c8532ef8865b682e19af7d30c4d2d8beb62a1fabb78ba" +path = "static-publisher/static-content/file233.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/11520535.02240f69.png_gzip_6fce6b68219fe2ec3083a5d86f2b220da11ffa581f87fce5e60f4fa4555f6e12" +path = "static-publisher/static-content/file233.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/119525559.02240f69.jpg_9444f3c1983838b5f70a2c7b27f2ab97ff1be569bdf807eaadfa0cd6049207fa" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/119525559.02240f69.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/119525559.02240f69.jpg_br_0438e9ade711e0c79985d746152a8a398a7c9619d289dfb8e54f038a2f432ece" +path = "static-publisher/static-content/file234.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/119525559.02240f69.jpg_gzip_1988fa90c985759ca72b04d4e4d1f4e92b6da1de1454c76143c6101d03cc9ba7" +path = "static-publisher/static-content/file234.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/12031564.02240f69.jpg_1206859864e61d550cce5cd48669efe73b685b87cf843fc5fbc87495a9910ff4" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/12031564.02240f69.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/12031564.02240f69.jpg_br_c82b2703464ad12463a6f813108fc2b82dc00c8e35736f35cc7e7303067953e8" +path = "static-publisher/static-content/file235.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/12031564.02240f69.jpg_gzip_a9d1225183746f7634174ef38b861f420cae5dc06c90eca2ce349f3e657a156a" +path = "static-publisher/static-content/file235.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/1215780.02240f69.jpg_aa7fe19dd12e75ef0dbb50d81831dc1192a79525499f4e93eb702ef8c7e61514" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/1215780.02240f69.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/1215780.02240f69.jpg_br_eda2cde2ae583404cb9ffe858ceead4cd22d06a2880b1745841bb5e1a955f386" +path = "static-publisher/static-content/file236.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/1215780.02240f69.jpg_gzip_827e6283b117656b53dae66d99619c1a6d4c66878476787b6eeef8b2e5308f3b" +path = "static-publisher/static-content/file236.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/121867206.02240f69.png_a72fa0e1ece6edd67ed5ebe82f3863ee1793bcd4a91c347b65eaea5f054200eb" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/121867206.02240f69.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/121867206.02240f69.png_br_64f77ba77c8e30ed40707e47282bda24ca5359f176d0f25bb8490f893d0ed6c8" +path = "static-publisher/static-content/file237.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/121867206.02240f69.png_gzip_75e1bcf441eae125b153fe26633443a9119c4a7e0ba83df4647f60f4928beda5" +path = "static-publisher/static-content/file237.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/122839775.02240f69.jpg_5ea8cd907604ed2e615f89826434e812e5daa5dcda8e509cdb1f5dc7ce0d52eb" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/122839775.02240f69.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/122839775.02240f69.jpg_gzip_2bd2baa43e71aa0eac8e0adac55334088e19fd152c85c99f1fb0926463fca6e3" +path = "static-publisher/static-content/file238.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/12524081.02240f69.png_2a1ad2749830ef8e2dec8cf4accd64d3c27de3171cc76edf659bed48e65c594a" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/12524081.02240f69.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/12524081.02240f69.png_br_34e7c74766f6623df681976c216e5dc8e8681be8ff086575e00c2ddf6327f959" +path = "static-publisher/static-content/file239.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/12524081.02240f69.png_gzip_9f6701946bf527e821aa09349da27af52c8badbeb8b54ab6f7cf7cb2e35203ba" +path = "static-publisher/static-content/file239.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/12569720.02240f69.png_018672f57839c707ef2103a71ffc387637de4bbc976f7ce38bafeb6367c90929" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/12569720.02240f69.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/12569720.02240f69.png_br_c507fe86daad31a57d2db513110a224fba87f8bd647bd2fcff04d5dc62f0c5d1" +path = "static-publisher/static-content/file240.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/12569720.02240f69.png_gzip_131df6008be51786ea633aba966a737a660be122d849d7f2cd2d99e07b87e2d4" +path = "static-publisher/static-content/file240.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/125879.02240f69.png_82b9f356195f88f5ca9757fa2095d76acf51fecb6eaf92f69977cff01c0ede19" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/125879.02240f69.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/12746940.02240f69.png_6b314ee910125b8b424437c977ecf3bd8641806a015852239577f3333fe177d6" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/12746940.02240f69.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/12746940.02240f69.png_br_569765a160ea6a3ac44a28e445b587df7c9108ff2fe89291928ec7b1b384d237" +path = "static-publisher/static-content/file242.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/12746940.02240f69.png_gzip_58b5e5fd749b709a03a2a81756563b71414e0bab6bbba6ef5bad03c4b34be499" +path = "static-publisher/static-content/file242.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/12948692.02240f69.jpg_c94fe6a857c0a87bec90655a1aedb3492e48e783093fb063c909627f634f1f0f" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/12948692.02240f69.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/12948692.02240f69.jpg_br_2a009937115624785bedeb8f7a5e584ffef5d35eb21598596f067e7e79e59c2d" +path = "static-publisher/static-content/file243.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/12948692.02240f69.jpg_gzip_b4e4c503bec46ff1ac560f91df914cbf0c524dadd26c822885ddaec0b120ccff" +path = "static-publisher/static-content/file243.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/13090619.02240f69.jpg_0a30101afff404d465b553f9cdabc070bc483000072ad365a51608719707634d" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/13090619.02240f69.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/13090619.02240f69.jpg_br_a5a2ef8e75d503233a88ac9adb5e7aad00fce94060ff4deebac4947490ad647b" +path = "static-publisher/static-content/file244.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/13090619.02240f69.jpg_gzip_37c5e87fbc856ea068a58cf7131a3ca19a1105beb1dd2d7d1e88504686b4d72d" +path = "static-publisher/static-content/file244.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/13157282.02240f69.png_8cc1ce43c55e2931b526b7e12a298cf2ea933fbbabef12ce513c2cb1d70b24a1" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/13157282.02240f69.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/13157282.02240f69.png_br_a912c48b0ea9098d9939eb40fd63af06c2c2f4690a33d5a48ea264b8da4eaca1" +path = "static-publisher/static-content/file245.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/13157282.02240f69.png_gzip_61a20577e564779a78c7e77f693ea95d2e4c1ad5f18b361790f43545ae5c938b" +path = "static-publisher/static-content/file245.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/133841094.02240f69.jpg_628a43cc845cd5eb61e88cef880798c237845204f83d9dd21fd846ffc5df96fd" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/133841094.02240f69.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/133841094.02240f69.jpg_br_fd30c4d13f73d5b9e9992790bcf9d520134051545af5c72ef87ae7621b8b8b5d" +path = "static-publisher/static-content/file246.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/133841094.02240f69.jpg_gzip_4543770e6f3bcfc6fef774ba8a103d2b73b15ca71080d77a2a45c416db557e58" +path = "static-publisher/static-content/file246.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/13901864.02240f69.jpg_cb61c490977448f1d8399e6c50a312d3b4c15231bf9830e7a0f578441d6d2daf" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/13901864.02240f69.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/13901864.02240f69.jpg_br_8e1ad21903aab20de1b8f3fbb1b4e61f10711c3b58899f406db746cf3132a5c3" +path = "static-publisher/static-content/file247.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/13901864.02240f69.jpg_gzip_4d2bed80c3716446bb50c3d6dd0d6917255fa82ebcea0fe9c0d68364ca675001" +path = "static-publisher/static-content/file247.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/1445107.02240f69.png_a2025b20f14aa6f8c17cb41fb8f9b2538e4b4e8ce3ccd7c4e54a093dbac97587" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/1445107.02240f69.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/1445107.02240f69.png_gzip_85d5e85751609199dddbb103f9ce7345b2c7ed034ca90792a233afc5f3827b4f" +path = "static-publisher/static-content/file248.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/15173198.02240f69.jpg_e90e4641648c388e633db7b22f538c3758359ab5082e0e4baf29b38599ba0b9b" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/15173198.02240f69.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/15173198.02240f69.jpg_br_6605e09c869dbc67207db3358fdfb0a07391be58cac03de25f66562dbdfb85b8" +path = "static-publisher/static-content/file249.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/15173198.02240f69.jpg_gzip_bbad68a66b0aec33c0f23ede5482392454878776cbf3312b01ce721ed5d02c86" +path = "static-publisher/static-content/file249.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/15235219.02240f69.png_a856e501e1140b06ee87ffd6161d6011f385450a97ad3ddd69aa5d7ea26a9b04" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/15235219.02240f69.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/15235219.02240f69.png_br_6bb7971718f3aca4471b278f5a9dfc9d7fe3913be08fbdeaf7b1a990d2cf47e4" +path = "static-publisher/static-content/file250.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/15235219.02240f69.png_gzip_1707968309dea9b325d1436d1872c55ca16f8c046b7957ab2a8b9d232621e7d2" +path = "static-publisher/static-content/file250.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/16193241.02240f69.png_87eab51c78d31e2d82217327fa587a8c33087956faa7e808d50d0c96312ffa28" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/16193241.02240f69.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/16193241.02240f69.png_br_7d13b6891aafb3566cc909e674cdd612ed6d6600ac9804ca54902c78f6411014" +path = "static-publisher/static-content/file251.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/16193241.02240f69.png_gzip_83d1c6ea9d581ff02e0198c79a2bd4373c7eb30b405d82da2466dac5b5d4ae05" +path = "static-publisher/static-content/file251.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/16643747.02240f69.png_6d2fe4f145fb69e53223f2de7909c89f8596a4dbe04fc6749ba7e789a4bded0e" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/16643747.02240f69.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/17178592.02240f69.png_5c4d35139ce5e8205e663f02329d4be7625e5163d2e480a660067534b2820b59" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/17178592.02240f69.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/17178592.02240f69.png_br_63bf3fee69893313c9e9b0cd1926bc2a260513283e9ec159bb21b57e7e7da90f" +path = "static-publisher/static-content/file253.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/17178592.02240f69.png_gzip_fcefc1e9c3023392ce9effae62ba3846a2164fdedb7bcbd44fc6544ed0b6230d" +path = "static-publisher/static-content/file253.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/1754056.02240f69.png_9ac9011bb8b6f40b06030db88aa387f10cc70dd7074781507e3c6dc0f85bc6bb" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/1754056.02240f69.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/1754056.02240f69.png_br_f1916f147fc27b3ac2674f03f3dc9e4eb2298333d1efdcb3de9308ee9fa982c5" +path = "static-publisher/static-content/file254.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/17833417.02240f69.jpg_cca73f77d93ed78550ba1387bad6c3bd1e75a0e3406497598df31a03d2a6f641" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/17833417.02240f69.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/17833417.02240f69.jpg_br_b9e77a5443e569382f3516014614385201aa4364e52969e5814277d4f4faa332" +path = "static-publisher/static-content/file255.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/17833417.02240f69.jpg_gzip_3969ed08d04ba05c1e63c8ec378d1f4c31ed59be4472350bea23f8f45825ae8e" +path = "static-publisher/static-content/file255.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/17993169.02240f69.jpg_7f2a2ab44de68c2b4e7d91faa5fdbf4b1c4a1565dca7e2b59d60b5fb0138f38b" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/17993169.02240f69.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/17993169.02240f69.jpg_br_52b5b10e42f9e6cfa36f084ff2b40fb6d7e6755f589a99a021a0a7b442279579" +path = "static-publisher/static-content/file256.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/17993169.02240f69.jpg_gzip_b256329b5b496ca95b3dae13e8a70f63c7072d5ae8cba258b5c09798dc328ce6" +path = "static-publisher/static-content/file256.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/18002181.02240f69.png_322342a8d7b462e04243a25153d1d1063e8d650bc76d85ef4ed167bfebe5f385" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/18002181.02240f69.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/18096435.02240f69.jpg_e96890a85bc6068f195300277b53a7f929eb5ff50d4ecbb71051123fe6c60d19" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/18096435.02240f69.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/18096435.02240f69.jpg_br_b94173edd592bbe6b1b62f853fffbefc5abdfa5caba4aa56f6b078dcbe0ef96d" +path = "static-publisher/static-content/file258.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/18096435.02240f69.jpg_gzip_b0677338b1f31e5ab97bc74d365f6609675ee9bd65c8ef0e8dfac9afb3acb8cd" +path = "static-publisher/static-content/file258.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/18314360.02240f69.png_fa7fc3014e268ed05c3f70b214d9e604b526068be27ef8f17b728db5604ec951" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/18314360.02240f69.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/18314360.02240f69.png_br_2c1ce81e91cbbedb30f513a1c3ca3a8c7a9d320607a68ac1b393c18ebd6b14b5" +path = "static-publisher/static-content/file259.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/18314360.02240f69.png_gzip_a2b2d9cfa572ea1ebeba74b0ba3dddcfd288fc0c4edacd1b02090af9fc741f0c" +path = "static-publisher/static-content/file259.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/19212264.02240f69.png_473cea93c6c865d95aaea97696ef53b855c3cf595dbeb125c52230e6b618cfc7" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/19212264.02240f69.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/19212264.02240f69.png_gzip_5ddc8d17ccf06eb8c8be5d82916423402ba7e7ff13d05de346eb28623e9c938d" +path = "static-publisher/static-content/file260.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/20312281.02240f69.png_031d6b3b71c8e1fa69d918bd24b4249cf1fa8d184e848693e0e914eb50625788" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/20312281.02240f69.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/20729061.02240f69.jpg_7a16a156859c8937e3af37abf2d365a6c2fe9c18f8b7ffcbd9567e2d9c2ca432" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/20729061.02240f69.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/20729061.02240f69.jpg_br_6a33bc50e435cd08e46c7b26ea575c43ce569eea4ec668c29cae3545e7ed8795" +path = "static-publisher/static-content/file262.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/20729061.02240f69.jpg_gzip_b3557f8cc9386f3a02b129bb1d683f469c3e892b0713d8aac778ac141ae2e705" +path = "static-publisher/static-content/file262.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/20755861.02240f69.jpg_a47078096fc6a8f8293b283d142d5f0bd0c8a662062ef4bfb50a905ccd895284" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/20755861.02240f69.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/20755861.02240f69.jpg_br_c915cf1266db7fbaa613f0ba754008b59b59a479b9770e7f1a22a4dc125f6b51" +path = "static-publisher/static-content/file263.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/20755861.02240f69.jpg_gzip_7f28d3a193ef4ad60ebb37a72a6f78531ad2fef7000162396fd4a05d4398d4ad" +path = "static-publisher/static-content/file263.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/21030747.02240f69.png_9b0cd6a86cdf856269a181f020c9585b6202450edc196b86ab565c31c4b1ffad" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/21030747.02240f69.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/21030747.02240f69.png_br_f8819d5a099526d928f41d72f2d8e694d171c0d3415dd8e8730f6c3e45441818" +path = "static-publisher/static-content/file264.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/21030747.02240f69.png_gzip_e48f9bb55ef096ad24561253a70129f5ca740d1e9221519d55c6bc1add9eefd4" +path = "static-publisher/static-content/file264.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/22313054.02240f69.jpg_640989fa93fa45471ff9c4f02e094d7aabb59e830b9dfdc478a9a5ecc8dbb41d" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/22313054.02240f69.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/22313054.02240f69.jpg_br_c1d8f51a7d62c538e8c0303a4cc5b380891183eb1d5abfc07e5b76462b795e24" +path = "static-publisher/static-content/file265.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/22313054.02240f69.jpg_gzip_90796fd5f436b72f6c6b83fa13e7e8ed45df79830058da5f3f020ba7e7cc28a6" +path = "static-publisher/static-content/file265.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/22327045.02240f69.png_4e9dd016fcabac555ed5b7af9d76cc9fcafd75cb59ed7f1b083314cf1485b50b" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/22327045.02240f69.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/22633385.02240f69.jpg_ef0c12f223b1b4e4d727e2f1f745e2aee368aa7db74df7265b69a3418a822a7d" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/22633385.02240f69.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/22633385.02240f69.jpg_br_e11cc95ea1a7136fda627c5ea71502faa02f2fcac969ddfb1540fce42e949f85" +path = "static-publisher/static-content/file267.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/22633385.02240f69.jpg_gzip_097eefd71e2cf6daf1cd3569935bc614777b152061b166eddeb2d7e7f4ec1844" +path = "static-publisher/static-content/file267.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/23367125.02240f69.jpg_e6337bc2958d0940004ace77a78ddfdabe45f5cb85d3431189ae4088a894d851" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/23367125.02240f69.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/23367125.02240f69.jpg_br_190f6d838fd8d2942c276b1e9d7d7099b44b478041346e84bf8533500029e6fd" +path = "static-publisher/static-content/file268.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/23367125.02240f69.jpg_gzip_0c7d19daa3ed07d6cd0193eb070fe34b885ca35ac6e81d0b0a045200aab935a6" +path = "static-publisher/static-content/file268.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/2364484.02240f69.jpg_3be98b18f681c98d0a831f1aba77aba5d17996fde43d08ee6b083486fa4ed596" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/2364484.02240f69.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/2364484.02240f69.jpg_br_e1b3183a78d2dded6c1dd1b0fa6ced4def4ebbbc49f73b7b79949dd78f192228" +path = "static-publisher/static-content/file269.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/2364484.02240f69.jpg_gzip_8f96eaa944c24c1e18a165d4d057a744e6e08a353dd4078d7420a80ffec3bc84" +path = "static-publisher/static-content/file269.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/24265888.02240f69.jpg_3a2cfc445265b986094413534c638addf65d5e3134f41e68012da2fe65120967" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/24265888.02240f69.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/24265888.02240f69.jpg_br_612fdde0d46272b8a8b7b014220c0f419eabd1d29827c02961704650cb8c1046" +path = "static-publisher/static-content/file270.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/24265888.02240f69.jpg_gzip_3499fb7454afb382a57c6aa1e9ffbb152e626d4e29919b5f97b34d85f630d1ab" +path = "static-publisher/static-content/file270.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/25220665.02240f69.png_3ab9363e72c240deac2fa1e214a358c2efdae86323c459b3979c18417585d23a" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/25220665.02240f69.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/25220665.02240f69.png_gzip_f896f671ebd95117a807404858ad6de39209a686200c5fc1e0c67da1cb8f4855" +path = "static-publisher/static-content/file271.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/25744143.02240f69.png_c979b516f5061fb9ea7c311c5374a0333c3c848cd3c26f8185c584d3c4c33208" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/25744143.02240f69.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/25744143.02240f69.png_br_4b56f6085c41cf43b976a627c65102dbe07ff5c88cae8307e69ed4fb3e3851c4" +path = "static-publisher/static-content/file272.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/25744143.02240f69.png_gzip_2d21517ec6f97cb96ae851536a21f6433feb9569e8b06467255dd5433b08bff5" +path = "static-publisher/static-content/file272.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/28327241.02240f69.png_f90c8c10cad2120e15991583a168172f50b073b573b68ede9464068476fcd945" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/28327241.02240f69.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/28327241.02240f69.png_br_c9625b1389d87a5a5012e9d3dad5d163a4950f2847df15674dcca3ee6f026f8e" +path = "static-publisher/static-content/file273.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/3255070.02240f69.jpg_47fac656beebb913243fa6e69edbc88792cba77ed8b85babb48a9852e1c841df" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/3255070.02240f69.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/3255070.02240f69.jpg_br_831cdef80f0ee5d2d4536759dab2da47ad23a2397ec7b3e3049829ea1327de9a" +path = "static-publisher/static-content/file274.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/3255070.02240f69.jpg_gzip_d70818731141d64cb5ebce919fb6319ca7a21c210fad3dd3c3de850d1ea5333d" +path = "static-publisher/static-content/file274.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/32649803.02240f69.png_e5778563d9c156a4ba91788f5f60238f5565c3e76ad511640f3fdc29badaf9f8" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/32649803.02240f69.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/32649803.02240f69.png_gzip_aae0fb7865f898d45ed2752d137da76c97b0c96f67b9075525afb134acaca334" +path = "static-publisher/static-content/file275.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/3333248.02240f69.jpg_0a8863aeb37fb6dc7f97931dcf364a279b9ff942fbdde59f996044e5cb91c7c0" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/3333248.02240f69.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/3333248.02240f69.jpg_br_dfd6e2c120092b0bb29cd08bfae58d8fe266fdbcfe625822251442ac5afacfb5" +path = "static-publisher/static-content/file276.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/3333248.02240f69.jpg_gzip_eb7b3bd58b740c678f0574edf0c8b98ded6c23b5b6254f5adfdd9ebc80ac721a" +path = "static-publisher/static-content/file276.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/3603739.02240f69.png_d0e67381e15f4322c6b4865c188b257bf6d6e77da108dfab4561cd199a63a316" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/3603739.02240f69.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/3603739.02240f69.png_br_b85e6a209a55235ac77ab20900b5ddbf3a31e85ce86d780b3aefedb5cb21d4e3" +path = "static-publisher/static-content/file277.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/3603739.02240f69.png_gzip_61b227b42b86ea66b2895d2fba25c5e0448f9e90a968024376aefbd1ede3287c" +path = "static-publisher/static-content/file277.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/3620051.02240f69.png_8614adb856bd548e1620e30559cc5b5687ad0a0b1721fe86dd5858cdd1039d9c" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/3620051.02240f69.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/3620051.02240f69.png_br_e76b7b8ecdf3e19f004b1d8eca8db29d7646d00348241f5ea83e2eaee453ec76" +path = "static-publisher/static-content/file278.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/3700397.02240f69.jpg_5dfa0ba9b691a612461583575dfb40d85e7f1b1d20da4d98964852f8d27ba8b7" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/3700397.02240f69.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/3700397.02240f69.jpg_br_7f9f69be62691ab63b18713453947ea1a35ee8900dd5eab818329f4e565de41f" +path = "static-publisher/static-content/file279.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/3700397.02240f69.jpg_gzip_a234b10c3cfcf5f18f7f02c95a696207b08ea8496b0709ffe45212907f056838" +path = "static-publisher/static-content/file279.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/37243063.02240f69.jpg_0f1cef2538fd52a5770dacb20755da986beda3066cd3e8950798d0b4f8749f0b" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/37243063.02240f69.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/37243063.02240f69.jpg_br_0c867742c95a6897ef5e6e24f7cda020f06c1aaca4c9526d0a26fe9a31f50ce5" +path = "static-publisher/static-content/file280.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/37243063.02240f69.jpg_gzip_aa262d4250ba828d3e391c19c2e6afe4b98c03d85dcadbb68ce3f0d0ba9b67bc" +path = "static-publisher/static-content/file280.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/37597884.02240f69.png_9c1ab6e5bd4fee0f912f324168bb1a7a4df1c96394ac61d57f77ace583baeac4" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/37597884.02240f69.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/37597884.02240f69.png_br_f89e468cdced1617ddbfb04c7e92faf736151a8946a71e2fff609128452de672" +path = "static-publisher/static-content/file281.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/37597884.02240f69.png_gzip_098c78651bbec4cf3afab47d2470c4f3dfa1fd4870a60c548dd4cfc815645daa" +path = "static-publisher/static-content/file281.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/3765696.02240f69.png_a2981327de10108d619627de008d6a657f4ce3f46464c1aa81e3488321d653c4" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/3765696.02240f69.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/3765696.02240f69.png_br_89b8d890cc5b7ecf161bfd5cd77f009f35e63efe2d2bd173bb604015d959edfd" +path = "static-publisher/static-content/file282.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/3765696.02240f69.png_gzip_3ee6c000ba6ba3cc210b3fb6c0d0f4c4a7a741596aea288b1ca0a68909040b3a" +path = "static-publisher/static-content/file282.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/37706897.02240f69.jpg_756d3019449b5b57fee281a23d057b55d1989fc461003419dd919075b123ea8e" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/37706897.02240f69.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/37706897.02240f69.jpg_br_da3771d2ff6e3770a0a4640ce1ddfca9c3e51d3c92d1845a88df0426e770f1da" +path = "static-publisher/static-content/file283.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/37706897.02240f69.jpg_gzip_4851d8102393bdcdf099481d6c44078a910985bce6b551291fce9d8500a77fd5" +path = "static-publisher/static-content/file283.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/38929299.02240f69.jpg_ff1343868a11d5686d3a5fe7801b4d0c8b67fbb4ada1e7b28f28e0dc06b252a0" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/38929299.02240f69.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/38929299.02240f69.jpg_br_cf2b30543a199b70cecf468561066aac9dcc2e317d6ec79cbe68d1d68019bf8e" +path = "static-publisher/static-content/file284.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/38929299.02240f69.jpg_gzip_f9055fcf9393a0649086d132ebccfc129c26fa0290f3afe9324d02975cbd8e78" +path = "static-publisher/static-content/file284.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/39591292.02240f69.png_b464e8cfaa29eed02424ba3e657512b0ef4b929b0f715fcf741bfb8779d142d3" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/39591292.02240f69.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/40760290.02240f69.png_2a27ae5d0710417e28114e5afe66b27773934e0d5e92a0424fae74daaa4208d2" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/40760290.02240f69.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/42156355.02240f69.jpg_a1d55e54f772338157bbf2d8803096b8040fc9b0113ff6757b5257f691caf367" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/42156355.02240f69.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/42156355.02240f69.jpg_br_0e34df0124eec62be12ee7abadf636ba5615f8bcf8c699036b80cd143c543847" +path = "static-publisher/static-content/file287.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/42156355.02240f69.jpg_gzip_8c7a775d29bb037cbe41341351e35cf378caa51901833b8242554e21b0b7186e" +path = "static-publisher/static-content/file287.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/4265212.02240f69.png_944d6b846a24c02d0ab664704681b42684f135c1c98787c82faf135cb302bfc2" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/4265212.02240f69.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/4265212.02240f69.png_br_e025bad9b6eb30f2082c09a53b6149f3fa7b83810c30aea68d1eede338b3034e" +path = "static-publisher/static-content/file288.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/4265212.02240f69.png_gzip_fe8308d30d94066b8a10fbaf382a7bee1e57e745c25a3e0585e7796ce21c6418" +path = "static-publisher/static-content/file288.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/42844753.02240f69.jpg_49cb391cfcd2be63b954acd40b7dcd9598f70113fc6335f03f37f1115c256ec0" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/42844753.02240f69.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/42844753.02240f69.jpg_br_4f1d2bf681dc302f1a3a994aa2cd2a380ec56ab9eb5b4bd0a86940aeb33ffc23" +path = "static-publisher/static-content/file289.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/42844753.02240f69.jpg_gzip_87865663557b1a6578979c755e1fff5f4bfcda66e4645a0d03a16b15924d065b" +path = "static-publisher/static-content/file289.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/43197.02240f69.jpg_2e95695d48013586035af58e4be018433c2f9d57c037786c803b65903fc0e574" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/43197.02240f69.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/43197.02240f69.jpg_br_166411bb2020f69fbaef5ad769d916ad4d5f5ef5366ba053ea5621509ff1a822" +path = "static-publisher/static-content/file290.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/43197.02240f69.jpg_gzip_031d45aa7f804870649d9f567773e415de8a1694b2436cac37e1ed93916cdf46" +path = "static-publisher/static-content/file290.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/44088296.02240f69.png_3e5c829a6323c1e2dfd37dc4bf0d4ef51ef319598f5685ef59f8e559fc06555b" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/44088296.02240f69.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/44088296.02240f69.png_br_271dd5f6c4864b75a2181b9a13dcad56aadc987b4679854b370f6bcf75dd1e28" +path = "static-publisher/static-content/file291.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/46753436.02240f69.png_4dadf1e2dc294e9dcca25ef7ddda32d14fd1cbff6dc57e3fa9872bc4fb3f7948" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/46753436.02240f69.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/46753436.02240f69.png_br_f033071275c923be4521fabaca79e7b491893af785e48206d27fa2c27d387a6e" +path = "static-publisher/static-content/file292.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/46753436.02240f69.png_gzip_f218fa863fe6eb9568d7844577093cca822c25a5b2aed06df2357fb1b687149a" +path = "static-publisher/static-content/file292.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/4787502.02240f69.png_82adc5a9ea23dc3981ab1bc10a3bbd6272e5056282c063ab8614c854171043a8" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/4787502.02240f69.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/4787502.02240f69.png_br_dd4f4487ccadd74a5f0681adf0ac3611277beb74e9c481b0965d7ac16c9b8ba1" +path = "static-publisher/static-content/file293.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/4787502.02240f69.png_gzip_519cb891418563d223cdd6aae3426f97f6ee04a952afc17a50d31b6e67ffd94e" +path = "static-publisher/static-content/file293.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/49331776.02240f69.png_c9c5714075e83d86e820cc667c4eac8bb0069eded8e92e2184eb9b31fdde5e4d" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/49331776.02240f69.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/49331776.02240f69.png_br_57c005e7e8fb5ae4dfd7f747f38469bf10c159f53193fe80f216ba8f234d7828" +path = "static-publisher/static-content/file294.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/49331776.02240f69.png_gzip_20617567d6ecc7b8a5ff9dd6534aefb05db8d0052b87f76cca270ba1ed6319b9" +path = "static-publisher/static-content/file294.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/5017393.02240f69.png_e30c15ef4e3a73d83657679045b00ca8cd57a8229b621b6cd5f38bafbbcc1c6d" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/5017393.02240f69.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/5017393.02240f69.png_br_a4717aa379837da3314606c89a742869ec378cc7ea8a20ccb5de6bae98224445" +path = "static-publisher/static-content/file295.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/5017393.02240f69.png_gzip_2543a239c89ecfc12d4f6a114a5c354968b98f3b727251247593c06067e5bc6c" +path = "static-publisher/static-content/file295.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/5032475.02240f69.png_7293c2edb9f983c49b122b0522a21adc7a105ba8bef2a5c30d95eb522034ca3b" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/5032475.02240f69.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/5032475.02240f69.png_br_cb43c0201e340b740d93066935f8c65203723c53345a0891fa05f96ddfa7f20f" +path = "static-publisher/static-content/file296.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/5032475.02240f69.png_gzip_c36a940da4d7bea87cce3ba12046de2c6eb2a696af1be48d342c8f7bdf8bc423" +path = "static-publisher/static-content/file296.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/5150291.02240f69.jpg_96bad9d8a63240fd232253c4615cfeb872f2587a7e1682afe1827ae72849da68" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/5150291.02240f69.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/5150291.02240f69.jpg_br_47ef80ef7a711061dfb74bc5819e4bf6ae99893e2638640d0ce532fd695e7d5c" +path = "static-publisher/static-content/file297.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/5150291.02240f69.jpg_gzip_9ee3517091902e05f237aee7f7b14a24c101d4a527a73213cd285139c4e1890b" +path = "static-publisher/static-content/file297.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/53584770.02240f69.jpg_9ca74d96d791e0167567b2380b9b7b289aa1d02ff778e215b134838edb463f32" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/53584770.02240f69.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/53584770.02240f69.jpg_br_9ed7ffc42e14e13ed0987beb5b509630083bb39f170d383ccf459c7141b13ceb" +path = "static-publisher/static-content/file298.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/53584770.02240f69.jpg_gzip_4f9f39e7215d6dfcbfb616f079bf323063e2457794c435d2377469bdc5217090" +path = "static-publisher/static-content/file298.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/5403564.02240f69.png_fb590b8ac4204d3af7008f93be37b43889b2048614ca209439f798639cd5bbd0" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/5403564.02240f69.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/5403564.02240f69.png_br_a3fadecb751e9bd01a2e94ab4e5f8d320912d4b09a744329a146e06f19401aa8" +path = "static-publisher/static-content/file299.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/5403564.02240f69.png_gzip_c2fde76db7dedf129e897732979c02c841bb6446a5377e28e722f408fa9bf246" +path = "static-publisher/static-content/file299.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/55892653.02240f69.png_0fbf443be82b3c49873833829345cd9ffb64dea7cf6f431da97296a725646212" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/55892653.02240f69.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/55892653.02240f69.png_br_7986048ac8d965c12b1ad4a303b0187bf04a506b475c3bca96c2e0b61ab5acc0" +path = "static-publisher/static-content/file300.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/55892653.02240f69.png_gzip_df3bb9c65a7a28069f47c794946d62b906b2ef9861dce44245a5e0b0721e334a" +path = "static-publisher/static-content/file300.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/563214.02240f69.png_d9288b05d86ee3109d55b4ea5006d16eb37e7092b49c87bae483b1fd1d534e2f" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/563214.02240f69.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/58101587.02240f69.png_f050883ddf86f6a2912ae13621457a4be05ac50ac43b261f038039ae87150968" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/58101587.02240f69.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/58101587.02240f69.png_br_e63227d61e04cd437bb3a1e8166fc7dea3814541f9cdb84a3f72c5619fb25db4" +path = "static-publisher/static-content/file302.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/58101587.02240f69.png_gzip_b91248bbd5120cea585c7045ecab628af8260d7af01f30e0d25debb4f12f96a2" +path = "static-publisher/static-content/file302.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/59802505.02240f69.jpg_794e6eae7db7d4ce1a9bf9db71b896b43631259a521b01f93e3d02f81b51dc40" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/59802505.02240f69.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/59802505.02240f69.jpg_br_c4be235b7b8c0d7d2c195413b5f51ef44cd1f9a3cfd023ae693f5cbb76f510bb" +path = "static-publisher/static-content/file303.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/59802505.02240f69.jpg_gzip_129a5d5faafb0773989d0e59fe3cc0d9ec4806916ffc06f81c364b4a305f446a" +path = "static-publisher/static-content/file303.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/610692.02240f69.jpg_e2c24cff838e76e9d8c03856c749f0b947688194e1cec1f02962c399b238075e" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/610692.02240f69.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/610692.02240f69.jpg_br_7a438ffc924b43ff1565e52419c8cacd18a44dc010e2fe61020cfaf5d0e4bee1" +path = "static-publisher/static-content/file304.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/610692.02240f69.jpg_gzip_877e5b6167ee092a7bc68463edb864db4f776f6c132e0b52d95e731f20be2dd6" +path = "static-publisher/static-content/file304.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/64485701.02240f69.png_d0fe3c01831aa0840320e16b5ba5d0f25e371558b28de55a3f02502800511dc7" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/64485701.02240f69.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/64485701.02240f69.png_br_7913d0617e34ba01a156f11c4aac27a4aef391a33878ce52e08b5c34a09866f1" +path = "static-publisher/static-content/file305.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/64636709.02240f69.png_90f1b937ec0457e9bfe70c256d15c04dcfc633c115d8c6d13f78f236a1222f20" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/64636709.02240f69.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/64636709.02240f69.png_br_1ea97fa44d5cc7c9e4ca9fcb1cda454aa44f19a223400d1ad9c9282314d914ad" +path = "static-publisher/static-content/file306.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/64636709.02240f69.png_gzip_8c6893f3fe8d13808fb23cc602d8588c0e44a6328e80c95aa0d86543d35b26a8" +path = "static-publisher/static-content/file306.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/66750169.02240f69.png_fb3450d51c154b8bbf0ae32abf7aab499e0d53fb28a2d753d53581eb416b31e7" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/66750169.02240f69.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/66750169.02240f69.png_br_4219a1c97b6c4a78c683d67fc74b4051061cdf4568d51cbf7d9d3182a837f947" +path = "static-publisher/static-content/file307.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/66750169.02240f69.png_gzip_fd7271f1abf2f63141f4974693bcca8bce50f6072b9fb9be0cd7ea8cc3f0a456" +path = "static-publisher/static-content/file307.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/6708191.02240f69.png_2af9172c288ed9dc417138e20bcfb140089c5b26ff4b0cfddb72d720eda81c23" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/6708191.02240f69.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/680198.02240f69.jpg_b9e7830b83bbb13d11021fd859bd82800f038853c27327c61a7f538c79f80470" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/680198.02240f69.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/680198.02240f69.jpg_br_13839057bfa8a4f5496b8c2805abc3793a3ce0cbeb5c9f09cfd4d66e700985a2" +path = "static-publisher/static-content/file309.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/680198.02240f69.jpg_gzip_caa0d1e07f7c76dac44d522af37749792ec48145c5aece811471524415aced31" +path = "static-publisher/static-content/file309.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/730814.02240f69.png_f8adecc8efce6e07ead2c5826d7059048cc5ae2855777491dc2b8c991e7b9a48" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/730814.02240f69.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/730814.02240f69.png_br_d64a79a128437473a6c86f1f691c54354d108d3c6f436daee37194dfa96b56b6" +path = "static-publisher/static-content/file310.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/730814.02240f69.png_gzip_ecbc373c7e44de1803db46842c857ea856045d0eeee83ee6a584811f60bee8a4" +path = "static-publisher/static-content/file310.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/76416245.02240f69.jpg_5c6820f5f611092f7c7224266221155ee18a620c2de69c61728d4fa4327cc043" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/76416245.02240f69.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/76416245.02240f69.jpg_br_fffe83b520a7ae7817b6c0ee9d86559f844e64531eb57c4a3b2acaaff3f554b4" +path = "static-publisher/static-content/file311.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/76416245.02240f69.jpg_gzip_a76ef352a2ec9197c54edb9853cf200759043ac268e7d54b9fad5043bb5a6194" +path = "static-publisher/static-content/file311.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/76614.02240f69.png_62144a26eee7786bd612c231e7b90e2fba1a721c04a73eebdea4b06525c22b08" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/76614.02240f69.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/7724090.02240f69.jpg_4810e87b73c78ba4ee21f34ce775bcd4acca2463bd711d32a2b27e364998b0dd" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/7724090.02240f69.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/7724090.02240f69.jpg_br_993c7c19f512169bb367deb2b34f19b074c66410e715724a5f4dad65843036a5" +path = "static-publisher/static-content/file313.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/7724090.02240f69.jpg_gzip_cfaea36b15b659692fef4573e569a4f2920b45eee87f4737e1a91856464f1086" +path = "static-publisher/static-content/file313.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/77499937.02240f69.png_e5cd974d07e398f5c8e7576d1eb14e05392426e2ec0eed4cf471417ecb9800a1" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/77499937.02240f69.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/77499937.02240f69.png_br_627717418fdcee3e01737f2a6effb3671b6f5b7533be85a2c13244e56d3a8734" +path = "static-publisher/static-content/file314.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/77499937.02240f69.png_gzip_77e37df7f3486258d95c1b4be1613317572d86bc24d52825e9ca5d5de271fb8a" +path = "static-publisher/static-content/file314.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/787308.02240f69.jpg_a76c53d66e15df8efb856c4fb83ca425668d6b47881b9b8c6b37474fdb626193" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/787308.02240f69.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/787308.02240f69.jpg_br_29520391497e9f5170d4dbf3fddc8410be89e88a1b554a21d9a7a43060e1de87" +path = "static-publisher/static-content/file315.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/787308.02240f69.jpg_gzip_ddce2ba180f09e7576294eecc0502ce22ed0b892b5bc70a899680c5c5ccc7a2c" +path = "static-publisher/static-content/file315.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/79668910.02240f69.jpg_da710803376a906b5b0070e69f81991078a0bc20d5d24315cb184db4ba2c9b83" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/79668910.02240f69.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/79668910.02240f69.jpg_br_72dd579c5c3b3b02915ad0f22ff81ab50775ded8f04b9f8b6277b923f979a2f6" +path = "static-publisher/static-content/file316.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/79668910.02240f69.jpg_gzip_35354fe2a5cec827ba25ad285d3b9ad485e3e698dcd0d1e0a4e922acc92148eb" +path = "static-publisher/static-content/file316.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/81292426.02240f69.png_22cc3b17fcd3bf948227005bb056341a53b623d2038c7c56b378869e94d0f4d8" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/81292426.02240f69.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/81292426.02240f69.png_br_a44d7b734fa8235c050c33ce4ea66c09959bf513d9ce0c2629eec23ed24f9a0e" +path = "static-publisher/static-content/file317.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/81292426.02240f69.png_gzip_d638d03a094fe813f0084c9b085421a5c37515208127d6f4c3c204bff3ff4c3e" +path = "static-publisher/static-content/file317.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/8281207.02240f69.jpg_c7f43b97814498cfef45d33c1a5df0e174e91a2ef114f5147e4e6aaf659746ae" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/8281207.02240f69.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/8281207.02240f69.jpg_br_1a959bcc2fc0631fd795031708194f9d9fc1ed7db89fd75e7ad965d8779affe3" +path = "static-publisher/static-content/file318.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/8281207.02240f69.jpg_gzip_37cb82fcb802de9a503a65f2fd6e609ed2801bd83f6216218ee78a9c2325ab73" +path = "static-publisher/static-content/file318.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/8373145.02240f69.jpg_603c4b6bc785713421cd4cb5d4aab37ae2b6929935bf2902be68290049c1c9f0" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/8373145.02240f69.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/8373145.02240f69.jpg_br_55fb4bab8bb0861236ad0100e59742d0b60a0e8e02b6944bf9f13b51a694122a" +path = "static-publisher/static-content/file319.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/8373145.02240f69.jpg_gzip_03bc7b8b7fee35ce2c6cdabbf22f7d86c54fd731a54bd532143e62d586ed8d35" +path = "static-publisher/static-content/file319.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/86754294.02240f69.jpg_db95ad88a7b71a2c0194f7d948e7faa4a911d823bafe67ba1331cf899d48f34b" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/86754294.02240f69.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/86754294.02240f69.jpg_br_c89ffc4c4a8e2caddb65b79ebff4db58d4b22a87311053341ed816ddd4cbf1ae" +path = "static-publisher/static-content/file320.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/86754294.02240f69.jpg_gzip_932f87b6516093f16d3c0f8289948df32cbc1265d3175ad879cb76942bd1772a" +path = "static-publisher/static-content/file320.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/8710634.02240f69.jpg_378ea5d7e7b62dcb3daf101b99a563261ef48d4133d1bb39a7859e1dc103a30f" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/8710634.02240f69.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/8710634.02240f69.jpg_br_d1d176d9d393a835e282c116547ef9a39ff701ede0c829a2ecf0527fea647304" +path = "static-publisher/static-content/file321.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/8710634.02240f69.jpg_gzip_45a62ef5b3e4216e8a9a7cf6f85758a73ae125b55856fcf155d23dbdd6d4905c" +path = "static-publisher/static-content/file321.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/87865413.02240f69.png_decb4bea69df5d6c18096c5b4bf35d27e656352a71cd47d1c5479bde94a82131" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/87865413.02240f69.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/87865413.02240f69.png_br_297c563ca2e656f06cc9dbbccfd17d2f08e4764c68d142327389f67e0b5b2f0f" +path = "static-publisher/static-content/file322.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/87865413.02240f69.png_gzip_55f6d9c2a04ccc5b5a1b3ddff89921058f1847ba1d1f168edb6d78bb353b4ad3" +path = "static-publisher/static-content/file322.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/92609.02240f69.jpg_f06a8e0423dea1adbb7ba9c8c8e9898cdfa42e76a96c26eb9bbb571b3e0188d8" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/92609.02240f69.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/92609.02240f69.jpg_br_520c5200cc31a70a9530224330814845e5f59357823c8f77975fb380e0b276ac" +path = "static-publisher/static-content/file323.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/92609.02240f69.jpg_gzip_63b33e4a85860668c8fab944fe6ab09b45d9e2fc83d2514ce2b3be8e754c2ef4" +path = "static-publisher/static-content/file323.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/97700473.02240f69.png_c119c8a8944928ea1553f3819f128c35987afb568a12d8159880566d943637aa" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/97700473.02240f69.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/97700473.02240f69.png_br_3bf2f407ed43cbf87f90bb76a7a9e777f994ed0725e8d059d427955f35d8ec9c" +path = "static-publisher/static-content/file324.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/97700473.02240f69.png_gzip_033b4e52597356beeb5eb3b2aa561e6acae074c3b4c6ed7c4e4c6c268cbf8885" +path = "static-publisher/static-content/file324.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/99230514.02240f69.jpg_2ae28db85dd9b904bed188c4ed63c7d013e514e421e80d3e8f56ab7f55967d63" +path = "../build/minified/site/assets/external/avatars.githubusercontent.com/u/99230514.02240f69.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/99230514.02240f69.jpg_br_823d83e46142bbe20f3fe68bb1879342f0c7b692e29da456c428318a26b24617" +path = "static-publisher/static-content/file325.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/avatars.githubusercontent.com/u/99230514.02240f69.jpg_gzip_d4a68377a03f0ffa09719fa3cd4decadc57e49f3f1c78492dfbb9abb809d9913" +path = "static-publisher/static-content/file325.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/cdn.jsdelivr.net/gh/jdecked/twemoji@15.0.3/assets/svg/1f1e7-1f1e6.svg_81fe4cccc9f5a24d7df09d061dba9eae9e37efcd6d7dcf5b54a1371242d57933" +path = "../build/minified/site/assets/external/cdn.jsdelivr.net/gh/jdecked/twemoji@15.0.3/assets/svg/1f1e7-1f1e6.svg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/cdn.jsdelivr.net/gh/jdecked/twemoji@15.0.3/assets/svg/1f1e7-1f1e6.svg_br_b56e849503066732e61fead05e8736ef4d1dfeee77e1abe42893778fed5aa288" +path = "static-publisher/static-content/file326.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/cdn.jsdelivr.net/gh/jdecked/twemoji@15.0.3/assets/svg/1f1e7-1f1e6.svg_gzip_dc809c587442419a96596fbad57197fc2605ec1f5606a6b6f58ecaa7fb3f64bd" +path = "static-publisher/static-content/file326.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/cdn.jsdelivr.net/gh/jdecked/twemoji@15.0.3/assets/svg/1f3c1.svg_2202708a2c0a678cd963783108e2714521a0513a4ad4c97ccaacd0a603c4c769" +path = "../build/minified/site/assets/external/cdn.jsdelivr.net/gh/jdecked/twemoji@15.0.3/assets/svg/1f3c1.svg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/cdn.jsdelivr.net/gh/jdecked/twemoji@15.0.3/assets/svg/1f3c1.svg_br_fd1c0408ff541f7fe54f3586d55c70b1f7ef7ee3941fb81f22cb5b6de8cdafee" +path = "static-publisher/static-content/file327.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/cdn.jsdelivr.net/gh/jdecked/twemoji@15.0.3/assets/svg/1f3c1.svg_gzip_71dd2bcf547fcd1e7419d09183482f0e8a85b837b0177a019f00dc0be35986ea" +path = "static-publisher/static-content/file327.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/cdn.jsdelivr.net/gh/jdecked/twemoji@15.0.3/assets/svg/2714.svg_0a9dec66602037d24f36152f268fe0479c65754051b76024a8079326e0592622" +path = "../build/minified/site/assets/external/cdn.jsdelivr.net/gh/jdecked/twemoji@15.0.3/assets/svg/2714.svg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/cdn.jsdelivr.net/gh/jdecked/twemoji@15.0.3/assets/svg/2714.svg_br_bac22d1698716e44793076d46eda9fbc99ae4d84c099fb907254706fa6be3049" +path = "static-publisher/static-content/file328.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/cdn.jsdelivr.net/gh/jdecked/twemoji@15.0.3/assets/svg/2714.svg_gzip_618ca7d4809973942119d74604dbf5730bc0782bf5b2a4d9c36533d3f492a2ef" +path = "static-publisher/static-content/file328.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/cdn.jsdelivr.net/gh/jdecked/twemoji@15.0.3/assets/svg/2b50.svg_4a0eb691e8fedbd3a4649394cb95724f5e086ea7cf5ef2c114703dc195793bc8" +path = "../build/minified/site/assets/external/cdn.jsdelivr.net/gh/jdecked/twemoji@15.0.3/assets/svg/2b50.svg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/cdn.jsdelivr.net/gh/jdecked/twemoji@15.0.3/assets/svg/2b50.svg_br_e06ec7330c5c73f056516e8888dbc823b400b5a003f16e4d5d90e4252c09651a" +path = "static-publisher/static-content/file329.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/cdn.jsdelivr.net/gh/jdecked/twemoji@15.0.3/assets/svg/2b50.svg_gzip_d231c1b3f5b643803a8d67832db10c6e29d40c7e28a937096526623b73fcab4c" +path = "static-publisher/static-content/file329.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/img.resf.workers.dev/js/script.js_afb8a56fb7e1ff05334841086ed0b8beb4452ce3341c22ae61df9751d5694cb2" +path = "../build/minified/site/assets/external/img.resf.workers.dev/js/script.js" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/img.resf.workers.dev/js/script.js_br_33c3ceab6f7b1d590c3deed86f86c9e52db69f50023ab644c8f486fdce345b13" +path = "static-publisher/static-content/file330.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/img.resf.workers.dev/js/script.js_gzip_5feff2c50ae4cf772f1965a911549604b925b22f8de7860a19af99e0c64094ae" +path = "static-publisher/static-content/file330.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/img.shields.io/badge/all_contributors-97-orange.7940a6db.svg_3714897613047a2f673e19dbde36947c15eb7ca4a4a34c21cae7f361d0f2937f" +path = "../build/minified/site/assets/external/img.shields.io/badge/all_contributors-97-orange.7940a6db.svg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/img.shields.io/badge/all_contributors-97-orange.7940a6db.svg_br_74ed869d36f0ebf04ce60f98c701676374f14ec66a698438c840bb0c640ab25b" +path = "static-publisher/static-content/file331.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/img.shields.io/badge/all_contributors-97-orange.7940a6db.svg_gzip_4c35c977effbcfc5935b90c6cfbbd8bd175f676a33dca6e7d42ad62945b8e9a8" +path = "static-publisher/static-content/file331.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/img.shields.io/badge/all_contributors-99-orange.7940a6db.svg_bedc946b7c5f9643f19ccfd77c025485e3eff61c1419bc79cdcf66b55b7c5a4f" +path = "../build/minified/site/assets/external/img.shields.io/badge/all_contributors-99-orange.7940a6db.svg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/img.shields.io/badge/all_contributors-99-orange.7940a6db.svg_br_5c88bc5927244e7ce80db05402e0572429ea69b1dbb8dabd530db4610f817d2a" +path = "static-publisher/static-content/file332.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/img.shields.io/badge/all_contributors-99-orange.7940a6db.svg_gzip_68c8532fa9016fc4496922cbfebc9a7989e348d7b1cf29c499900796deeaa244" +path = "static-publisher/static-content/file332.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/unpkg.com/mermaid@10.7.0/dist/mermaid.min.js_cfb5c389bb5ef221a197ed77261868e75b97ac45d6246bcf03dfe0fd86b2f188" +path = "../build/minified/site/assets/external/unpkg.com/mermaid@10.7.0/dist/mermaid.min.js" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/unpkg.com/mermaid@10.7.0/dist/mermaid.min.js_br_e1d9e2facf318019ecf8c98818cb12d337473ebb827af9ea79d4c37e9a7e123f" +path = "static-publisher/static-content/file333.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/external/unpkg.com/mermaid@10.7.0/dist/mermaid.min.js_gzip_c9e1b0eab94bf6ae0d2067f3e5a18f15d62e46b6f8c9659e34eb09556e0dcd3f" +path = "static-publisher/static-content/file333.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/favicon.png_9af73b7cd737153ce9bb7ae12c088e963463f22ab53da83c35663d71f9674da8" +path = "../build/minified/site/assets/favicon.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-300.eot_6c786811c55b5132d49b63378cbcf658570262e091ac597893d34fba16f7933e" +path = "../build/minified/site/assets/fonts/red-hat-mono-v10-latin-300.eot" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-300.eot_br_f0d6f31499c57cc4c14e76e8518bc5e731fc2af842063e0bb7ef2d237ba5ab6d" +path = "static-publisher/static-content/file335.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-300.eot_gzip_6ec9c08bc7c41d4aae14b73ee56bc79cdf00bd997fc60e530e1f9e90cccd3e2e" +path = "static-publisher/static-content/file335.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-300.svg_5e33cd679082c73644e9af3375fdfcb641c1e6f8efb99465ea2bc175027528d3" +path = "../build/minified/site/assets/fonts/red-hat-mono-v10-latin-300.svg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-300.svg_br_b1fa267cfa021232fab61470f15a5dc410e00d0ea5a0337c800aac805b79f640" +path = "static-publisher/static-content/file336.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-300.svg_gzip_24cdaa18602e54cf9e6cf3353f131174a5d87e9cb87ea39bea55306a1eae1e51" +path = "static-publisher/static-content/file336.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-300.ttf_b07fee96879f0c6e0eff99e806c5f2eb9f5a19c4ae5aceedbfff257a1c360e0f" +path = "../build/minified/site/assets/fonts/red-hat-mono-v10-latin-300.ttf" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-300.ttf_br_a911ad6cc813dbaf35047a5a58723baedc3fe66cfe5011beb042f09d55ed232c" +path = "static-publisher/static-content/file337.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-300.ttf_gzip_a15dd9ad3185a058025f7c739a6cce2e1de56b2102c9ef0986d6bfcd61697ce7" +path = "static-publisher/static-content/file337.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-300.woff_a5aee7b7bd37156a80926c6ac056a61a13f3bdd616b4492e71166374a920e2b2" +path = "../build/minified/site/assets/fonts/red-hat-mono-v10-latin-300.woff" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-300.woff_br_be7f9ce6210dda0fa8523de220a6047671f0772e85e690e06e959dd72a64d1dd" +path = "static-publisher/static-content/file338.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-300.woff_gzip_e8c560bab746986bee3dab6cb617065f489549800b6f731320da801452b9f75a" +path = "static-publisher/static-content/file338.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-300.woff2_aaaf9739071f8f2b36e0be3e55919116afcf7e6a22b98678f4589c9d808b5f23" +path = "../build/minified/site/assets/fonts/red-hat-mono-v10-latin-300.woff2" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-300italic.eot_3df18100631b06932e047e3d83fae05f4a48153f8da42648595898e2ed488ca1" +path = "../build/minified/site/assets/fonts/red-hat-mono-v10-latin-300italic.eot" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-300italic.eot_br_5e7e9a145937ca97b46c5021e867cdb93c7e50434a38858b415e3fcbc3de851d" +path = "static-publisher/static-content/file340.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-300italic.eot_gzip_94ad31856fb4d63fbffce90ae2f6f2604f947fb84ec12fbcd388857e360aaf51" +path = "static-publisher/static-content/file340.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-300italic.svg_dee3684d5845f7a8902920f9513d36a1f6ab422821dfd6d70381d4e7be720372" +path = "../build/minified/site/assets/fonts/red-hat-mono-v10-latin-300italic.svg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-300italic.svg_br_b05d509c4ffc6af435c35542b333b596eab118490f8a607d27e758614b77df15" +path = "static-publisher/static-content/file341.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-300italic.svg_gzip_e596e40890e2128b5c203e7dfe03c617475a749a28291ce8df585811316af620" +path = "static-publisher/static-content/file341.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-300italic.ttf_137e734ec1159be1c14959d5f9369c297dc32e0cdbe0d28acc89f04d12fe246c" +path = "../build/minified/site/assets/fonts/red-hat-mono-v10-latin-300italic.ttf" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-300italic.ttf_br_e5de7629b633786f3c37a0eddef2f11768eb9750b1ff3ba3263136e33305d000" +path = "static-publisher/static-content/file342.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-300italic.ttf_gzip_f14741775d56b2f6e1fb945e5405515f3368e8200710e2eddfbbcc40f6b0725d" +path = "static-publisher/static-content/file342.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-300italic.woff_77d2260cf349a35b8a134e5c7329fe63c43e916001d39014512d571e37c72d75" +path = "../build/minified/site/assets/fonts/red-hat-mono-v10-latin-300italic.woff" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-300italic.woff_br_7941524c0637d4253b480c11013c4527506fd95b1906147389ea9fbc23d11a49" +path = "static-publisher/static-content/file343.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-300italic.woff_gzip_3fbdcdc171f77d8fd7a9b55afe6c55868d0c7e2fa491c66403916832dfe62af8" +path = "static-publisher/static-content/file343.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-300italic.woff2_a91802ff2dc610d29f6555786cefc6abb6faf0aa90e31e9fea4e0e2bdd064657" +path = "../build/minified/site/assets/fonts/red-hat-mono-v10-latin-300italic.woff2" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-500.eot_bb026582f909cc1da96bb4a5a924061824760d4447cad104a7d028ae4c806fa7" +path = "../build/minified/site/assets/fonts/red-hat-mono-v10-latin-500.eot" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-500.eot_br_50b4e9181c421d70884c2a3a320c08deda8ac8dfe6997bde8a497732d5e4fe8f" +path = "static-publisher/static-content/file345.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-500.eot_gzip_a629fece6b0208f8bbbbd7c8d1b901df4a4ad5591f6a29d62c55d8c8047870c7" +path = "static-publisher/static-content/file345.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-500.svg_4e7d1dcd8dbfc9924ad2696102bf6e251f0836feea645860ca33b88485e75003" +path = "../build/minified/site/assets/fonts/red-hat-mono-v10-latin-500.svg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-500.svg_br_11ae459446a28ec3fb85e85caaa04e2d9b31747fe1daa607bd5ec08b2d80f2fb" +path = "static-publisher/static-content/file346.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-500.svg_gzip_6380825e7e62e906c1489411aca99fd990779d0b3aeeaa53b5d78210b9a2a351" +path = "static-publisher/static-content/file346.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-500.ttf_2a34439a472c7354a9ddae645c343035b3a347ea405055ebce9ee09905438a8c" +path = "../build/minified/site/assets/fonts/red-hat-mono-v10-latin-500.ttf" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-500.ttf_br_d40ba0d3fd40276d0597939c95f0d3b0b9a2f40315d721a73f3584233dde67dc" +path = "static-publisher/static-content/file347.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-500.ttf_gzip_947d978f220e5cc6b0c624c752a6e50f7f1b0030e18bcab20dbf91786bb4626f" +path = "static-publisher/static-content/file347.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-500.woff_04e093e72a90d188ddf764bbd7d3ac56c67298f33c8f49565cc030804adb5322" +path = "../build/minified/site/assets/fonts/red-hat-mono-v10-latin-500.woff" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-500.woff_br_083aab2d0dc2859f6d5b9143c66a459a88cb0e12b3e92124a53e89f4b153490f" +path = "static-publisher/static-content/file348.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-500.woff_gzip_5eb34fa9b411bb5901bc72a0f7d503faceff10c2e571d0edadcd373744a2aaea" +path = "static-publisher/static-content/file348.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-500.woff2_9d0e8b548b88aeb91ceffdc7f9858dac50163668f45d6d0f37312292ce407715" +path = "../build/minified/site/assets/fonts/red-hat-mono-v10-latin-500.woff2" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-500italic.eot_df4501b26345b892a6d3e69e73fcb1412381e8dbbc2983d21cd9ab9e867397ed" +path = "../build/minified/site/assets/fonts/red-hat-mono-v10-latin-500italic.eot" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-500italic.eot_br_3661a98aa2d3f26d2e4153c0adbb783cfe50f003a91349bba8c19222cd17da56" +path = "static-publisher/static-content/file350.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-500italic.eot_gzip_4e184df47f33575f1e924c7cd8fab4e459377779575920fbeb7dd0632aa64ee8" +path = "static-publisher/static-content/file350.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-500italic.svg_11bd4a40de1d099f3bb5e84c7608a9302176b6659083fe28cd5db860e8bd6166" +path = "../build/minified/site/assets/fonts/red-hat-mono-v10-latin-500italic.svg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-500italic.svg_br_730bdba2cb0cebe0874dc54c2aedf3ea5ba08829f83ae26f3dfd1d0a2b0752af" +path = "static-publisher/static-content/file351.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-500italic.svg_gzip_964e2422449e1feb6efed2b208338cd23389f4cbf28b7b83614fdbfb100bf962" +path = "static-publisher/static-content/file351.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-500italic.ttf_609f808c0e79b141cc3c4395ef7a4f4b071df87d311c0532ceaf212350c20d54" +path = "../build/minified/site/assets/fonts/red-hat-mono-v10-latin-500italic.ttf" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-500italic.ttf_br_526d25cad2bf9127e6fba37712f2f55b5141df78a05ba13795c9febf0fde034c" +path = "static-publisher/static-content/file352.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-500italic.ttf_gzip_a77cc64a5d0dffa29e2178f0b94b4a3dfc42c597071d0c1185af3e1062c40b24" +path = "static-publisher/static-content/file352.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-500italic.woff_0143d19f60beb5393e4caabd1cff1b14d2797c3ee72f927f6f421cd16787ab83" +path = "../build/minified/site/assets/fonts/red-hat-mono-v10-latin-500italic.woff" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-500italic.woff_br_163bcb19e11209fc90b338a9d8bd55c879f489ae4a6e53738233dbcaaeaecca4" +path = "static-publisher/static-content/file353.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-500italic.woff_gzip_d8a2571d89d85ae3350aa2602249e75a192d510a80ba729907e352554f363fe3" +path = "static-publisher/static-content/file353.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-500italic.woff2_10cefa2c215a66c7126ec7969f88e38d908ce6af2aee975eca1813c18faf8fba" +path = "../build/minified/site/assets/fonts/red-hat-mono-v10-latin-500italic.woff2" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-700.eot_cc423eae342de0a6b5c58271709da44b59f8ca9c1fc6461660c0abe1a5eb6ce6" +path = "../build/minified/site/assets/fonts/red-hat-mono-v10-latin-700.eot" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-700.eot_br_3a2f280e1cccf60ff2d8b5f84d022167c1a4fde428a782df258f47fe7fe8a8d4" +path = "static-publisher/static-content/file355.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-700.eot_gzip_3b1ac680694173a7dd79913d2a2ad9703e5abd61552d4239d67e1d76716fd083" +path = "static-publisher/static-content/file355.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-700.svg_3b0da0633b6e0ec8f71d9787b47e455c056dd4e2e900d45e3fe7ab3cbcccd37c" +path = "../build/minified/site/assets/fonts/red-hat-mono-v10-latin-700.svg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-700.svg_br_2a65378cffc7285e3445e17d6e20463d7144f69c1e6426a7c80a316955e410a0" +path = "static-publisher/static-content/file356.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-700.svg_gzip_4f0361ae89330ec53fc187f0d48c099e15a1120e2826252f856f874c7d973aec" +path = "static-publisher/static-content/file356.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-700.ttf_bcd6276fa4bf19f43256ac94175fc78aafeb46142c0b683cfc34ef29cf64de16" +path = "../build/minified/site/assets/fonts/red-hat-mono-v10-latin-700.ttf" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-700.ttf_br_6b5ac4f53505e7a401cfd8e70bdd465e855b981da424280d22fbf32bf0f0c7db" +path = "static-publisher/static-content/file357.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-700.ttf_gzip_65cd3180c4ca8f5b3c43ce7c50742e6e74cdb71e1e6b65c363f0639a87088a2d" +path = "static-publisher/static-content/file357.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-700.woff_fd652f2eb08f15fbc01560abf2ba55e56346d52167514e24986f45f50f678e50" +path = "../build/minified/site/assets/fonts/red-hat-mono-v10-latin-700.woff" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-700.woff_br_020ad68be7edb0ae58c044b1f30301c2418a325bb9341b4003c08216cbacf0ed" +path = "static-publisher/static-content/file358.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-700.woff_gzip_2543ed0a5acb2380d9bb265954d6cc04c3269ef1f11399e5724d429b4101828c" +path = "static-publisher/static-content/file358.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-700.woff2_5262bc3da52038e38ea856911c8db3d5de19b719b372268139c20cf6941cec47" +path = "../build/minified/site/assets/fonts/red-hat-mono-v10-latin-700.woff2" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-regular.eot_9aa07111d89e219eb1458fab03a14606f3f5cc70ff35c4cf71138b5351d817a7" +path = "../build/minified/site/assets/fonts/red-hat-mono-v10-latin-regular.eot" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-regular.eot_br_a4879c8290caecdff12a0e98788cba98b9f7b0353d56798e5042ceec4300e338" +path = "static-publisher/static-content/file360.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-regular.eot_gzip_656ebdd704c0b32f51ebc8f8b9f2bde1a32377ca06efb5d822999bd29b0f2040" +path = "static-publisher/static-content/file360.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-regular.svg_a905f7086bed22fac1c209a9ca92ca7e129f32aa7919dd7f62811bd081881140" +path = "../build/minified/site/assets/fonts/red-hat-mono-v10-latin-regular.svg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-regular.svg_br_d1e600b1bd2d8f289bf53028c952ca3d4e0ed2d3729b6bce8100769f123fdca2" +path = "static-publisher/static-content/file361.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-regular.svg_gzip_7790849a7e15aaa08f2699534662ec2e2cfe23a0cdde26fd916b61a3a9e46eac" +path = "static-publisher/static-content/file361.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-regular.ttf_708eb49d183b0c2b1375543174978360fddf70510693da3c23966439067ef014" +path = "../build/minified/site/assets/fonts/red-hat-mono-v10-latin-regular.ttf" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-regular.ttf_br_5285c9daad7aabfde0de9074fb3552a5b001e9367397165bd3a17316c01e95b3" +path = "static-publisher/static-content/file362.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-regular.ttf_gzip_1e288945eb57420d5f26c83a5ea35150364cd137ad93003951f3970191972ef0" +path = "static-publisher/static-content/file362.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-regular.woff_2d8610e3c13853095525141be3276f6ff5c627ea9a09f1d645ee2a1e107fe5a5" +path = "../build/minified/site/assets/fonts/red-hat-mono-v10-latin-regular.woff" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-regular.woff_br_357aa9c324eb7f8c705b27312c7e42ba05b6cba2b3aa5d72c950d6c27e48009c" +path = "static-publisher/static-content/file363.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-regular.woff_gzip_e49387eeb149f439dd4e27120a2321fc4bc3354cb8b101c4f7e39ccd1648721c" +path = "static-publisher/static-content/file363.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-mono-v10-latin-regular.woff2_b37fd35abf089c68a317ce7f3eca332255b91d7735589a9fafd231d2bb858c01" +path = "../build/minified/site/assets/fonts/red-hat-mono-v10-latin-regular.woff2" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-300.eot_c1af6922be7958a7b36ef9d03b167f51a07fc0f443567ce8d094dba196f62d77" +path = "../build/minified/site/assets/fonts/red-hat-text-v13-latin-300.eot" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-300.eot_br_6d760d158a87de3ff1805930225e3da730b2ecac19b17071c9fb537387aa93bb" +path = "static-publisher/static-content/file365.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-300.eot_gzip_27a263a7e2bc5fd8878b8745e3c69cfb3d7f0c1cf04946d89c9e98f22aae6933" +path = "static-publisher/static-content/file365.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-300.svg_530e13d84f12200be7181e6c98a9a24898bf8a31c8b4403ab2e1bce1eaa27344" +path = "../build/minified/site/assets/fonts/red-hat-text-v13-latin-300.svg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-300.svg_br_33ca5301e58e43d54f5e60402d5a784c13f1d3281678332e67d4f052ffa917de" +path = "static-publisher/static-content/file366.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-300.svg_gzip_898b6b9a0ab4071ac9f66d69fa92c074925c8d0bf5030ac8f0a8d68571336b90" +path = "static-publisher/static-content/file366.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-300.ttf_a1a241e4a72838be4b3b3b0887c7755bd427659d68b571279cdf122723ae701d" +path = "../build/minified/site/assets/fonts/red-hat-text-v13-latin-300.ttf" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-300.ttf_br_735c41f56a3a6c2eb06afaace5559aeb4e130e2a071eb92e3ab2cfec0bfc1b02" +path = "static-publisher/static-content/file367.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-300.ttf_gzip_d2cc1e99337576bc72cea06943cd389a03ae5c25d94df7567531e5a76ca50689" +path = "static-publisher/static-content/file367.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-300.woff_9528099dbcb566567b920c06bb56eb6e3dca29b318e9615c3896c6e67cf1b9db" +path = "../build/minified/site/assets/fonts/red-hat-text-v13-latin-300.woff" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-300.woff_br_2da3d7b9d0f52c8068ef40cfe45886c5d07b4a258ba3a910e4dee1dfa423413e" +path = "static-publisher/static-content/file368.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-300.woff_gzip_b161eef27117480b553ad719f1c61bb1d5dfb2258ae6c3bef0466b1755e8ad17" +path = "static-publisher/static-content/file368.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-300.woff2_e4ae24fb22c52b0069d1da88c897b55dfe3494284f8e69869c2f3ed17c9bef43" +path = "../build/minified/site/assets/fonts/red-hat-text-v13-latin-300.woff2" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-300.woff2_br_37e69d02be3c8e334602f9f75e8d67f4a1387aaa2cf6d56d0e8d30a446ba4f7b" +path = "static-publisher/static-content/file369.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-300italic.eot_de9d5c5922ea798cd8060285ffa5e73b502e0940549f1e7aa56006f739304ab4" +path = "../build/minified/site/assets/fonts/red-hat-text-v13-latin-300italic.eot" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-300italic.eot_br_f06e6a95e1f957a40a623ee3990b9eba1fa496ed6e8f91ce4e82d88ccbf5864d" +path = "static-publisher/static-content/file370.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-300italic.eot_gzip_3f03c9614aa36b4c539f7c9555fd66db99141e9b3cdd5bfacc35946a956c6101" +path = "static-publisher/static-content/file370.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-300italic.svg_74c73d4293c98396c41b7b8cf5aab236542e326c7c5017a1a2facdc57a8a1387" +path = "../build/minified/site/assets/fonts/red-hat-text-v13-latin-300italic.svg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-300italic.svg_br_85d9e417bcceea1f0c9849e8f0643b4003e109c6736796551d6034faeeb97dc5" +path = "static-publisher/static-content/file371.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-300italic.svg_gzip_ede3a0d93055ff497aff1906128505081d93651ed44df3d554d7eb204b176ed2" +path = "static-publisher/static-content/file371.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-300italic.ttf_a2574179c8585d8bef8f07f6562429771f5e0ea156ee8c0537f4d42a05286537" +path = "../build/minified/site/assets/fonts/red-hat-text-v13-latin-300italic.ttf" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-300italic.ttf_br_cb1aa588359b2e483f200b7b3eafbaa51a3d3bf0115145e462d98597d3e9f5e9" +path = "static-publisher/static-content/file372.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-300italic.ttf_gzip_b2727a68b280a724fb982c94c0884f974f8f2f741c4146637b0d025de6051a19" +path = "static-publisher/static-content/file372.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-300italic.woff_d443f0555042c725cb4774624b8567b27a6756106e688729b9a173b2bd49b821" +path = "../build/minified/site/assets/fonts/red-hat-text-v13-latin-300italic.woff" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-300italic.woff_br_ee94cbba2b09a2bcb7f71cc62f396747f69be4b193e226a4d95e898fde7415af" +path = "static-publisher/static-content/file373.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-300italic.woff_gzip_b6dc99b4b787a6cf21ace0ddb1edf303e2235f47e222e24e8794b7561674f0df" +path = "static-publisher/static-content/file373.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-300italic.woff2_e5833eeccd81004666ff93fd3c636e673bcd94c0bd7a20257c8e48b91ceb83e5" +path = "../build/minified/site/assets/fonts/red-hat-text-v13-latin-300italic.woff2" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-300italic.woff2_br_8f76a7de0fd5cd6ca17b5a7354fe275c893c07c1632a0399891565dc1c17c266" +path = "static-publisher/static-content/file374.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-500.eot_b3b49b0454947222bf14380bdffbe270353496a02a346cd72acb4a43b18a68e9" +path = "../build/minified/site/assets/fonts/red-hat-text-v13-latin-500.eot" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-500.eot_br_d378a9dfc02f2747956c9b62e8f1caf3b54c8969cbe3a6a6e81ff0d34a4d05df" +path = "static-publisher/static-content/file375.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-500.eot_gzip_6b522823855872ea023889189286ad153838cab5b07d89b2aca56a8c5d8008b9" +path = "static-publisher/static-content/file375.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-500.svg_eb092306079355e7259e3771dea0dbe166bf7dba5ba5f2044924c5dbf5eaa0c1" +path = "../build/minified/site/assets/fonts/red-hat-text-v13-latin-500.svg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-500.svg_br_674069ad8b3e1869ca294aae664177baaf1b6ae6d28e0b4ec19ae20239d441fa" +path = "static-publisher/static-content/file376.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-500.svg_gzip_a2e3eb9b77291167ca9f125f2dd452335b97c56e009be6f06799164f9dd72e5b" +path = "static-publisher/static-content/file376.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-500.ttf_1ee98140bfd35be1e9c2bbd327b60525835e40b7dbda7a23dd93ea2bb83fb4c2" +path = "../build/minified/site/assets/fonts/red-hat-text-v13-latin-500.ttf" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-500.ttf_br_afa045f1b2eb756f511409eb91dd35768ac2792869dd5928ca174de6279e4189" +path = "static-publisher/static-content/file377.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-500.ttf_gzip_5a0e0384ba74caf822de57242b0fb533e1aa1921551bfb86301118fb0542b8ff" +path = "static-publisher/static-content/file377.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-500.woff_964d826f78e113c7193b7fd40a58e6a35ff84fd83792443fc9cd73d64bff9439" +path = "../build/minified/site/assets/fonts/red-hat-text-v13-latin-500.woff" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-500.woff_br_cdfe44f332815d57d02eb2970309b12a53b5ee17a413cd03a018db14755f0846" +path = "static-publisher/static-content/file378.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-500.woff_gzip_1cce0f101f8f541194babde5a08a82ea14dfb06aa7df35aaa7a02e70a9cbaaf0" +path = "static-publisher/static-content/file378.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-500.woff2_64f47c05c65e2104aa1a3ae30d78e3dbfdf2c18fab10139e946c96ea8cdf6484" +path = "../build/minified/site/assets/fonts/red-hat-text-v13-latin-500.woff2" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-500.woff2_br_f97ec94dcaeb1cf89b79631bc540bf0ba49b924b042f4069ec429d4ee74fc5e9" +path = "static-publisher/static-content/file379.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-500italic.eot_c56113ac31cad34ee48fdfca1f772cc621b595dde30326fa2041c3cef07ea072" +path = "../build/minified/site/assets/fonts/red-hat-text-v13-latin-500italic.eot" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-500italic.eot_br_0c7902a0c9cae463d759746b0592fe9c1a8924dd8af6f8edcaf68c4807b5aadb" +path = "static-publisher/static-content/file380.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-500italic.eot_gzip_c2e127b6b74000c35a7018533e182dbba6815daf142dd9375e2fd1067a03db17" +path = "static-publisher/static-content/file380.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-500italic.svg_8e91ab8ea06c98fb555bf18d23de9ff102e973df1ceb23e8445e6d8bc06b4411" +path = "../build/minified/site/assets/fonts/red-hat-text-v13-latin-500italic.svg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-500italic.svg_br_f59bcbf084fa25484a3200d96fc31d150c3fbc1929c80ed32fc9ec2fc27ecdb7" +path = "static-publisher/static-content/file381.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-500italic.svg_gzip_3010afd0ea144dcc0a85ac79f4cea1d3d7fa6327f72a5b72616c6be97fc35d4c" +path = "static-publisher/static-content/file381.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-500italic.ttf_18aa809749646e84a31280183c7b4e769ec573d613b23f2d771c92cba008ccb0" +path = "../build/minified/site/assets/fonts/red-hat-text-v13-latin-500italic.ttf" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-500italic.ttf_br_430ff3301f4a64cdd1670f1888f89f07efa2ac1044cacedb0610ada302972556" +path = "static-publisher/static-content/file382.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-500italic.ttf_gzip_c8d8e324464c077c792bf9bff7130d24e1cf36042edcf6605b342967acf836fb" +path = "static-publisher/static-content/file382.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-500italic.woff_517e98afac5a88c604a8964dcac591fe6bcbe91fc13ed235347858747690ce2e" +path = "../build/minified/site/assets/fonts/red-hat-text-v13-latin-500italic.woff" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-500italic.woff_br_1530e52fbb417f941b4ddf05c95fe9ad80ab994db1f5f785dd3190404b35f873" +path = "static-publisher/static-content/file383.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-500italic.woff_gzip_57529d239d6a049bbeaab8f0e32cee9ecae625ebe2ad6e6b4958c22bec20dfa6" +path = "static-publisher/static-content/file383.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-500italic.woff2_791ec7e6ccbfdf48412b0f03b7289d5212a05ee94c3d4ce18d401101eee5f900" +path = "../build/minified/site/assets/fonts/red-hat-text-v13-latin-500italic.woff2" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-500italic.woff2_br_a1b6d7e49b8ea1b977ef878e0db45470c29bad8446e13d13ad046b280cb2b9e4" +path = "static-publisher/static-content/file384.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-700.eot_967056f8bdc85d4da313dd263cc3865918846705fde41c3b01e7e943cf593113" +path = "../build/minified/site/assets/fonts/red-hat-text-v13-latin-700.eot" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-700.eot_br_f72e75c7c701460b69b0ba395ab198b97b7a405f904bc8021759445df4a594ad" +path = "static-publisher/static-content/file385.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-700.eot_gzip_18b9fe19e62c25d6b83cb5581598cd1256961c49add3454e0d281eb2c007e7a9" +path = "static-publisher/static-content/file385.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-700.svg_cec92304a71fc002ae4f0cfcc0f764af94938df05bce645820f51f92e30d24b8" +path = "../build/minified/site/assets/fonts/red-hat-text-v13-latin-700.svg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-700.svg_br_54af8afe5be1193950c94a926575bf63bc56a345e248bda510f8c1c1f62c548f" +path = "static-publisher/static-content/file386.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-700.svg_gzip_5e9e9ee1b8b6a4042dbada037187ae79952fd8a05f2ebad0ad8dd75efd18f869" +path = "static-publisher/static-content/file386.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-700.ttf_38369d1806f9ccf380c1af448473ed0983ba41674aadfc1aa2c58003586483ca" +path = "../build/minified/site/assets/fonts/red-hat-text-v13-latin-700.ttf" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-700.ttf_br_5a78406de4d3d8188495544ec79f34df133589695f921776395e7fb745fb6ff7" +path = "static-publisher/static-content/file387.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-700.ttf_gzip_97a51c6fc37b80c8ec97d322add4e104f2dc663edd2f0afc9d63a4cb10fab982" +path = "static-publisher/static-content/file387.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-700.woff_759379b0c946496a0f8021751565c618186f07ceae6f82b2cdf9ab4fe94a8d55" +path = "../build/minified/site/assets/fonts/red-hat-text-v13-latin-700.woff" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-700.woff_br_02eaab2a1735f5804878a7f7a1acc46f6b98daf3bd50d790ff07f8d3d734b6b2" +path = "static-publisher/static-content/file388.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-700.woff_gzip_4b06df00a7097eca1a2fb6d3d1b1ea16c6cbfbf3d4aea608cf9513a42a2099c2" +path = "static-publisher/static-content/file388.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-700.woff2_9b34b57e0f0a9ecaf909e353b36cea5428a3d2ea836239effc3c033b66f7a986" +path = "../build/minified/site/assets/fonts/red-hat-text-v13-latin-700.woff2" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-regular.eot_fe31b1f6c815a7ffcd886e253b53f9ff93b7b67562afbcc7eaa1dc54e57ff2b8" +path = "../build/minified/site/assets/fonts/red-hat-text-v13-latin-regular.eot" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-regular.eot_br_45bce3603637cf7db9fe62b85c7e99141000196788e29a325bbf2ae8ccc328aa" +path = "static-publisher/static-content/file390.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-regular.eot_gzip_7f25c3e905a4c91b06dea83afe61ad80ecbeaf2c15e34303a6676e41cb752f63" +path = "static-publisher/static-content/file390.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-regular.svg_ec5cfc8852465cef0ad246995f11f921ee2dcaf17046042991a6bd152e153af4" +path = "../build/minified/site/assets/fonts/red-hat-text-v13-latin-regular.svg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-regular.svg_br_47797ffdd964ee36ba16585a528baf009fb1d2c3fe4766792a6e4166d1dbb82e" +path = "static-publisher/static-content/file391.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-regular.svg_gzip_d98e3d5db9a9f69484a55bb7fcbfebdab052863ddf809a42552c55022410ddab" +path = "static-publisher/static-content/file391.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-regular.ttf_e3e961b04e91631739977ebbe396ec23f2a2000edc8be41ff04c22840b0f24ee" +path = "../build/minified/site/assets/fonts/red-hat-text-v13-latin-regular.ttf" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-regular.ttf_br_841dc518f914e077f54e249aaab7852a5e222816ba6a133955d0832cca9e0492" +path = "static-publisher/static-content/file392.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-regular.ttf_gzip_4dc50d57d0ab6fa55894aa71902fae31dd7c9c953212c762a38e5c6d5b737ef6" +path = "static-publisher/static-content/file392.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-regular.woff_3d84a479bbac26d9a07b511cae9df5a28001153071d8c0c899f32e05c4c2131c" +path = "../build/minified/site/assets/fonts/red-hat-text-v13-latin-regular.woff" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-regular.woff_br_bee5fb519c96385b78dbade5fd1a04d8295cac04d6687bdb85ccac61caa2c702" +path = "static-publisher/static-content/file393.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-regular.woff_gzip_c74c2c9193d7b53eb7b8a85c77cdc8737412e19aaedfecce01e355d3b4f9b58a" +path = "static-publisher/static-content/file393.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-regular.woff2_0a510a2090ffdcc27f79a93ef390ac6fe43715cbd2887609d88bed8842c69712" +path = "../build/minified/site/assets/fonts/red-hat-text-v13-latin-regular.woff2" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/fonts/red-hat-text-v13-latin-regular.woff2_br_5830ce25df1cea94ad093a2258d5a0154422fe0325ef1c06dfd901595add8fe6" +path = "static-publisher/static-content/file394.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/images/favicon.png_023854c43fc4b25b795ee4951c8019e3de0593ffeb6f918b5d1f2a9b47a57cfe" +path = "../build/minified/site/assets/images/favicon.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/bundle.82b033e4.min.js_cbddec7b817409b34059b2e34231f853ca666f8ec950f305241e06853137a107" +path = "../build/minified/site/assets/javascripts/bundle.82b033e4.min.js" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/bundle.82b033e4.min.js_br_a2d2cc7947bf87f278b58db9871a4a5530061b278a8e5807713b9bc02d569f28" +path = "static-publisher/static-content/file396.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/bundle.82b033e4.min.js_gzip_721611054bef19182147926942f838bc8f42f811f68e77d4d4a58bb97ef3bb70" +path = "static-publisher/static-content/file396.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/bundle.a255a381.min.js_db1e8c64ccdc3a7f9ec5581dfdc196fe067f8c49233f2a1d86cfd561e299c69e" +path = "../build/minified/site/assets/javascripts/bundle.a255a381.min.js" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/bundle.a255a381.min.js_br_1c8d63b41eb4b85d1077d16500484eeb678675556cc1adc88c42e49f632da0e1" +path = "static-publisher/static-content/file397.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/bundle.a255a381.min.js_gzip_1a9719b8fded9b56a15c094e98f800aa992977ddc523d1f0d202464c169d7bb9" +path = "static-publisher/static-content/file397.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.ar.min.js_a830ab051a2e44f6a4b412f4428df167db990c6f233637eeebd1d854e623b40d" +path = "../build/minified/site/assets/javascripts/lunr/min/lunr.ar.min.js" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.ar.min.js_br_cf9a7cf28b7ac47bc69fef122b7818fc1ea4e4421f7ff3708189f2cceb37eb44" +path = "static-publisher/static-content/file398.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.ar.min.js_gzip_76903b4ce15533fb61463cd54ce3d5d7ddd1b7dffd987195759e0578f3b3fcbd" +path = "static-publisher/static-content/file398.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.da.min.js_8822b7b9dac2a30fa14cd365cde159ac7048554dde284349d1370b89d005681c" +path = "../build/minified/site/assets/javascripts/lunr/min/lunr.da.min.js" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.da.min.js_br_e4e75c5155a7be263e56ebe5abb2419101e1d5e8116c8eef64b160437f29b6b0" +path = "static-publisher/static-content/file399.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.da.min.js_gzip_f65d15f1a0d56d126601a74f30f147fc714d319f6c372991078ba4af8e9e3da1" +path = "static-publisher/static-content/file399.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.de.min.js_ade7ace8225ac6b722dce2046e8377d57282aa6f2eed488d0824df7cf6428f89" +path = "../build/minified/site/assets/javascripts/lunr/min/lunr.de.min.js" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.de.min.js_br_6329321f97a472e7b20ed1da728537bcb31c22b10140a151715ad84c10bfa797" +path = "static-publisher/static-content/file400.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.de.min.js_gzip_db23b523592046d516075fc92c097157fa73b55dd6df5e2a8b807ca8a2d57eee" +path = "static-publisher/static-content/file400.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.du.min.js_d5d4367886c704f1e25fac53a389582ed0e3b18360c5b029dd6e2cdd74d2ec48" +path = "../build/minified/site/assets/javascripts/lunr/min/lunr.du.min.js" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.du.min.js_br_437767f83e88518498c98d2b10beaacbcd678803ff65f6a8435c6b3f5c835fea" +path = "static-publisher/static-content/file401.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.du.min.js_gzip_a8f778c0c7067a33e6c93c0cdc0d30add73abcfdfeff2e25675ce6e1d28f1884" +path = "static-publisher/static-content/file401.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.el.min.js_54d0ea4bbe2718e53e8fcac494d004e6f60b2e6149f810e92ab0dc0d41f9e090" +path = "../build/minified/site/assets/javascripts/lunr/min/lunr.el.min.js" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.el.min.js_br_86548c2ac4704f25ffacc803c79dac3b98f27ab6efa75466ab436a883d66f053" +path = "static-publisher/static-content/file402.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.el.min.js_gzip_fa8f0604697a304412439b94235db6086f65a405788a7da07d6c70be2ba6317b" +path = "static-publisher/static-content/file402.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.es.min.js_3dca018c0bbe77c54891ec2c2acc6d1a215c7617e3a7981e231b0f7a6937a13e" +path = "../build/minified/site/assets/javascripts/lunr/min/lunr.es.min.js" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.es.min.js_br_828af48b9c008e8167d5998b306a62cd616662d2c4012a6229df09fd800a290e" +path = "static-publisher/static-content/file403.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.es.min.js_gzip_586fa60eaf704adfc741291435d72c8627e6c453f8236bc6cdfe4a81f9de0e37" +path = "static-publisher/static-content/file403.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.fi.min.js_b47f2a5152948bbf7322345443c9e30013c60a05ba9541a002b29e8d1820ed74" +path = "../build/minified/site/assets/javascripts/lunr/min/lunr.fi.min.js" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.fi.min.js_br_5c1d81c38379447c9d0d0ea9038f4732db809224107d80a739610c0b29f49960" +path = "static-publisher/static-content/file404.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.fi.min.js_gzip_6d12ed3d9edbffdf291db4f613d9d5e5e7a1db394c75847a7712760e65cf12fd" +path = "static-publisher/static-content/file404.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.fr.min.js_7a8bb3b5610076344782e6f8619e512490eede2cad17f6eabdf1fa5f9bcc62c1" +path = "../build/minified/site/assets/javascripts/lunr/min/lunr.fr.min.js" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.fr.min.js_br_cf7ee4a3870c6618d711e3798ae7a0501b2796440f277b9959ffde901ae60502" +path = "static-publisher/static-content/file405.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.fr.min.js_gzip_fb2900e97019d211eb7e30d60da3cd9aa89758a16ff83176a6f7ab81116c028b" +path = "static-publisher/static-content/file405.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.he.min.js_bb4380bc24c7a1ae3870a1ef9743bbe88f11e25924d5ee502e82b6f7666adfb0" +path = "../build/minified/site/assets/javascripts/lunr/min/lunr.he.min.js" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.he.min.js_br_925676940dcb3d0092b3dac5abe73b4f230c270dc4f00014272cccc7ca691c6c" +path = "static-publisher/static-content/file406.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.he.min.js_gzip_36370fd0297b37f3321f7b817df2fef388574155a9c515aba65ac6308485bf8d" +path = "static-publisher/static-content/file406.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.hi.min.js_80147c8b930f0ac026fcd8bea65869b60c6912715655daaaf14e4a3119c9bffc" +path = "../build/minified/site/assets/javascripts/lunr/min/lunr.hi.min.js" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.hi.min.js_br_581c98e2a276d461daa2a932d90f117b687eaccb0f846d3f40f91fa50bf089fe" +path = "static-publisher/static-content/file407.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.hi.min.js_gzip_660d4935631579b399ab98b9c766bc97512469872dc7b1536f387b04e48d8a04" +path = "static-publisher/static-content/file407.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.hu.min.js_9318ce94ee14c5f20237473bdeb19ff983290ab5114db84fed0eb4849038c236" +path = "../build/minified/site/assets/javascripts/lunr/min/lunr.hu.min.js" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.hu.min.js_br_aee8a3c7c0ef39f55564ae38004d340febee59a9cd3327512fbfe50eac2588ed" +path = "static-publisher/static-content/file408.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.hu.min.js_gzip_1488bad6085b0b9fec342f964b71313183f5da2fed94bff242a98c7f3cd59e45" +path = "static-publisher/static-content/file408.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.hy.min.js_ec6e7f1e826282aa6c02da8989ef3d833c90f349eb2fa4ce46b5b537259cc1b6" +path = "../build/minified/site/assets/javascripts/lunr/min/lunr.hy.min.js" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.hy.min.js_br_7c10db7487f63355abcbbb98d2fce9abe8009137c8fef785a8656c8b218f484a" +path = "static-publisher/static-content/file409.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.hy.min.js_gzip_423cc2897b0c9260ec616520ab9f99128b944ea0412a657565f8e791139e96c8" +path = "static-publisher/static-content/file409.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.it.min.js_1cf38a03a6270c2097520567bdce15fddda05443506122ec16f3d78578137435" +path = "../build/minified/site/assets/javascripts/lunr/min/lunr.it.min.js" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.it.min.js_br_a9fc7f4fde02492970a1a23ccd1f7411375ebacf119fda4229a8fe59fe99ebb4" +path = "static-publisher/static-content/file410.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.it.min.js_gzip_2fdf0d0e42416143d63c811acdaa75614c70cedd3f1536246b39b9b93a7ea9f4" +path = "static-publisher/static-content/file410.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.ja.min.js_8651b64cb9c3cb68b246eecc421d338a2150d3551b954ca4fe61cd941f2dd663" +path = "../build/minified/site/assets/javascripts/lunr/min/lunr.ja.min.js" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.ja.min.js_br_d89831ea125cd5732f21f938673cf5473ecc0bd40a885c747eb4794b8d22f05c" +path = "static-publisher/static-content/file411.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.ja.min.js_gzip_651884bfbeefc54f4b6565add3a3501493884aefa1a8f9d5b15e200a10abe752" +path = "static-publisher/static-content/file411.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.jp.min.js_8894f28856befd035721b9d1ae93209d9eb3867e8e45defcde7b067bd8da4dca" +path = "../build/minified/site/assets/javascripts/lunr/min/lunr.jp.min.js" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.kn.min.js_a0873914350369e3070ef95cd186372d0d8d302edf8a5ca72cda838bb90ccbec" +path = "../build/minified/site/assets/javascripts/lunr/min/lunr.kn.min.js" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.kn.min.js_br_e600b01330e6e21df9a9b4fe959394e196cdce2e203a16fd90988f55a8ad77f2" +path = "static-publisher/static-content/file413.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.kn.min.js_gzip_4405742ac90f022302e71d6602303878250ae7a94e3298c2e5d79ba6acbf8182" +path = "static-publisher/static-content/file413.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.ko.min.js_dc308e4caee86bdf10e55694c25cef5b5de8b130d298e077758f601913e2ea0b" +path = "../build/minified/site/assets/javascripts/lunr/min/lunr.ko.min.js" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.ko.min.js_br_f6fd8a16d1ac01b8f4a89c75bce648f35bfd6e2702d85fa8c6782f4ef702b12b" +path = "static-publisher/static-content/file414.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.ko.min.js_gzip_330e267bc58b92e97efb8baff03b52e5dba721e2d72c2be952538e3040c0601d" +path = "static-publisher/static-content/file414.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.multi.min.js_98dd8286c0afb6d28c09db29ee1f60052d2d819a0e160dd142077f4bcb830ccb" +path = "../build/minified/site/assets/javascripts/lunr/min/lunr.multi.min.js" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.multi.min.js_br_600593c55b7bb99c62f47120690218c6ff3f48df5487f227c16d39ed1e605ba6" +path = "static-publisher/static-content/file415.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.multi.min.js_gzip_437eb2bdfebea9ed059c61cbcefadb3a8e21e667aab1f769511fa222fe6a83f4" +path = "static-publisher/static-content/file415.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.nl.min.js_5bb8bcec78d39ff448833255d8164f14a2976165232519ac456584a525b384f6" +path = "../build/minified/site/assets/javascripts/lunr/min/lunr.nl.min.js" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.nl.min.js_br_7972921b4ba3267254459f2da51504758bc647a475ed61e934f5f87237f515b0" +path = "static-publisher/static-content/file416.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.nl.min.js_gzip_425dcfd8f79e8edd297e48c325d621e772078be31eecb38c430a804936b3e589" +path = "static-publisher/static-content/file416.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.no.min.js_d9223e209fa1152a0aa9b988eb2e2284d6317ed378e43e6fb986c85d26cd55ef" +path = "../build/minified/site/assets/javascripts/lunr/min/lunr.no.min.js" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.no.min.js_br_a9357fc5fefc8da7690049a9201c414f541c8b12fe53fb97f85e82cda30fa252" +path = "static-publisher/static-content/file417.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.no.min.js_gzip_5a33596b84254a12423969c77fdd74046e62462bc7a5b23fea554a0122b63e78" +path = "static-publisher/static-content/file417.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.pt.min.js_8062d4cc6edee16f74e8144138aa1c552fd86e364383709951d2c9e162ccddd4" +path = "../build/minified/site/assets/javascripts/lunr/min/lunr.pt.min.js" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.pt.min.js_br_660e2454c9ca3e689cb1c354b4401fd4b5ab42c4565f4471481dc81608b0a45b" +path = "static-publisher/static-content/file418.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.pt.min.js_gzip_8cc5d8668d9f565249a96072f8edf8071d7d5d69384ebf7304dd339bd12ec484" +path = "static-publisher/static-content/file418.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.ro.min.js_9749e3e60b71257a22050969befe86f9c79dfe9152cb4f3b1286ff537e2e2cc2" +path = "../build/minified/site/assets/javascripts/lunr/min/lunr.ro.min.js" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.ro.min.js_br_0074479184a10fe45f55b5f4f6a004db25e98068649b562d181ecae560a98676" +path = "static-publisher/static-content/file419.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.ro.min.js_gzip_737d82b4fd881d75c6de0ae96b65b79cf87bd83346fcaffa20f475a74bc52a62" +path = "static-publisher/static-content/file419.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.ru.min.js_b89921716f5c7d570f899d83f39df5671865c7d1b217b8ef439368abbfe4e67d" +path = "../build/minified/site/assets/javascripts/lunr/min/lunr.ru.min.js" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.ru.min.js_br_c2823b13ed9f5c0eaf15326f434150a32c051567c13648c5a5f6ceb456dc65a5" +path = "static-publisher/static-content/file420.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.ru.min.js_gzip_a38236202cbad365e8e324acbd32b13213344c1e9b46f26ec3b40e3c4675c4b5" +path = "static-publisher/static-content/file420.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.sa.min.js_e768a694ac4b893d82466afc2f6eb914008e4e3ed05a8fb923c925118c8f1aab" +path = "../build/minified/site/assets/javascripts/lunr/min/lunr.sa.min.js" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.sa.min.js_br_80876999ef1789777e5b956f5f11e1b11cf7061563fc248ea1dc84e70067c328" +path = "static-publisher/static-content/file421.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.sa.min.js_gzip_4974b04d9313921444d957c7236e0e48056ca314cd4bad2752edf594c7e1d016" +path = "static-publisher/static-content/file421.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.stemmer.support.min.js_129f33247cdc775ad78639825485ae0941ea5152452beb9bd8296bcacf504f20" +path = "../build/minified/site/assets/javascripts/lunr/min/lunr.stemmer.support.min.js" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.stemmer.support.min.js_br_6ad913eaeceb35acb6aca1277db8ba1424782a18a1af93d33668fccd6e0aa60a" +path = "static-publisher/static-content/file422.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.stemmer.support.min.js_gzip_c36e50e04235ca2f3539052f862908ce309e1f0d794d7a9d2b96a4c71ffd7889" +path = "static-publisher/static-content/file422.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.sv.min.js_8fccc22b3c38c3d24ba07fbd5d3859f2960f3b92af269486b79d199c308bb5d5" +path = "../build/minified/site/assets/javascripts/lunr/min/lunr.sv.min.js" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.sv.min.js_br_053ede9e9d22a1eac406730758023c6a1add36284b30664f1d3a9cc86bd1b7ed" +path = "static-publisher/static-content/file423.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.sv.min.js_gzip_2db19b4e79e5dc67456d9c273c51f0da6496c7b9b77108c259858848f12d8f47" +path = "static-publisher/static-content/file423.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.ta.min.js_aaed3fda995d5f953b83f08e4693d9edab29114c57daa9ab228bf1d5ed9b97c0" +path = "../build/minified/site/assets/javascripts/lunr/min/lunr.ta.min.js" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.ta.min.js_br_85c16f5fd4ec009190813b44aa2d37f6c7b40c7cc7a0cc63e432ef0e170d1a2e" +path = "static-publisher/static-content/file424.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.ta.min.js_gzip_9de45ef8c1bc26acdfe2e8f554dea7b22a94a769ea4bb447c09e18734423136d" +path = "static-publisher/static-content/file424.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.te.min.js_c00457f5841fba7b4afc2e81faf70518a1013bee6f8416ee7f493e7eeda44ec0" +path = "../build/minified/site/assets/javascripts/lunr/min/lunr.te.min.js" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.te.min.js_br_626e0ce9e21ec45f17b42160d9d06cdb441280d1de58cc83194e2c2da5c3aea8" +path = "static-publisher/static-content/file425.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.te.min.js_gzip_10a24991d4ad61acc7a1a14f12792d1bdf7ec61a0f7efec2687a1eec9c4c58e1" +path = "static-publisher/static-content/file425.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.th.min.js_17d44585318df54b122735411d711fcf13e4f73edfaecdef2ae19aba94a87b75" +path = "../build/minified/site/assets/javascripts/lunr/min/lunr.th.min.js" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.th.min.js_br_c26c0b2fdaa4248c1b4ccd53d396a02d6d6cb3803e1cf522b646a0d52641cc60" +path = "static-publisher/static-content/file426.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.th.min.js_gzip_38d2667f8ae50fe624c5cf5e1cedfb30af9ccef23e721a896895df714371f951" +path = "static-publisher/static-content/file426.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.tr.min.js_a953701e098fb5b0a31e7874a8489c2b522aea35bccc56ed9c8b99dc6861443c" +path = "../build/minified/site/assets/javascripts/lunr/min/lunr.tr.min.js" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.tr.min.js_br_cd8920cc1210c2d078cfb0c6822c1f945ae15360bd4c614309c7b8efaf3b5b6c" +path = "static-publisher/static-content/file427.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.tr.min.js_gzip_2966557fe1757c6b12f6d936f4e2b50e30062d262edbd1eae0cbb316b64f0986" +path = "static-publisher/static-content/file427.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.vi.min.js_7df806736754bfa8bf6caab9749ca3be3d2e345e3f6f559ccf574f77bc5fa140" +path = "../build/minified/site/assets/javascripts/lunr/min/lunr.vi.min.js" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.vi.min.js_br_dcefced3aa4d80e1af108b086782af37449fac51e934c0f7f0d827cb67463b3a" +path = "static-publisher/static-content/file428.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.vi.min.js_gzip_53c3915c8e0aa59e9057460493c4f948efdd14c2eb91786a497562b664276717" +path = "static-publisher/static-content/file428.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.zh.min.js_55ea8cbcef12d3530861d6db4c9b33d219d858e02a247b359cc5deab03059416" +path = "../build/minified/site/assets/javascripts/lunr/min/lunr.zh.min.js" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.zh.min.js_br_c8d7a19dfb0e1e0b4335440471acade2d72aeac3f6f82b6ffe816ba3f3ff832b" +path = "static-publisher/static-content/file429.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/min/lunr.zh.min.js_gzip_520908dd4b13db1255073b58dfb6342ffd28af71882b5d60c442511feadbfd8c" +path = "static-publisher/static-content/file429.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/tinyseg.js_d3dd2989dc2e125b11d4e618581ed72d00c396f4a89bc5f96acbac14aab94f34" +path = "../build/minified/site/assets/javascripts/lunr/tinyseg.js" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/tinyseg.js_br_9177cc501af0e5a1e71c9d63fdce8a0a6aebd41d0685707b2edb61bd0115e85f" +path = "static-publisher/static-content/file430.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/tinyseg.js_gzip_dafd746466fb32b44fb05d697a146c8fea08edb8337c21a0940e29c49e409e25" +path = "static-publisher/static-content/file430.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/wordcut.js_f3696934683d894e75ccc42f17a18174da237273d78a08855be935e0e27640b3" +path = "../build/minified/site/assets/javascripts/lunr/wordcut.js" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/wordcut.js_br_0b2cb8b19cb57255f3720bfcfa597a81a3068675f9686900817adc4eed044e34" +path = "static-publisher/static-content/file431.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/lunr/wordcut.js_gzip_17e5c9b7e50913c87648eefd700d324d79d4d49bd3aec754f5aab2da5a2fc6b1" +path = "static-publisher/static-content/file431.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/workers/search.1e90e0fb.min.js_8b10dd3ca84c66398afb987eedd5a3c48f15f13a6d4c4223737861e5778f7b65" +path = "../build/minified/site/assets/javascripts/workers/search.1e90e0fb.min.js" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/workers/search.1e90e0fb.min.js_br_727d107d8da958aae9b7335dca582eafa2955019a68ae8bde858c86eef411a1a" +path = "static-publisher/static-content/file432.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/javascripts/workers/search.1e90e0fb.min.js_gzip_6e29f4b9cdbd9e313e2ec5c832ea637557879122c02ce9de4af708dc1c09b51f" +path = "static-publisher/static-content/file432.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/logo.png_4765e10390054cf886555065091699750d6843bffd1856a86396cf82a4dd6b73" +path = "../build/minified/site/assets/logo.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/logo.png_br_5bc5ace0311b6aa10a74fa03e0975565809c0b25433ef851fbb5a5e1dc526e27" +path = "static-publisher/static-content/file433.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/logo.png_gzip_219cfc2b8e36e4f53ceef30334ab32e8d181e8888e18f4d2af148b4a5178d651" +path = "static-publisher/static-content/file433.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/rocky-linux-logo.svg_1cfe3efe7740cb28701fc649b7a09991e73c3848e0a40e67641ce76aa6194739" +path = "../build/minified/site/assets/rocky-linux-logo.svg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/rocky-linux-logo.svg_br_5216a473d08706796470f054d9317ef2704906e57d0720e35ecca062c21c2a9a" +path = "static-publisher/static-content/file434.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/rocky-linux-logo.svg_gzip_199aa51f77a1c0b0f5e7258dc10d28e932d3d9362ba7c9c4c4034529d1827997" +path = "static-publisher/static-content/file434.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/stylesheets/extra.css_db1b68766e2307e074261089dfda8cf95c4bc8cd70378327503e139b50da3e71" +path = "../build/minified/site/assets/stylesheets/extra.css" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/stylesheets/extra.css_br_6e69ad13ba732755e09e24655e2a15af7e8f7f0f56c8992b176fc36409716bc3" +path = "static-publisher/static-content/file435.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/stylesheets/extra.css_gzip_aba0f83ddab56d1c59154e725af56916701d4f54f58f76095873a59358150028" +path = "static-publisher/static-content/file435.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/stylesheets/main.003a5498.min.css_b9d3ed6a2527e3f7d9cfaa36223851f23e4eab59c9702c11a9f411c94eceb2b2" +path = "../build/minified/site/assets/stylesheets/main.003a5498.min.css" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/stylesheets/main.003a5498.min.css_br_b7f210596e8ff75b24483d32992e7482ad57f740b5c61c2825fb12482c26b199" +path = "static-publisher/static-content/file436.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/stylesheets/main.003a5498.min.css_gzip_5365c183fa73ccc3ed68824ef774eed2e9b46fe44db5580f0829b676f6c282f8" +path = "static-publisher/static-content/file436.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/stylesheets/main.458d28d0.min.css_319b27ce661691e6729d7629d1b0f2734d043552a3df771aeac96df2b7a56778" +path = "../build/minified/site/assets/stylesheets/main.458d28d0.min.css" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/stylesheets/main.458d28d0.min.css_br_6d45b1246ffd94ecde9cccefc853d30bc6413b4c8f23ab3d21f0b31b26e61106" +path = "static-publisher/static-content/file437.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/stylesheets/main.458d28d0.min.css_gzip_88cd6ddd2d2a2b94a821d782828df081866eb1595eb1d18a9436f389865d5445" +path = "static-publisher/static-content/file437.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/stylesheets/palette.ab4e12ef.min.css_ab4e12ef511f9c36de818455892c5c57cc3f98a8c86c36fa609601a88a720da2" +path = "../build/minified/site/assets/stylesheets/palette.ab4e12ef.min.css" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/stylesheets/palette.ab4e12ef.min.css_br_b7cac5101a3f447d436c63bd8fad213c85037aaa23eae6e3e7da33d3bdae6b60" +path = "static-publisher/static-content/file438.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/assets/stylesheets/palette.ab4e12ef.min.css_gzip_c40d164eca5a88938a11d87b7905294f79696802b7d5d320f6fdaec2e53976a1" +path = "static-publisher/static-content/file438.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/00-toc/index.html_f597933997d9fa8fdab0f7476a56bbb94a4ba17ea37c72a561e2d3ed938fa7d5" +path = "../build/minified/site/books/admin_guide/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/00-toc/index.html_br_d48bc99dc65b92203c9fae7588f533e3cffbb91e3a95ea34a0043862f3b9d268" +path = "static-publisher/static-content/file439.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/00-toc/index.html_gzip_cbb75953868306788ec2880abcfafa6b85f658b8937a4c20a9c06030d328455f" +path = "static-publisher/static-content/file439.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/01-presentation/index.html_095ca1e04532a1aa76855212c4dcea8e5390327d9cb0eb9ed0692518d76b83ba" +path = "../build/minified/site/books/admin_guide/01-presentation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/01-presentation/index.html_br_d08ac03f58ba98ad4f4981c036e862efffeae6d01b397b38c36ab207c3b0bb6f" +path = "static-publisher/static-content/file440.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/01-presentation/index.html_gzip_af7b1c5e31114ce363d0048232fbfaf9fc13d563602b33f2e463a7a0b0e2e41d" +path = "static-publisher/static-content/file440.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/03-commands/index.html_737d49e62426b3ebaccdbef54cf630f822e421b4128368765401f2f5acbcab06" +path = "../build/minified/site/books/admin_guide/03-commands/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/03-commands/index.html_br_abd7b722e0adf1b51b477af85fba42bd82b73a8552b3e2f4eff77130a9540708" +path = "static-publisher/static-content/file441.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/03-commands/index.html_gzip_9acc9e17613a41d11b5467fb1a6a64a03056eeeccf9fe38a0e6c215a80f0adbd" +path = "static-publisher/static-content/file441.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/04-advanced-commands/index.html_214b7793b20e1e2e214df75001cd0ec6464e44a963a1d8be7ae80381d2a7f704" +path = "../build/minified/site/books/admin_guide/04-advanced-commands/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/04-advanced-commands/index.html_br_37c15342b4a02ecfa06cfd7e9acb345f87eb14b66e4108312349e505f8c8d897" +path = "static-publisher/static-content/file442.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/04-advanced-commands/index.html_gzip_710dd99102758f2e52ac39efcf96f43a5d0e8970d86dd51a98766263b5e9d592" +path = "static-publisher/static-content/file442.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/05-vi/index.html_0a47cd6e53664fc85aa69057f17efcc5a862a92e7fbdd188c9cbe78b0d7a2d82" +path = "../build/minified/site/books/admin_guide/05-vi/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/05-vi/index.html_br_c9454461964a49fec4e16fe4c3cea560542c30c66416a59f4d0a77ccf6261ea5" +path = "static-publisher/static-content/file443.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/05-vi/index.html_gzip_d9fc57c322596fd195a88a7f5097dc601fe60a2a0d0fdffa17a0ef34edaa9274" +path = "static-publisher/static-content/file443.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/06-users/index.html_9354447765f839683928c73927b7b8471cd638906f2b592cb478b48163d4e1e3" +path = "../build/minified/site/books/admin_guide/06-users/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/06-users/index.html_br_4b5169155549a524fcc05d27a431b401a9ac8f0a00d370f9ecf20372046eb719" +path = "static-publisher/static-content/file444.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/06-users/index.html_gzip_314c7b40be1361a5b1613276cbf49d4ef58ca7505e976c2e046a84489dcff83c" +path = "static-publisher/static-content/file444.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/07-file-systems/index.html_bbbb41afae1e0894ca6fb67a1e6be973d0b54b09388f40ad285ff15452471be3" +path = "../build/minified/site/books/admin_guide/07-file-systems/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/07-file-systems/index.html_br_0c684681a18aa26641f134fd6d5e0e71c55e5d2bfe142d733620d2ce26fb5d8e" +path = "static-publisher/static-content/file445.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/07-file-systems/index.html_gzip_a085dd3d8d641c8ab5d224adf7e736de3f9f5d3c17744cfd79f5b76a87b9c1e1" +path = "static-publisher/static-content/file445.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/08-process/index.html_7584226ce1bde4188f52201b704c369fafa49cb49bfca2c25ed44fded0af3ef8" +path = "../build/minified/site/books/admin_guide/08-process/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/08-process/index.html_br_fbadb85886c7e65866b404164219bcfedb873838b219936a589373bc30a0e923" +path = "static-publisher/static-content/file446.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/08-process/index.html_gzip_1adde0d94871e78f123455b6d9d6f6ffb0c8461acec412c152486276f37f2d81" +path = "static-publisher/static-content/file446.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/09-backups/index.html_3409b548eeb588922eb89710b764347800ad4207f20311bb43b2d9691bfff60f" +path = "../build/minified/site/books/admin_guide/09-backups/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/09-backups/index.html_br_f33249f36dcff09d789f1def13ae5620dbd5ca6ba85232d04dbef251934fb271" +path = "static-publisher/static-content/file447.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/09-backups/index.html_gzip_05db4432aeb600490588b80ce96c8af1c68cd5eb7ad2674cf76bdebcea27759c" +path = "static-publisher/static-content/file447.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/10-boot/index.html_552b6d85aa54024a99b28672802f1147411196b95add6506797c155d28b30eef" +path = "../build/minified/site/books/admin_guide/10-boot/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/10-boot/index.html_br_6810de2f031f12e2378124d4aed41b98c5e7607cfa8ddbc31ca3ad5277e1448e" +path = "static-publisher/static-content/file448.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/10-boot/index.html_gzip_dc1957ed0914fbd46985bd80154853321da0fa9d036975197e680d495b654dbd" +path = "static-publisher/static-content/file448.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/11-tasks/index.html_14afcfae5987fb74400076fe63f128517454cd40708e44b1c55714aa0fe5232d" +path = "../build/minified/site/books/admin_guide/11-tasks/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/11-tasks/index.html_br_ef774adca6fa30b4eecd0911d05e3f478c43e7a2365c16cd8b8a98bbab4f2184" +path = "static-publisher/static-content/file449.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/11-tasks/index.html_gzip_3ec3753a955c3e847e32a81c814a934face166e3462b9cd227310bc424e426af" +path = "static-publisher/static-content/file449.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/12-network/index.html_f563fd3542f8a5467c66f5f37065e1ba8d97dac1495ed42cb3e4b1e9995cef59" +path = "../build/minified/site/books/admin_guide/12-network/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/12-network/index.html_br_2445b10e460f0c6811a16efbdb5e5351c388a555a8b3df4e35e5ba23755389cc" +path = "static-publisher/static-content/file450.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/12-network/index.html_gzip_038a66bd4986b1262711bb30b74d3cd36fef69c3addf61a63930c70cd54ad2ad" +path = "static-publisher/static-content/file450.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/13-softwares/index.html_5a45ad15e3f6639b8ee3c9d0070d6073b2020badfd28693c53113a9596b7cb18" +path = "../build/minified/site/books/admin_guide/13-softwares/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/13-softwares/index.html_br_6a75af7db9737e12f124110952bc03c9e5851010063d7768e9aede27c50e72fa" +path = "static-publisher/static-content/file451.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/13-softwares/index.html_gzip_c310555ef77d67434401f03a5d411d494bb50a34eb22ff89fd6e0375e10f1847" +path = "static-publisher/static-content/file451.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/14-special-authority/index.html_b6391dfb88c831deeccb3d2801a755a8ab95206715f4fff3c5797385865eee25" +path = "../build/minified/site/books/admin_guide/14-special-authority/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/14-special-authority/index.html_br_5fbd639f54210b469dc3b03e69216d031ff1b2f223b4033536d8f4e53081c206" +path = "static-publisher/static-content/file452.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/14-special-authority/index.html_gzip_8eee25a1d5c33b22ea6fa701918828f8609d4417c5dd127a6e23fb3911f84ad5" +path = "static-publisher/static-content/file452.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/16-about-sytemd/index.html_7c27a8985c81f52a2bc562ee8e5dcf96d264099342f7f8b11ec7205ba1e0766e" +path = "../build/minified/site/books/admin_guide/16-about-sytemd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/16-about-sytemd/index.html_br_7bae1e02e4e46acb145a6992423895fc9d294e94fbd8cb56aec1d3422b59ae30" +path = "static-publisher/static-content/file453.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/16-about-sytemd/index.html_gzip_7a62f7f40e710dd671219c3298cf8c0ff136a853e02df94a89b80b9c201e8685" +path = "static-publisher/static-content/file453.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/01-presentation-gnome.png_d8bd4783b3cf370f43fd4b1580c851d1a33860603d92048060fe10070e1e5b78" +path = "../build/minified/site/books/admin_guide/images/01-presentation-gnome.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/01-presentation-kde.png_81a967c165c4f4853a2282d74cff12bb68f7b211c6c0500aa0a5e7a6800a909d" +path = "../build/minified/site/books/admin_guide/images/01-presentation-kde.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/01-presentation-kde.png_br_62f5448879a90bac2e9af7b17f2159a4e07cf6cafdbd58f2031150a770d3c51f" +path = "static-publisher/static-content/file455.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/01-presentation-kde.png_gzip_43ce46f189a48b8fa45f99fd8cf4b92479bb3c3657e4e9381d976d8e2abb2c7e" +path = "static-publisher/static-content/file455.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/07-file-systems-001.png_d4a795d04374d8d1fc6ca4c53bf6398ad6e5aaf1e45ebe29f5e6d02ed20d6a5b" +path = "../build/minified/site/books/admin_guide/images/07-file-systems-001.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/07-file-systems-001.png_br_f1ed4a37adfa50e76e8de8ef232667fe9d4ab6b84d6816ace87ee8162734a049" +path = "static-publisher/static-content/file456.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/07-file-systems-002.png_fc59ad8779421a622e208c9ad0dfa1fc63083fffb614d11dfd3cffcab8be4bbf" +path = "../build/minified/site/books/admin_guide/images/07-file-systems-002.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/07-file-systems-002.png_br_5b6cf4f54f4f0e338b1a5e71c59fffe2a9268f7d5759d236055f32e3b508bf2b" +path = "static-publisher/static-content/file457.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/07-file-systems-003.png_7c608f3dd98acadcb62b933ccbd4dc811c569cd0f397368add420e09e53db85a" +path = "../build/minified/site/books/admin_guide/images/07-file-systems-003.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/07-file-systems-003.png_br_933d365a50d609de0e2fa0073755b993548e22e2ea8132a0a95052c0aae7d75f" +path = "static-publisher/static-content/file458.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/07-file-systems-004.png_26e96d5f87ecfe340810b2c42ba320aa1202c7cf2b3971bbb098d6e21f5be8ef" +path = "../build/minified/site/books/admin_guide/images/07-file-systems-004.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/07-file-systems-004.png_br_451293f2de1ba36a91db081a79d70a86b4f2e44b0768a326be71f386fbd10fe8" +path = "static-publisher/static-content/file459.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/07-file-systems-005.png_49e268758220ecbe18a4af004e2fc3742328746e387d20e7fe1bb7bdad22ec04" +path = "../build/minified/site/books/admin_guide/images/07-file-systems-005.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/07-file-systems-005.png_br_bff18f715b328cb10f58dc4fc05e5934ef98a103d042209261efa26fd16258d8" +path = "static-publisher/static-content/file460.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/07-file-systems-005.png_gzip_3abae88565cf6726f758a4ef615bfc7c287a806bce241a19c02f00b62e0be788" +path = "static-publisher/static-content/file460.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/07-file-systems-006.png_6a16dd2f656571e9c35196426a12fcbaa550b7a13e7807c98b6cdc43485c8609" +path = "../build/minified/site/books/admin_guide/images/07-file-systems-006.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/07-file-systems-006.png_br_a0d4f3c13a80adf8fa7d8d609b79b2bf260d834b35f596c83faf9b28335a3b22" +path = "static-publisher/static-content/file461.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/07-file-systems-006.png_gzip_05b4dab712d1d9716cda40748bfb1eff2f4da61d00538f166cebbfb30b1f6e4c" +path = "static-publisher/static-content/file461.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/07-file-systems-007.png_7535aeac3e9d232cef6d57ec6f9cc48830b142acd7e590c07dc47b7e40b6b64c" +path = "../build/minified/site/books/admin_guide/images/07-file-systems-007.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/07-file-systems-007.png_br_f245257ffebc7f55894ad7e379cad8c04d349d77913375124234828c69f7c3a4" +path = "static-publisher/static-content/file462.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/07-file-systems-007.png_gzip_875f49869d8ad93198cd5abe3c865891307265cf09e288b9010ed77a511e78e1" +path = "static-publisher/static-content/file462.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/07-file-systems-008.png_2e906eab752ab1d795e5a25f76f3767434f26b89c6b61287208207624e8f6fb4" +path = "../build/minified/site/books/admin_guide/images/07-file-systems-008.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/07-file-systems-008.png_br_e65f46e43249089c4f5c39cd0d6b1d50361ce37f10a0e338c31338e4cf3eee68" +path = "static-publisher/static-content/file463.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/07-file-systems-008.png_gzip_7f12b52d201a0fe01cf0ea1615d5d49a7cf8e22c04a10e5582e40a5c56dda0d1" +path = "static-publisher/static-content/file463.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/07-file-systems-009.png_538aadd2ff8e82eeee96bd2f0e13552a3c4b45349aa80ca2bc2adec3a9cea8cb" +path = "../build/minified/site/books/admin_guide/images/07-file-systems-009.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/07-file-systems-009.png_br_15bd845de4bc79ed8f303abffbecc9c4272a17557dd036fdd6eda38ddbf54175" +path = "static-publisher/static-content/file464.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/07-file-systems-009.png_gzip_a4bb1caf66ab13a33a592eae5464a02c17168d335078713696c31f4339024a98" +path = "static-publisher/static-content/file464.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/07-file-systems-010.png_7becf9959e1c5ffad7269bcf19bdd47d03747dce70b53b60c17218347690b35b" +path = "../build/minified/site/books/admin_guide/images/07-file-systems-010.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/07-file-systems-010.png_br_28ab9d9efeb9617f4027a095418326e4c453683913b60a0af0b3072d546d988b" +path = "static-publisher/static-content/file465.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/07-file-systems-010.png_gzip_38c9c39202cf1eef9285bfb1bbd3845dee6f05758886ed11df3f7407b022ebcf" +path = "static-publisher/static-content/file465.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/07-file-systems-011.png_4e6b501cf53ec07c5084435347f2dba2e23bf5d55e83312b6df12efa56a5a85b" +path = "../build/minified/site/books/admin_guide/images/07-file-systems-011.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/07-file-systems-011.png_br_2ffae461dcf3927688e313e0cb79d6c961463ecaa1deac27836c879985d5f8cb" +path = "static-publisher/static-content/file466.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/07-file-systems-012.png_b3818de05bd2eb416ce83b90c573f2a78557cd86925ca9b437d9e1841733bc37" +path = "../build/minified/site/books/admin_guide/images/07-file-systems-012.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/07-file-systems-013.png_223e42a8a4bd1084fc81dc27a3edb6c26ca062c054ed1bb23586ecdc59df636b" +path = "../build/minified/site/books/admin_guide/images/07-file-systems-013.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/07-file-systems-014.png_c4c48d9c472ac55602b650cce6add99366e1bce51660c29049a626583087c107" +path = "../build/minified/site/books/admin_guide/images/07-file-systems-014.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/07-file-systems-014.png_br_56c36dc6ffdff0b3eb3744b68182e0711bfc24de09976a7ffa4b44b81abc0c66" +path = "static-publisher/static-content/file469.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/07-file-systems-014.png_gzip_db075cbaf26227f8eacedffe45671c4330db20b80ceda2497a3df95ec6b07eaf" +path = "static-publisher/static-content/file469.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/07-file-systems-015.png_a9b8c4a74f999c01f214374af0fb7684f4dea5f35ff115c920e5ba9b2f2a2033" +path = "../build/minified/site/books/admin_guide/images/07-file-systems-015.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/07-file-systems-016.png_a4f08234349d3765388ea363ebd09ec2a8f845f482c7ee3ae455a357c18fbee2" +path = "../build/minified/site/books/admin_guide/images/07-file-systems-016.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/07-file-systems-016.png_br_8c9ff403c905a5a28dece49cc672798e8744fe6f2194f58e705d438de2980c95" +path = "static-publisher/static-content/file471.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/07-file-systems-016.png_gzip_dcf0e2b826d73b714a5672fa3761eb7fd554097e7c139f88c499c3dbc430821c" +path = "static-publisher/static-content/file471.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/07-file-systems-017.png_5a8dd82a24e29322e9fab920fdbe37f53006e1c769c3f2a064e5f417f6dc1e39" +path = "../build/minified/site/books/admin_guide/images/07-file-systems-017.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/07-file-systems-017.png_br_c3622175734dc154280a86b477824d63783dfa30365cc3c262abab897b64e41f" +path = "static-publisher/static-content/file472.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/07-file-systems-018.png_feae47ef22a49e97ec37819da2d2145281227b8155d73585cd63514d2926361f" +path = "../build/minified/site/books/admin_guide/images/07-file-systems-018.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/07-file-systems-018.png_br_ba2255b2dc5564a562a92df29b38ced4442109333b79702dfd613f6193f8d57f" +path = "static-publisher/static-content/file473.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/07-file-systems-019.png_970274c8e2fa3a44ec42f4e48acb55be6bb618028d6859fe9afdb48db331a09a" +path = "../build/minified/site/books/admin_guide/images/07-file-systems-019.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/07-file-systems-019.png_br_052234cdc9554190d11d27c7ea1f6390d0747e127fc2c9ed155d8094b065e90d" +path = "static-publisher/static-content/file474.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/07-file-systems-019.png_gzip_f8d32e3bf738c6c04c6943d7ebbbcf70eec631ac20a9c42c631a2ab36dc1dbf8" +path = "static-publisher/static-content/file474.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/16-Kay-Sievers.jpg_071a7231e318aca2b6dee8223f543b680c30b4c0f5633569319d1e2cc5f9aff1" +path = "../build/minified/site/books/admin_guide/images/16-Kay-Sievers.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/16-Kay-Sievers.jpg_br_1f3f392ff064336bcd546503df416816a99b9127ee3b1343955e47c7e8c44cd6" +path = "static-publisher/static-content/file475.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/16-Kay-Sievers.jpg_gzip_a65d081058e2f8e31a735f475f25d6cc87d9a554f82e34e336ea237b43b419c3" +path = "static-publisher/static-content/file475.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/16-Lennart-Poettering.jpg_d7b0590ccb6ad4798b4b9d8962340895171e2257caddbc30cd34a932726186d4" +path = "../build/minified/site/books/admin_guide/images/16-Lennart-Poettering.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/16-Lennart-Poettering.jpg_br_b6b9c242c1af9444172532e2f26ae28725a541c46159fc87b106fab62cd76c23" +path = "static-publisher/static-content/file476.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/16-Lennart-Poettering.jpg_gzip_4b7f3975cfb7bd33655e9b01641c239c11f7da9fa67fb1dcd342318aed134dfc" +path = "static-publisher/static-content/file476.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/16-effect.png_48364298e5015f7d4f44b0c1d24ac08ef4269973f4ef6fd72182c18da06f37a9" +path = "../build/minified/site/books/admin_guide/images/16-effect.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/16-effect.png_br_87e5a86a6078b3bb735818d21305214f07cc7e2aeee0f77549d7859f347876d4" +path = "static-publisher/static-content/file477.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/16-effect.png_gzip_b32b2cbd55528a977ee199883b3c8bd5edbc0f0fea4f79bd3c8280904d2e4d67" +path = "static-publisher/static-content/file477.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/16-init-compare.jpg_f76e331712f37d72d4dbd6d74ffcf400fcc262f3c627e68a5c48eef8ec5077bd" +path = "../build/minified/site/books/admin_guide/images/16-init-compare.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/16-init-compare.jpg_br_28bb2f434021618e72df52ad7915c96525d5de54658c4c749bd688876f439632" +path = "static-publisher/static-content/file478.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/16-init-compare.jpg_gzip_3506e3b055478859a3cebb5eb2a8686b997a5cc0c19035619822d31fdd3eb8ad" +path = "static-publisher/static-content/file478.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/16-tizen-systemd.png_bd638b49ff58310d54d0e75cce2ed1a422a3f0e6407789e51cf7a58ee1a1de28" +path = "../build/minified/site/books/admin_guide/images/16-tizen-systemd.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/16-tizen-systemd.png_br_f5a414618d80b8b8cb910657c8381fe11462aabd812380801d8c53e9be096ffb" +path = "static-publisher/static-content/file479.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/16-tizen-systemd.png_gzip_f8e7ad9e656fc9012a8e73d9a21c5c40b0208538af8f426868c2184746ef3b0c" +path = "static-publisher/static-content/file479.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/SetUID1.png_8cd7e8b477ae24bc012b00f0660c3441fcc038880a96afc848bbcae97e67f68e" +path = "../build/minified/site/books/admin_guide/images/SetUID1.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/SetUID1.png_br_d1e41b844c6447362d14e9c4df81100bc6178a1d772dcbf6523294ca8d165cb2" +path = "static-publisher/static-content/file480.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/SetUID1.png_gzip_7dd7649d0b690d4cbe1226bebf85ab1943724b5296d83eed0dcd1a2e8fdf8738" +path = "static-publisher/static-content/file480.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/SetUID2.png_9244427a863a8fcbf305fb4c9cb1a05e5202b749a860be86e5f3549cfec5a7cb" +path = "../build/minified/site/books/admin_guide/images/SetUID2.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/SetUID2.png_br_3da002a391d38130fc0b14ff963d48c028eaa5f8a5e2b5be0917fcf8d933c7be" +path = "static-publisher/static-content/file481.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/SetUID2.png_gzip_e63b1df0dd413a0c63121f3d0edf8f643d85b9f1e4d4dedb78b5034d020534ce" +path = "static-publisher/static-content/file481.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/chage-timeline.png_afcd43e6104a9cfa3b82d7788ad2b79666955265522996d27e202d0f9962e337" +path = "../build/minified/site/books/admin_guide/images/chage-timeline.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/chage-timeline.png_br_a56f0a370d4221e44193dd0ef499a494c29189a2f83f7a13039e636cd3356409" +path = "static-publisher/static-content/file482.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/chage-timeline.png_gzip_68c44a7bc387e9a87aacced8c837391d8fd2faf6a3444dbb6914f9a013daab61" +path = "static-publisher/static-content/file482.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/commands-pathabsolute.png_8541a87dbd959e23a3f2943f53fe6f50ff64ab231d7958581cc991fd6df2e770" +path = "../build/minified/site/books/admin_guide/images/commands-pathabsolute.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/commands-pathabsolute.png_br_62f6f598b9fc097a67cb865a2fbd0c8fcaa33bf023b677008a56a4a2e541643e" +path = "static-publisher/static-content/file483.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/commands-pathabsolute.png_gzip_fb832f5bf3736110e925333e1776fa6cf4fbd91850e71e643249352bd1a730b7" +path = "static-publisher/static-content/file483.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/input-output.png_2d6d9e8c7e0481d381642db9e49e1aeaf1d9497bc0b2c70ba68ded0ce5e73391" +path = "../build/minified/site/books/admin_guide/images/input-output.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/input-output.png_br_c753db973bcedfe1d3e543aadd005454bd7b10808d0a3ab03e6dae2590238438" +path = "static-publisher/static-content/file484.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/network-001.png_67b763d8406c5f615e38c6be787bb85022a98b9cb7e9e87e8b7de54e764806ab" +path = "../build/minified/site/books/admin_guide/images/network-001.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/network-001.png_br_cbfe14871cdc46b0d600f69524a1c8b64d4e8be5bfd56b072891c7e9603243bd" +path = "static-publisher/static-content/file485.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/network-001.png_gzip_811951e411b86ef8e67336d5fafa665f79831dd05864550f437bf0860ea6cf3f" +path = "static-publisher/static-content/file485.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/network-002.png_78debe0dfb28ac46f73925220a2c88cf3db8689f81127cfe814de31e08ff148e" +path = "../build/minified/site/books/admin_guide/images/network-002.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/network-002.png_br_e8431d33c67b2a3c25b7b73321f3a1dc949c56444fd138997a00e2eecf937be5" +path = "static-publisher/static-content/file486.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/network-002.png_gzip_c03f02bbb8ff95f65f0f7f4d5e0303e7936f38e0e315c74378dafd8e91c08a6a" +path = "static-publisher/static-content/file486.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/network-003.png_9bb36dc169948bfebc302355f9c244f934fe8e16746b92a99a71497ca771f874" +path = "../build/minified/site/books/admin_guide/images/network-003.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/network-003.png_br_3118f17c3d6b8bff1639150714f237dc5abfd52a7611d84147d6ae161831526f" +path = "static-publisher/static-content/file487.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/network-003.png_gzip_545a738199b5d319bc4b5d73c73ad7e2589b5e7cf3db3cbdb6c66ad6dd030d0e" +path = "static-publisher/static-content/file487.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/network-004.png_c1f11b20592b8f1180ede50226f19abf5629bb79db49172024ad1705c9498752" +path = "../build/minified/site/books/admin_guide/images/network-004.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/network-004.png_br_abd231d520ff7e0e8fd76aabeaf84b93f684149136b661aac371683a1dc1d6db" +path = "static-publisher/static-content/file488.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/network-004.png_gzip_28689e7f4cdbd4f71b8085c87f3c7e824c2ae93a627286241f19a6a9f6f5ebb5" +path = "static-publisher/static-content/file488.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/operating_system.png_73f9257a04d9503e658f50a3c4f9784aa64374e6df463cfe4736ddf7d2b249a7" +path = "../build/minified/site/books/admin_guide/images/operating_system.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/operating_system.png_br_070b999d936fc4c62a8f0fbf8b47e1c515a1f224585f8a5551855ab866db66fd" +path = "static-publisher/static-content/file489.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/operating_system.png_gzip_9e3dae06d3dc4a24de4d098ee037f79fd07fbb15203bafe5336a2eb12b0d4f23" +path = "static-publisher/static-content/file489.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/pipe.png_98275a03795625cbc6c04d24d509a82a003578a2e2540569d855590629a80af3" +path = "../build/minified/site/books/admin_guide/images/pipe.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/pipe.png_br_451865c8570e746c88d85124764d76726a45f06e8752999acaa813df3f1db4f8" +path = "static-publisher/static-content/file490.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/shell-principle.png_55a9ee3eef03156a2e913835faef5e52bf48ea78d6e8b3d8be14323cae84369a" +path = "../build/minified/site/books/admin_guide/images/shell-principle.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/shell-principle.png_br_1eac0dbdaf8aaedae7b2e7f990b19cd9528b273f790382b16dcace61c098d744" +path = "static-publisher/static-content/file491.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/shell-principle.png_gzip_51c7df1b78bff865720e6b84faf2054d800632dcd1b45af9878a282ee8eba815" +path = "static-publisher/static-content/file491.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/software-001.png_e1e0ea3af38e82cf772fbee9d519654449280d346871cf369614f2c2e512ec7e" +path = "../build/minified/site/books/admin_guide/images/software-001.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/software-001.png_br_4f6ad77bf1821f1e2460de10f7ad504a265a02ba96721c20cab2bd3cbadb9db8" +path = "static-publisher/static-content/file492.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/tasks-001.png_a46e3d163dc5aba9d7c45e1eb5aa5685f5f52eacc92ceb01dac2026f1f125386" +path = "../build/minified/site/books/admin_guide/images/tasks-001.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/tasks-001.png_br_92474205c9797bde34244722bbd111adeffb47738657e12e003a0df46bd27685" +path = "static-publisher/static-content/file493.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/tux.png_d12dfac119736f642fa0a63011f390dd0e2fe0fe977d1be2d12ed3078e102985" +path = "../build/minified/site/books/admin_guide/images/tux.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/tux.png_br_b559e531dac476e15167a4e5c925c5ad148071ed39b70b07f669e3c41ff217b7" +path = "static-publisher/static-content/file494.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/admin_guide/images/tux.png_gzip_8eb66277e6d0a68c669eaa7252a6776f79e40ebd899bbe18d795570e4e14030f" +path = "static-publisher/static-content/file494.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/bash_programming/01-Shell-overview/index.html_aa1c2dcc1fc7f5a7ebfd045d425d1d25a2ca12fdf0fb82df4bce42d7334eccb5" +path = "../build/minified/site/books/bash_programming/01-Shell-overview/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/bash_programming/01-Shell-overview/index.html_br_694c22f4c39d0f7f9a3664e15f9e0b055a48309d945410233554d8da72bbee30" +path = "static-publisher/static-content/file495.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/bash_programming/01-Shell-overview/index.html_gzip_7c1359263ddfd69cab6586eceb4db1d5a11bbe548861962c6ca44cf1e6adcff2" +path = "static-publisher/static-content/file495.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/bash_programming/images/Shell01.png_ad9180e6930f058f30789b33cf7e56de9f760ca57aecf52373a271baaf37a978" +path = "../build/minified/site/books/bash_programming/images/Shell01.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/disa_stig_part1/index.html_0588fb41aeedd279008d4031a8cc909ab6045e1d40735fb87991be9d32d7aa72" +path = "../build/minified/site/books/disa_stig/disa_stig_part1/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/disa_stig_part1/index.html_br_c5aba0b7c95fa2a6ae7ccfcbd1a3805f1fb4b8ea636f672b668e360bf59a373f" +path = "static-publisher/static-content/file497.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/disa_stig_part1/index.html_gzip_6e185ddcf3058b4f1bac751424449d792c4f45bf9608250c4c7ed3c5ec2d2a89" +path = "static-publisher/static-content/file497.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/disa_stig_part2/index.html_6e164a86d585ade052fe3aac897cb3535456064517b151eb722479c1278a4202" +path = "../build/minified/site/books/disa_stig/disa_stig_part2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/disa_stig_part2/index.html_br_defcdf774572b147412cedd0106a761600afce7557c7317e8dc628c41f06c478" +path = "static-publisher/static-content/file498.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/disa_stig_part2/index.html_gzip_4a2774fabf000ae89e6995e1841d4b5c190a3123f14bf7937172b4d08d78a67d" +path = "static-publisher/static-content/file498.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/disa_stig_part3/index.html_75ce4adb45d2650a023b45a7f1435600c2a6c9e24d2d4c8a4fdf3bfc840b163f" +path = "../build/minified/site/books/disa_stig/disa_stig_part3/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/disa_stig_part3/index.html_br_99b8c09592b35a31178da301d6410d2c4a56feb27f701e2d915cae7c84de033e" +path = "static-publisher/static-content/file499.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/disa_stig_part3/index.html_gzip_501cabacd1559970adaee51dfc4d7c7e739b4ed07354cb131d2092985b9b87b2" +path = "static-publisher/static-content/file499.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img1.jpg_77e7d3fd3703a71aca350f9d242c8e02ef5e75a0e2be99ec1a84ed017cb4b610" +path = "../build/minified/site/books/disa_stig/images/disa_stig_pt1_img1.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img1.jpg_br_66ea6498e4029618290bce6d2a01cd42918760eea2397cf694a4add79e4b7c1f" +path = "static-publisher/static-content/file500.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img1.jpg_gzip_3f015a69ee1ff5c13c0e0bbd7e59f9fade3465f24fa25cf13a64ab1f049c6519" +path = "static-publisher/static-content/file500.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img10.jpg_5f9d28b40fd82da741374a3a2715251ab3ef2889f920d1b45dccf306b51b18f9" +path = "../build/minified/site/books/disa_stig/images/disa_stig_pt1_img10.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img10.jpg_br_5158e51436f20501e5023c3fc85fb325f497d3b843bf2e001d15eb7156f1c8bd" +path = "static-publisher/static-content/file501.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img10.jpg_gzip_65f45a390d6cca30b050f37b936af5f3bcd18eb874f49aa8860840d14086916d" +path = "static-publisher/static-content/file501.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img11.jpg_c9dc3cc1c0956db613147599865947abb2b84c48334fb7d1a45bda5b59d6348f" +path = "../build/minified/site/books/disa_stig/images/disa_stig_pt1_img11.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img11.jpg_br_9dd752b5924ee6fa09cefbf81f12125e16c964289dd045ac1ca5b2e4a1e750c1" +path = "static-publisher/static-content/file502.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img11.jpg_gzip_9c4c5e329f0a4f734de2975e3eef09e9ac5d12b2c28a607a883470b6a4c3c600" +path = "static-publisher/static-content/file502.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img12.jpg_25ca5cfc8acaa4063e6c2624efe64418ec5ccf63fbb29b2a087f17bc0d43ec25" +path = "../build/minified/site/books/disa_stig/images/disa_stig_pt1_img12.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img12.jpg_br_c3001a952d34e8495eeebbcb5d2829e5751453949e00a3e556887ff89815cf66" +path = "static-publisher/static-content/file503.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img12.jpg_gzip_6a2fe85fb3d0ba5fc8cb6d31224d592ad0c92e5026a09f9f62793730be3b5703" +path = "static-publisher/static-content/file503.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img13.jpg_f6093bb361946571202113f78c61dc232036f57b41d875169c4b74121e82220c" +path = "../build/minified/site/books/disa_stig/images/disa_stig_pt1_img13.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img13.jpg_br_87d50f4e77d30b667adb53fa9a8391ba8701cca22c2f9457e5f71e12bbb13d20" +path = "static-publisher/static-content/file504.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img13.jpg_gzip_7053ffcefc29b3bab116c6c09f8bf3604ebdce4ee6e4eff7f29aaa3e65596a79" +path = "static-publisher/static-content/file504.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img14.jpg_11182a330e61ecede3e0038b9d692ef0054388a44f53309c6190cc10431210d5" +path = "../build/minified/site/books/disa_stig/images/disa_stig_pt1_img14.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img14.jpg_br_7fefc7c83a2b5815d23fb549cc389d6962aa05766c6cf502a88cd6dbea98cee3" +path = "static-publisher/static-content/file505.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img14.jpg_gzip_207cfaa849d99499e5041a38652c8b43cb650ab62c9623f6e471550cc2d3bf19" +path = "static-publisher/static-content/file505.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img15.jpg_0d315e0edaa293dc737367c2300c0a9d522b58d0144afeea0c7d163647b77cb6" +path = "../build/minified/site/books/disa_stig/images/disa_stig_pt1_img15.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img15.jpg_br_5cc8cd629eb503f84ae31b9b8d6621b4fbebae388acc134f8feef7499c77b2c1" +path = "static-publisher/static-content/file506.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img15.jpg_gzip_cf787819221c7a01cc62eb179eb1e86e8683a6cf5e8822531cc486a6b91513c3" +path = "static-publisher/static-content/file506.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img16.jpg_df19707453160a4e343582d88e54129ea95c9b7e005fc534d627dacb3741597e" +path = "../build/minified/site/books/disa_stig/images/disa_stig_pt1_img16.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img16.jpg_br_73096caa04382dd0ca719811d0823778b2195373164f1b5ec8b2b2483a0a676c" +path = "static-publisher/static-content/file507.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img16.jpg_gzip_f050b83d610b15edfe12b89ac7fe54cf40304e4e0ea74baa935a20220a722d99" +path = "static-publisher/static-content/file507.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img17.jpg_236a4cfce09e2dd8462643943d934e743ef75437b06df14d9599b1cdd405bc44" +path = "../build/minified/site/books/disa_stig/images/disa_stig_pt1_img17.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img17.jpg_br_bde5f63e14ce5877b75519481761ee869d230d6a95e6f0998712e63c15757cc6" +path = "static-publisher/static-content/file508.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img17.jpg_gzip_88615780cc9c2d603ed7e812e37e0dad0177e4dbb878a87b3b031a7147c2c713" +path = "static-publisher/static-content/file508.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img18.jpg_5d920bc9b3422fb12115bf51dcdc4a3c7ee330dca47c76ddf0df75e9e0cad4aa" +path = "../build/minified/site/books/disa_stig/images/disa_stig_pt1_img18.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img18.jpg_br_d523fa8adf7525377d2df3ed6730de696be2a02dba78c8047bce003ab0716230" +path = "static-publisher/static-content/file509.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img18.jpg_gzip_b18ef39cd56ba211f84e7050b71257bba59be1e7da2e71f3ab1926810c060400" +path = "static-publisher/static-content/file509.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img19.jpg_d075362d8c62ee6fc5cee75d01b66b15f5fec7e5a2b40c16de4130cb254e3f04" +path = "../build/minified/site/books/disa_stig/images/disa_stig_pt1_img19.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img19.jpg_br_c653a192be7fad40fe1caaf6758b09e5ffa72f710e2351cf1d0e8038e122b81c" +path = "static-publisher/static-content/file510.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img19.jpg_gzip_3401a5c5c94896f6caeac31a3eb2a849b5e56de7bd302b498c91e5e8dd168d18" +path = "static-publisher/static-content/file510.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img2.jpg_5f60977aa08f776dbab2423f069db8a85ec9c8c167eba74b14986573cb1d8512" +path = "../build/minified/site/books/disa_stig/images/disa_stig_pt1_img2.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img2.jpg_br_7ae1aec4e53f6114eb8c17423971d01780455de0e6dea7558d55f71c9b9e652a" +path = "static-publisher/static-content/file511.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img2.jpg_gzip_10d8a1ba97abf645f76551c4cc93e736cb487970dfc43098c419ccbec213f3ef" +path = "static-publisher/static-content/file511.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img20.jpg_7e5534c4876dec2e2728cccafb477aef868b296ca14b6c047f1b2b7ff5c0c0b1" +path = "../build/minified/site/books/disa_stig/images/disa_stig_pt1_img20.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img20.jpg_br_73d7050045459a26febf4936ab8d7b611a7049d7ac7741b057419392c2e69bb7" +path = "static-publisher/static-content/file512.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img20.jpg_gzip_034d336a28c51cae138ad8fe8dbb2040350d161b87bb4ef4597e954eba95eeca" +path = "static-publisher/static-content/file512.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img3.jpg_4db1d8145073fe18d849b906929329bc789a75d61830d0a7648a115066ff9393" +path = "../build/minified/site/books/disa_stig/images/disa_stig_pt1_img3.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img3.jpg_br_c8d5be91ee248c8e7db1a85c1274d52be039596fc99e8214b2c8640ee992ba65" +path = "static-publisher/static-content/file513.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img3.jpg_gzip_4696094dcd9f0946a17a8f2a9f1a05f9f255aeadf8d1e21fbac6d2931ca37fbf" +path = "static-publisher/static-content/file513.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img4.jpg_661c90b8315fe3262f9901d40b660218f22cf94b6a30ef770bf8811e19ea539f" +path = "../build/minified/site/books/disa_stig/images/disa_stig_pt1_img4.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img4.jpg_br_5c69a1cfaa5675203d9d05b84946e6eec1b92359d849090687b8ec2ce7d15724" +path = "static-publisher/static-content/file514.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img4.jpg_gzip_503a3331fe83c424c0152d0cc44ab4b668f764122eed7e285d08570b4fb47228" +path = "static-publisher/static-content/file514.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img5.jpg_6764310d4d44f38fee7fb51367e642f2f58964717420f1d61573cc906688bd8f" +path = "../build/minified/site/books/disa_stig/images/disa_stig_pt1_img5.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img5.jpg_br_738f59e7611618a7ff3dec2e8370461964baf337c2b01aac11c314081302d796" +path = "static-publisher/static-content/file515.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img5.jpg_gzip_7d1ebc35aa0f3d8aabfcd8afe513c8c3177129f352d365cc7d9dd0321e43215f" +path = "static-publisher/static-content/file515.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img6.jpg_9c0b8c05ff476350bd38c15dd445269e46160dea27f33ff3099e2112da5ed7e3" +path = "../build/minified/site/books/disa_stig/images/disa_stig_pt1_img6.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img6.jpg_br_30b4bba0300cf3a789d435ef45a159541cf04bd8dd839bc83b7dcb0dd62e57a8" +path = "static-publisher/static-content/file516.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img6.jpg_gzip_5397a9059b8ff2ceae30365523fcc3709c7c207b5d08beab509c4657c905fc07" +path = "static-publisher/static-content/file516.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img7.jpg_23fb454801751f34e38ca0223be68d8db2174808438e0a1317b7373a42a3d87f" +path = "../build/minified/site/books/disa_stig/images/disa_stig_pt1_img7.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img7.jpg_br_fdcd8c6c64c1b377cad66a5fef1bcb8ce4e175b8c07311f57848bf3da97af719" +path = "static-publisher/static-content/file517.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img7.jpg_gzip_bde6264f009223575772d5af7b1205d57e1f7402b0dd1846613cdaf1dc0a11de" +path = "static-publisher/static-content/file517.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img8.jpg_95e94725a40b9348e5846ba0aa1bf5e2a8d8a1ce3534077c5c7749fcd99e45d9" +path = "../build/minified/site/books/disa_stig/images/disa_stig_pt1_img8.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img8.jpg_br_5a73b159475ef15a534c953afbc9042d61c75f9bc7f34b07b3c74a717ae37e32" +path = "static-publisher/static-content/file518.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img8.jpg_gzip_aaac0e86e5598e37e732495002acaeb335815b150613153df35e94e5b2cee69a" +path = "static-publisher/static-content/file518.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img9.jpg_79645fe270aa75f7157702ce68477a3e1598fe73970c8ca316b59e7ca7fe10eb" +path = "../build/minified/site/books/disa_stig/images/disa_stig_pt1_img9.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img9.jpg_br_e1e2f15e2beb95950e27b099946ade4b59677b94588c2b448adaedad1c8841f0" +path = "static-publisher/static-content/file519.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt1_img9.jpg_gzip_2dd11ec630192bddb26bcb5f3cb052fe1bd830538e25df1177aaae790e7bd396" +path = "static-publisher/static-content/file519.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt2_img1.jpg_c07c74f04b676a5389cd974b843de09375312faf9a26e7134d4ce285b41b8d22" +path = "../build/minified/site/books/disa_stig/images/disa_stig_pt2_img1.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt2_img1.jpg_br_f5822277924e36f1d8b2ddb331d822adc41232645de5a2a933a236d2d86406a6" +path = "static-publisher/static-content/file520.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt2_img1.jpg_gzip_8f81eb4500c615af91af07cf188b8c030b0d25327941f1ccc1c08436f28ff2f6" +path = "static-publisher/static-content/file520.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt2_img2.jpg_5f2f67894ad2db92743be617368b97ab0152aa1044beaeeaad5ec6c555fb5842" +path = "../build/minified/site/books/disa_stig/images/disa_stig_pt2_img2.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt2_img2.jpg_br_d70721ce88e8aa3102ca93026daa55e27a1603eafc13ce200b815247fca9f5ae" +path = "static-publisher/static-content/file521.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt2_img2.jpg_gzip_f15a4a0d58ed6bca49d6552a59b4d263f7c3cc1972625b42b365a5f1f94fd6ed" +path = "static-publisher/static-content/file521.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt2_img3.jpg_85cdd8519166a00790caf9f165ed8e687b787f1315550f08eb8210dbc4d244fe" +path = "../build/minified/site/books/disa_stig/images/disa_stig_pt2_img3.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt2_img3.jpg_br_0537aa95dacaa904f0f40069678d84e2cce42ecd5f7b4de8170c14f75a1e4ef9" +path = "static-publisher/static-content/file522.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt2_img3.jpg_gzip_a5f8af120cb9c62066384ba8dfa9d94a92b27c11365882647d8279d33acec5b9" +path = "static-publisher/static-content/file522.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt2_img4.jpg_5d0b68f06577327f0a2e0304cee2bdb4722c8f872e6dd089be3368821164bc67" +path = "../build/minified/site/books/disa_stig/images/disa_stig_pt2_img4.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt2_img4.jpg_br_3f7be71a7d5e96122968e7e3690863d30fecde04845e8439231f71df828bd897" +path = "static-publisher/static-content/file523.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt2_img4.jpg_gzip_52eeb486ce80f0833f54a1cba35683e1073d83fe0bc6ca6b6a51b34353e7912b" +path = "static-publisher/static-content/file523.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt2_img5.jpg_3c1a1c385ecb1fc18b5c4d3e25ddedc58cb12d39a802c1bae8a52a3456d5a954" +path = "../build/minified/site/books/disa_stig/images/disa_stig_pt2_img5.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt2_img5.jpg_br_3585a4b58321219232a9513f38bf1aa40e8373da505fdefc5c1bb9188b836f67" +path = "static-publisher/static-content/file524.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/disa_stig/images/disa_stig_pt2_img5.jpg_gzip_a88f37935421f5411d81afdbf86ca913cf1616428a57a1281e60b826f7ba6983" +path = "static-publisher/static-content/file524.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/index.html_9f592b6f8827c7fab00a53ccb3ad0e68d9a19a4759be139a14bcd4fd5e52ed0e" +path = "../build/minified/site/books/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/index.html_br_6e83c1d95a5ee731471e2bdecab21944c290d1dfadb0f0894cf6ff4006d71412" +path = "static-publisher/static-content/file525.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/index.html_gzip_3e99d6375bacb68b442adb81b574b00260bc107ac0bb21d37e98a03329e91376" +path = "static-publisher/static-content/file525.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_ansible/00-toc/index.html_85327daf32ea058ebdbc812a3fcd9085ea191bb793795f45ed95e0e1f582315b" +path = "../build/minified/site/books/learning_ansible/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_ansible/00-toc/index.html_br_71d0e5661bb798ecb88fe453b184b66660b9b51846815c30ea030b997e233a6a" +path = "static-publisher/static-content/file526.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_ansible/00-toc/index.html_gzip_87110ca7d3fdee788640f647483bb09b4abd5e670c938351093d09d04f990157" +path = "static-publisher/static-content/file526.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_ansible/01-basic/index.html_a6d37abf8c23ff953fc0d133294f64033902564ccb2be814373b374a5848b713" +path = "../build/minified/site/books/learning_ansible/01-basic/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_ansible/01-basic/index.html_br_79cc7838600dc12702a98bf2b531978ce5c0cad8c4ba924dabe396c7081c35a1" +path = "static-publisher/static-content/file527.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_ansible/01-basic/index.html_gzip_9f062ec831afa22b7a470113b2f2f65e3f74d6960da46f970a979b764133f8bf" +path = "static-publisher/static-content/file527.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_ansible/02-advanced/index.html_b9e8fb84a3a85637a26c45284bef5aa479cc97822d07ca00521e34d444608dea" +path = "../build/minified/site/books/learning_ansible/02-advanced/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_ansible/02-advanced/index.html_br_1a0ac6a1154fd5e3aeb7d8924df6a537a413e9cc7ec73738e8bf3a840dab0796" +path = "static-publisher/static-content/file528.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_ansible/02-advanced/index.html_gzip_f53d02584879ec6c2caaa1a0696d6bdacefee8790e0d6383c07ea16a440c62d6" +path = "static-publisher/static-content/file528.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_ansible/03-working-with-files/index.html_b546c6f99e8717ff3aa66924a64590e1f217d776bd6e1f4b36ff84f116e79495" +path = "../build/minified/site/books/learning_ansible/03-working-with-files/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_ansible/03-working-with-files/index.html_br_a2cf237fb6b12a1e65a4d431db2ca539e264b36665b4b3005814c3b5e2dd92d0" +path = "static-publisher/static-content/file529.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_ansible/03-working-with-files/index.html_gzip_9b0da5b616db2ce583ac88e6fa00e082ec221ba2e03776132bfa9c1675a2f211" +path = "static-publisher/static-content/file529.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_ansible/04-ansible-galaxy/index.html_1949be59440074d233c52819fcfa72cd1635f94f33b5fa67677ea86a561a6c37" +path = "../build/minified/site/books/learning_ansible/04-ansible-galaxy/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_ansible/04-ansible-galaxy/index.html_br_59d9b1f91857eb2634aef166fc6784208218734038b75c99b5aab60b7c77d247" +path = "static-publisher/static-content/file530.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_ansible/04-ansible-galaxy/index.html_gzip_37d1d24e48ef1871f8a9527ca2aa12eeb5829f2c68519dee7581e50d33bb4221" +path = "static-publisher/static-content/file530.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_ansible/05-deployments/index.html_3ce6c0659c4c5e6563b60e9a94fa0395843748273f30b18361441f5d311b72b9" +path = "../build/minified/site/books/learning_ansible/05-deployments/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_ansible/05-deployments/index.html_br_2da9a3c262813cb9d62c956345845cba413c540cd17c7abbea59366e3eb4d951" +path = "static-publisher/static-content/file531.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_ansible/05-deployments/index.html_gzip_752efa22995f759c519e009ef65719fa94b34eb5e27f4d1a2f73c131b5290fe5" +path = "static-publisher/static-content/file531.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_ansible/06-large-scale-infrastructure/index.html_5183b75ac67d60b573167354f72d1af9f1f6acceb5e3fc84d0fa5476b4e11ad1" +path = "../build/minified/site/books/learning_ansible/06-large-scale-infrastructure/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_ansible/06-large-scale-infrastructure/index.html_br_7cdd7ecf34c1fd39844520c665def63ce4f323036241a6dde9a37324e9f3d0ca" +path = "static-publisher/static-content/file532.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_ansible/06-large-scale-infrastructure/index.html_gzip_dd39727880b2a20233c959ed0236a9d9ef760a73821ec20a5cc117834bb920e0" +path = "static-publisher/static-content/file532.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_ansible/07-working-with-filters/index.html_fdb13a9db0a087aa625240192f301e4c97bb673edc7b9939cd49b304a64c2c3d" +path = "../build/minified/site/books/learning_ansible/07-working-with-filters/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_ansible/07-working-with-filters/index.html_br_f92db12ed00e952c2ea3b2d76328d69f9c25e0cfb30651b05c87f3cdb637b92c" +path = "static-publisher/static-content/file533.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_ansible/07-working-with-filters/index.html_gzip_1f60d31892868ea5e63fe8f2018dc2a77a992152821c465887fe6f5417961986" +path = "static-publisher/static-content/file533.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_ansible/08-management-server-optimizations/index.html_08931551413502da4172acdd5d080dbb651a9d566a24796ddd06d18b8ba730c2" +path = "../build/minified/site/books/learning_ansible/08-management-server-optimizations/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_ansible/08-management-server-optimizations/index.html_br_34ac198c9472226dfbba69a3bf64f9c18702f7a932289d73784768934e662194" +path = "static-publisher/static-content/file534.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_ansible/08-management-server-optimizations/index.html_gzip_9d5c39d311475189d5ed102da993c17b14d773b38a4ddd6c69a2951918a38d9a" +path = "static-publisher/static-content/file534.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_ansible/images/Michael_DeHaan01.jpg_3cc44e2ac2ffcf0754fe0661cbdbbe35661882be23d1fdf7bf9507ff123f0fa9" +path = "../build/minified/site/books/learning_ansible/images/Michael_DeHaan01.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_ansible/images/Michael_DeHaan01.jpg_br_fb37342eaa8a69da559d9a0ca06ba45a5bdf9bc6086fb03e9ce9cde1db6d9c77" +path = "static-publisher/static-content/file535.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_ansible/images/Michael_DeHaan01.jpg_gzip_e48ba439b11ab729ad05b87536903664894d9b91fd764ed2cd894f0162da986c" +path = "static-publisher/static-content/file535.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_ansible/images/ansible-001.png_1f255eae6831d0bc031dfe30496066993b7b47137910a0411cad402c2ba96442" +path = "../build/minified/site/books/learning_ansible/images/ansible-001.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_ansible/images/ansible-001.png_br_a4516eac4647f3421cea4aeef692dbcd319b96a5d06c7fb67982fa4764cd7fd4" +path = "static-publisher/static-content/file536.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_ansible/images/ansistrano-001.png_6f68ca7c5c84c4be877eef2f93e6d05c09290feb1f90bdddba086021bcbece5e" +path = "../build/minified/site/books/learning_ansible/images/ansistrano-001.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_ansible/images/ansistrano-001.png_br_b1e3505cae7186a149042f84756e8c6600ce33746c87f2e6bd0df2d578f9950d" +path = "static-publisher/static-content/file537.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_ansible/images/ansistrano-001.png_gzip_cf6cd7d050f1055d398edbd9e1b8455254474b60721364dac80bed2a5d833d1f" +path = "static-publisher/static-content/file537.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_ansible/images/ansistrano-002.png_fa1f2614fd04c2f94dc53743d19aa77f06b40bb88ccdb2a6b317df9149b82f46" +path = "../build/minified/site/books/learning_ansible/images/ansistrano-002.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_ansible/images/ansistrano-002.png_br_149d37c2cab562d8025a27174ac5653b2a4f09de04093da0e619f507a8b160b3" +path = "static-publisher/static-content/file538.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_ansible/images/ansistrano-002.png_gzip_533fc1d6cecc478fd687ab56434ddc470a5ccccf3870f2ca8da03cc6cc8fa448" +path = "static-publisher/static-content/file538.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_ansible/images/handlers.png_472ff82f2087f8163917e0ec7ccf676922be434cf44ff681350d1d53b5ba1719" +path = "../build/minified/site/books/learning_ansible/images/handlers.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_ansible/images/handlers.png_br_94d846097b9ef280d8f3c2fdb4edcff8178947eca1597e1b27eb24872b70b66a" +path = "static-publisher/static-content/file539.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_ansible/images/handlers.png_gzip_a3536871387f16810f599e4835557973a7f74ca5ece72b8245c212ac2419e756" +path = "static-publisher/static-content/file539.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_bash/00-toc/index.html_d24935924d88c249c05e5b5510d31a45b64bdac47485b9b66db96506958c0f2a" +path = "../build/minified/site/books/learning_bash/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_bash/00-toc/index.html_br_1330956d273050f851348559d9ad2c8816af005fcaf4fedda1953c8458e6042d" +path = "static-publisher/static-content/file540.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_bash/00-toc/index.html_gzip_4d3ed759cba724423441f1ef33fc1e4832b7fdc7bdf163f22678e62faf97b821" +path = "static-publisher/static-content/file540.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_bash/01-first-script/index.html_fe7592dd12dd582694a39f36bb941494ae63fbc0e649626169fe115698d59247" +path = "../build/minified/site/books/learning_bash/01-first-script/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_bash/01-first-script/index.html_br_efa7990f7fe154798f00b7509003a6a9421e89c7ca7a2907f848c92d8bf40b5b" +path = "static-publisher/static-content/file541.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_bash/01-first-script/index.html_gzip_8915955e4f22e515ee1411829425534c563852e6aabb5b93eac77fe657746d07" +path = "static-publisher/static-content/file541.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_bash/02-using-variables/index.html_cb6ce791079fcf1a9d76184e7b01ddc3e56deeac51d4ea84f847cf97191f1fc6" +path = "../build/minified/site/books/learning_bash/02-using-variables/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_bash/02-using-variables/index.html_br_4da5fc39801313d6f43307bc4fdce65f67bcb93479597f08d0f47acae2a58ce3" +path = "static-publisher/static-content/file542.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_bash/02-using-variables/index.html_gzip_7dafdaebedc62152782d5adc31a3c08e96604a4c8817311e88ccdb77c36b6ea9" +path = "static-publisher/static-content/file542.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_bash/03-data-entry-and-manipulations/index.html_d926163f4805a81351c0c79e3eeb5f197fcf260ce67a080fdca8e13737ed72d2" +path = "../build/minified/site/books/learning_bash/03-data-entry-and-manipulations/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_bash/03-data-entry-and-manipulations/index.html_br_4077d855aeda01e1055a4022c2047c97d850e607b064b9cef6811f04d7f6ca14" +path = "static-publisher/static-content/file543.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_bash/03-data-entry-and-manipulations/index.html_gzip_1912f0f3ef3ad997a8a896ca8a85fa8b2862a1a96421bb91023921ec05bcb1c2" +path = "static-publisher/static-content/file543.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_bash/04-check-your-knowledge/index.html_80b33141626d6685b450beb47a32b318600cb73fec204ba356c0845e9b72056b" +path = "../build/minified/site/books/learning_bash/04-check-your-knowledge/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_bash/04-check-your-knowledge/index.html_br_94143ab32af5913e3b69228e3daab663242040bffce3dbd30a9d38f0750612d5" +path = "static-publisher/static-content/file544.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_bash/04-check-your-knowledge/index.html_gzip_00fa31b627288fb92c13f12dc7a69eee4e9fbbe1f4294c5c90830068203da017" +path = "static-publisher/static-content/file544.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_bash/05-tests/index.html_cc52c4f909049b7e970f0343e3eac5ed6e577adab4d0253a41ffc2a7f9027e8b" +path = "../build/minified/site/books/learning_bash/05-tests/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_bash/05-tests/index.html_br_cbd76bdb5f5a218dc9964a12abc1ece6496ba8e402baacc12b3ba1b203f28381" +path = "static-publisher/static-content/file545.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_bash/05-tests/index.html_gzip_6e39f4d43b6e4b03a89e3af8756c6cc020fd89b472f696a575c6be58f98e5dd3" +path = "static-publisher/static-content/file545.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_bash/06-conditional-structures/index.html_4a25f14ddcadc18ad9f333801c48668b6170c39a21186f0285f746150ecfcf65" +path = "../build/minified/site/books/learning_bash/06-conditional-structures/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_bash/06-conditional-structures/index.html_br_598a0f75206f8d3b6346962b44c69718dc3d61705d0457fccdac6c0419c95610" +path = "static-publisher/static-content/file546.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_bash/06-conditional-structures/index.html_gzip_0d09f746114e96389e63cb222cb3bf96e2aef6e7436c600dad7be2f136d6fdda" +path = "static-publisher/static-content/file546.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_bash/07-loops/index.html_7878844f1904f82bf55e4d9e6885d2bb44aba5cfc640c9219d3e8dd6f9bc4881" +path = "../build/minified/site/books/learning_bash/07-loops/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_bash/07-loops/index.html_br_36e9f521bbb07a85f813ef5d66514756753468fbe1792e4f71ecb7bc860f0d6c" +path = "static-publisher/static-content/file547.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_bash/07-loops/index.html_gzip_2202c1117e299d453a4732513aaa950754b53c55e5bf7fc1659fbf4036278ecd" +path = "static-publisher/static-content/file547.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_bash/08-check-your-knowledge/index.html_5093378240747f2958b0ae5ab1fac0b0bfd043c439fe5358c846f09bff3af7e9" +path = "../build/minified/site/books/learning_bash/08-check-your-knowledge/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_bash/08-check-your-knowledge/index.html_br_94f298f05d4fbb49ec3a0772e4e1db830e9a22113916b150b469e2c6a7e7ea2a" +path = "static-publisher/static-content/file548.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_bash/08-check-your-knowledge/index.html_gzip_c3bb2a5089cc57c674b742bb985948b90d3de0973d59c504bbfe765206320d39" +path = "static-publisher/static-content/file548.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_bash/appendix/02-variables-logs/index.html_e6056577692eda7a95d270ef92844a8f4bc7348b498eff9adb9fce0033d7c832" +path = "../build/minified/site/books/learning_bash/appendix/02-variables-logs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_bash/appendix/02-variables-logs/index.html_br_1185ff46ef003962cd0afb95186589f5f192bf3a8a05ee67e1ae91ecec91fe7c" +path = "static-publisher/static-content/file549.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_bash/appendix/02-variables-logs/index.html_gzip_f970f975eef4b1000db30ce78bbed04001be984a3e79f7566182487b6b154e6f" +path = "static-publisher/static-content/file549.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_rsync/01_rsync_overview/index.html_2997ac92e36fe950d5e2c67d6c863555f286e1ccae576310f12e3e4cb94eb18c" +path = "../build/minified/site/books/learning_rsync/01_rsync_overview/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_rsync/01_rsync_overview/index.html_br_9325b6ff323a7eb170d832276345648446dc639cf2e01a6b1c4b370b6992c2a3" +path = "static-publisher/static-content/file550.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_rsync/01_rsync_overview/index.html_gzip_ae97a4349bee642df521ab0ddeac4571d5cd5821875653ff92b0bb4fd48cb925" +path = "static-publisher/static-content/file550.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_rsync/02_rsync_demo01/index.html_f313f5d01fb5a9c022bcd3034da131fbeb95ac6351debb51bf0ea6672f5ab4e8" +path = "../build/minified/site/books/learning_rsync/02_rsync_demo01/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_rsync/02_rsync_demo01/index.html_br_2998fb140ad34033eb818b93386758bdc7c0c9660721c6e6418da46771c2100f" +path = "static-publisher/static-content/file551.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_rsync/02_rsync_demo01/index.html_gzip_4eab9a3e15dabdf9f90fb3631bf1a7835cd2630d431cb67986a2520be907cc3c" +path = "static-publisher/static-content/file551.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_rsync/03_rsync_demo02/index.html_ac5a89585468508c3349f371d183bb299452f56499ee82916efd25a1f8b5b15e" +path = "../build/minified/site/books/learning_rsync/03_rsync_demo02/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_rsync/03_rsync_demo02/index.html_br_a8a7447db6d0ca6e1ad5f57fbeaedc184c715d42ba971d93fd83a454684cb3ee" +path = "static-publisher/static-content/file552.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_rsync/03_rsync_demo02/index.html_gzip_80caa686e8225668abb96cb2dcc97af8d78f8a5363683025d2dff4052718f874" +path = "static-publisher/static-content/file552.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_rsync/04_rsync_configure/index.html_d453e7dfe8e8346ad41175708ca5e788f7409fd9f3088d4b342fb0c2ab934c39" +path = "../build/minified/site/books/learning_rsync/04_rsync_configure/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_rsync/04_rsync_configure/index.html_br_da482f79bb7cb175a4cf14e2115374517e76760c6b0ed77a85394c1ce311d14b" +path = "static-publisher/static-content/file553.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_rsync/04_rsync_configure/index.html_gzip_3828f1fd76182d2c8792ae6f8c4d5c7f5e80d51d2faa5fc391f31d8f2ad64e84" +path = "static-publisher/static-content/file553.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_rsync/05_rsync_authentication-free_login/index.html_4ac0b1687a65cc99e0230936acd3c64ccac45ef661e7a02eb714a9db5e618aa4" +path = "../build/minified/site/books/learning_rsync/05_rsync_authentication-free_login/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_rsync/05_rsync_authentication-free_login/index.html_br_6b12f5d303c622fca13dd8f23ffa6bf92dbde945f90b0158ed883d4d858450ce" +path = "static-publisher/static-content/file554.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_rsync/05_rsync_authentication-free_login/index.html_gzip_76e114a390e9b73fab13c66bdd1393ae679542636a074b9bd0b289010791264a" +path = "static-publisher/static-content/file554.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_rsync/06_rsync_inotify/index.html_d8e61613792bafe15cbb314959990e3f8ba77fbe0ce100b05eaf1cb4a5b26392" +path = "../build/minified/site/books/learning_rsync/06_rsync_inotify/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_rsync/06_rsync_inotify/index.html_br_2710e2014d654f20b4a47a7e60db4e78b03388b4f902d65a680b0d733e35391a" +path = "static-publisher/static-content/file555.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_rsync/06_rsync_inotify/index.html_gzip_fe3c38089303236b7bbaf2537faef334dd79827e0472d419f8711505b5f3beb0" +path = "static-publisher/static-content/file555.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_rsync/07_rsync_unison_use/index.html_d9ed4d2b04031b3e1a5abfc158c88ba90c3853ecf72ec0305bc4c18def0b3fb4" +path = "../build/minified/site/books/learning_rsync/07_rsync_unison_use/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_rsync/07_rsync_unison_use/index.html_br_d8529fd16fcf1a66b7fb614ebcfd246c62948e4d156c615adec8bf7b1375d2c5" +path = "static-publisher/static-content/file556.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_rsync/07_rsync_unison_use/index.html_gzip_17cfea554391d1f88f895a4e3517de2b763ebf23f53d6c387467959a0880bd88" +path = "static-publisher/static-content/file556.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_rsync/images/Andrew_Tridgell.jpg_75225aa5c7d6fff4b4f054c4e3ed54c6eeed796f9475c8e5a59d5eaab5936137" +path = "../build/minified/site/books/learning_rsync/images/Andrew_Tridgell.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_rsync/images/Andrew_Tridgell.jpg_gzip_d6e9258dc31e1c679395180d96f26077afb4a20fdecf760da7a1026836b3142e" +path = "static-publisher/static-content/file557.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_rsync/images/Wayne_Davison.jpg_b490dddf4fad140c8e8d30ed351bce07e2a9d3c81fab05b2d78de789932998ea" +path = "../build/minified/site/books/learning_rsync/images/Wayne_Davison.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_rsync/images/Wayne_Davison.jpg_br_c26986660c88f0c0a5ba0e5ec3029b39f674a87aede4ac4dda35cad57b6f8f80" +path = "static-publisher/static-content/file558.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_rsync/images/Wayne_Davison.jpg_gzip_02cad8eafa52b0e6b46f72c669de5b38347b38517bd20a2b5ca45ec12dbb9ee6" +path = "static-publisher/static-content/file558.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_rsync/images/rsync_config.jpg_6e93ebb8613a2f6da5c39148573cb339e02f882ea06b709c9d8952d7395ff79a" +path = "../build/minified/site/books/learning_rsync/images/rsync_config.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_rsync/images/rsync_config.jpg_br_485efb3af50e4452be570714d151cd4d304aa3b746ae94e3b19aa8c3d901338a" +path = "static-publisher/static-content/file559.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/learning_rsync/images/rsync_config.jpg_gzip_0f868e7fb86cd3235e7ecfd5a081c22436dd824847f6566ab9093327877de7e9" +path = "static-publisher/static-content/file559.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/licence/index.html_7482f1d06a6a76df84d99cbe7c73f68e751fcdcdc47f0813631b5656517037f8" +path = "../build/minified/site/books/licence/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/licence/index.html_br_4b0cac0db1fe15cc23eccb61e501e4164d7fa81cefdff9f8fd33953db1c1cf69" +path = "static-publisher/static-content/file560.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/licence/index.html_gzip_bf92828500d0cbe0c178b4d4d01955bfefc2ed9db802c525908db268567a606b" +path = "static-publisher/static-content/file560.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/lxd_server/00-toc/index.html_05bdb624828fbc55e44780edcc7a5cef224e4dffd32ba0558d4623a683cd8705" +path = "../build/minified/site/books/lxd_server/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/lxd_server/00-toc/index.html_br_f7fb16b08ec248121a2445930d5eb319c607ce93dec0c398eff4ea1e9e49aa84" +path = "static-publisher/static-content/file561.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/lxd_server/00-toc/index.html_gzip_72479d879d77a4ea02787d468143eecc8840163fb6a7d11108f4c3d947972dc7" +path = "static-publisher/static-content/file561.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/lxd_server/01-install/index.html_89048f4aaa8354d3e32262a32ac9b6868920678f0c0c111ff68eb9e26ddc9589" +path = "../build/minified/site/books/lxd_server/01-install/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/lxd_server/01-install/index.html_br_197745d2cabe8d3935779f1d1a1e8954fbd4f763b6d446c50931b77c0a5c7d18" +path = "static-publisher/static-content/file562.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/lxd_server/01-install/index.html_gzip_ab02f4ecd74344fa3cbfd7060a3fb928c22eb593c3fad59206f087f78e58ed52" +path = "static-publisher/static-content/file562.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/lxd_server/02-zfs_setup/index.html_89f0ecbfe3b9e3e4ab24481fa443c09b5b0edbbf4bea20c1e9d3f6870b0cb214" +path = "../build/minified/site/books/lxd_server/02-zfs_setup/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/lxd_server/02-zfs_setup/index.html_br_815b1fc515169a39fe35fb38f4ea8764d5ce9f34bc4ae2891fa2d908e9c35078" +path = "static-publisher/static-content/file563.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/lxd_server/02-zfs_setup/index.html_gzip_9e2c1a923d60af4e7978ec00f04aa2d4f48172ef9646528fcf4cbd23427941df" +path = "static-publisher/static-content/file563.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/lxd_server/03-lxdinit/index.html_963a222136b044897a79c172e83a2f40f49df78c7e5455463a9914c7a4ab453c" +path = "../build/minified/site/books/lxd_server/03-lxdinit/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/lxd_server/03-lxdinit/index.html_br_ab57a23e3b955bd62441e6f8cf8497035c859f3b81c087ee175ea644814811c1" +path = "static-publisher/static-content/file564.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/lxd_server/03-lxdinit/index.html_gzip_5cd8086c82fbdac475112925ffb809f6872402fdc74abf1e0fea99e6aed91cfe" +path = "static-publisher/static-content/file564.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/lxd_server/04-firewall/index.html_a2d049ac076fb22d432a449da419c3341b765ff689f557dcb947ab269d200974" +path = "../build/minified/site/books/lxd_server/04-firewall/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/lxd_server/04-firewall/index.html_br_47697e78919f7689a44dd95043d5073d88d7ca040704487d3afeb5ad9ad6c18b" +path = "static-publisher/static-content/file565.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/lxd_server/04-firewall/index.html_gzip_e0f2debb35afcc494fd98c4d8c9a0198f91cbd1415dfd21980c8e3758b9260b6" +path = "static-publisher/static-content/file565.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/lxd_server/05-lxd_images/index.html_ddb413aaa1b3d1602e9827f1608d946dba8968aad4b958301c14e674d3b6bfca" +path = "../build/minified/site/books/lxd_server/05-lxd_images/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/lxd_server/05-lxd_images/index.html_br_00c5c96fc29d907e65d76bf1b8d8a2c515721a140d6bccb4828c604f50bd8581" +path = "static-publisher/static-content/file566.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/lxd_server/05-lxd_images/index.html_gzip_a990569bcc915869189aec2c1420266e56aac2cb074d0ca71f5776a561900236" +path = "static-publisher/static-content/file566.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/lxd_server/06-profiles/index.html_b674d3595f0512dda1f8aae2411f11a36de3519eadc2127b05e2436eeedc50c6" +path = "../build/minified/site/books/lxd_server/06-profiles/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/lxd_server/06-profiles/index.html_br_8219bfbf43db40861ebfef884a2051c92f7334b270e495636a9db9f4231a5fe7" +path = "static-publisher/static-content/file567.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/lxd_server/06-profiles/index.html_gzip_f6f34e5d04350899d2c03a69844f1a88a7f85e239f3f80b7f98482dd7c78f18d" +path = "static-publisher/static-content/file567.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/lxd_server/07-configurations/index.html_a315e84d62d1e8c0956f476fe03e3b94481120aedb0d5cec494bc2b871f3f032" +path = "../build/minified/site/books/lxd_server/07-configurations/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/lxd_server/07-configurations/index.html_br_9ee94f5c54704bc3784e0249479cd04301f458cf9e11e94f031e09bab55bdfac" +path = "static-publisher/static-content/file568.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/lxd_server/07-configurations/index.html_gzip_008d2171430f6c5fe96b0157bf7d4c623c88fe05433bce98a6f6359de11afe73" +path = "static-publisher/static-content/file568.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/lxd_server/08-snapshots/index.html_2685d939bbb1f4fc298665da7a84bce7daabc147a3efae1827c00f170b4500a0" +path = "../build/minified/site/books/lxd_server/08-snapshots/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/lxd_server/08-snapshots/index.html_br_cd990b8c46692b7a2459b1a147406aea2b3608b7ccb61fe80f19934e8089b2a7" +path = "static-publisher/static-content/file569.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/lxd_server/08-snapshots/index.html_gzip_5a7d00b7fe6f3f9ece3d64811b37d1fa3493b2ca27613876a9884e5f7975efdd" +path = "static-publisher/static-content/file569.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/lxd_server/09-snapshot_server/index.html_acff382d6aba21c0d4f8642e75df5fca03009a756a746fa4c2e54010347998ff" +path = "../build/minified/site/books/lxd_server/09-snapshot_server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/lxd_server/09-snapshot_server/index.html_br_daf1317390bf96b78a5f2adf886d2713b619fc292d03619ea55eb9196cc73595" +path = "static-publisher/static-content/file570.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/lxd_server/09-snapshot_server/index.html_gzip_5ac946277250655a3f7dc74b0dd4e1651e80d832720248778e430dbad54eb032" +path = "static-publisher/static-content/file570.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/lxd_server/10-automating/index.html_70678917ab65173f6da695fcf8578f7a2ffabf635b259f7b94cae6507f96f8e4" +path = "../build/minified/site/books/lxd_server/10-automating/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/lxd_server/10-automating/index.html_br_5f2722954df8c16a624f4a10a62f841d67cad3b4b32ad46c5fe05bc1c38985e0" +path = "static-publisher/static-content/file571.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/lxd_server/10-automating/index.html_gzip_6a9e0f5f60d4adb8fd99359e206fdc497af8b23407c1400fa8bd21777c25b525" +path = "static-publisher/static-content/file571.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/lxd_server/30-appendix_a/index.html_2b25e5730cb57fc959ae7722f3aec717570577d4e0d99084a2a057bf7dbb369e" +path = "../build/minified/site/books/lxd_server/30-appendix_a/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/lxd_server/30-appendix_a/index.html_br_fd9728644b74bf9aa5c7b1bdcc271d22263331dd31f88f4c6f9913456454b2b8" +path = "static-publisher/static-content/file572.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/lxd_server/30-appendix_a/index.html_gzip_27672ec32f44d48080143cfd42827892e375d388d0949aaf552224b4bab65d5a" +path = "static-publisher/static-content/file572.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/additional_software/index.html_77420b5bcf3f358e34e8f1f55a007f5a2bc24ab427fc1063e4bbbf8d540d8273" +path = "../build/minified/site/books/nvchad/additional_software/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/additional_software/index.html_br_18358546c317af876bdf86508f29edcb369250cbe68f41572c78827f922077bf" +path = "static-publisher/static-content/file573.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/additional_software/index.html_gzip_b8f78967786e2ef720cb849e66b8c683fd0a854037c647df4d8f36410929e8ba" +path = "static-publisher/static-content/file573.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/e_tab_command.png_5874785f4c02a92e2f8cbac9c3bb5a10fa06286fcb1063ae9511d9c4afed1b1b" +path = "../build/minified/site/books/nvchad/images/e_tab_command.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/e_tab_command.png_br_9879fd0a920c0b4018050afb47a73887f877af94237bbdd3ed4366f5c620ba9c" +path = "static-publisher/static-content/file574.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/e_tab_command.png_gzip_2f1a2bb36229039fd031ae1cfeb53ec7f044f4dccdad16044d2c05e776255c72" +path = "static-publisher/static-content/file574.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/find_command.png_d6d58119ed68338ee4e0ed6443e9cc45a22459ad09afa2aecc79708df97810e6" +path = "../build/minified/site/books/nvchad/images/find_command.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/find_command.png_br_98a42ee09a2b8e20e5f44add4122ce8aa50580d85b4d9fe9fa5f9bc766244a90" +path = "static-publisher/static-content/file575.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/find_command.png_gzip_2924adeb6551c392d7a4b4101980e7499f73868f6ce269ce174e7b3ddabb2cae" +path = "static-publisher/static-content/file575.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/font_nerd_view.png_5d502802d8b55cbc28ffbf0c3adb007bf1983d473ed9e3c19eb3ecf477aec757" +path = "../build/minified/site/books/nvchad/images/font_nerd_view.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/font_nerd_view.png_br_328085871d357c66c55a0faf08fda8b12fe16c7fbcf3b3ff1898498c3bfa386f" +path = "static-publisher/static-content/file576.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/font_nerd_view.png_gzip_9e791ea72158e82a5bbddbae8fa8bfd75fe7c187dfcb5fabf26ca99003ea9548" +path = "static-publisher/static-content/file576.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/help_visual_mode.png_397634c8badf1895574e80e4dd6c6e848c2a7663a842815a2e8a68b6b9be86a0" +path = "../build/minified/site/books/nvchad/images/help_visual_mode.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/help_visual_mode.png_br_c526a116122ff88c1e9086b61986b9620d8021d73631f5805132410429e3ec39" +path = "static-publisher/static-content/file577.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/help_visual_mode.png_gzip_6559067eab4b546194add6b87b18f183b759187eb80b12dc0eedea77da0ac21d" +path = "static-publisher/static-content/file577.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/init_custom_plugins.png_0541d4ade59afcf369adb48eafd59d6075e048a20ee45bf47b31b10b72b6adc2" +path = "../build/minified/site/books/nvchad/images/init_custom_plugins.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/init_custom_plugins.png_br_69c722a420b6fb1b5cb14e7a0b685ae75fa2dc59a417388a78b477823f45c11a" +path = "static-publisher/static-content/file578.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/init_custom_plugins.png_gzip_a3538e98db127e7760569851cb23dad7c6e1fc59a7a436b67834fee818730a16" +path = "static-publisher/static-content/file578.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/installed_first_time.png_0c03444205aa7356f8da23f9e1a60981ff802cfd6914310a22b44e4293cb0bdf" +path = "../build/minified/site/books/nvchad/images/installed_first_time.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/installed_first_time.png_br_9b9a53b1d2f6ce49406384f36ffd0d0a46cb9da5002136486e3cf2f0f7331484" +path = "static-publisher/static-content/file579.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/installed_first_time.png_gzip_4d224720f788f5cd38eaef166de342b8e49c8fc4c8f94593fbf609ab1857741e" +path = "static-publisher/static-content/file579.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/lazy_check.png_d4e9e982238ec3ab20bc21e5ce12884d43a5a9790c6f701aff8cff87aa7eb5de" +path = "../build/minified/site/books/nvchad/images/lazy_check.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/lazy_check.png_br_1db8f8a00fe3d85760f75825fcdcbe1fb963e9bd957bc9804ec9a2a5b251753a" +path = "static-publisher/static-content/file580.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/lazy_check.png_gzip_e6bbd7bef806f21a0db775fdb7b4a3f5668b63c4e2eff76e23723aa9af7603fc" +path = "static-publisher/static-content/file580.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/lazy_debug.png_c2c84c60ba1ccc916a0d301861e3e5c37270614cfb4f57d64789b9a6f41db9be" +path = "../build/minified/site/books/nvchad/images/lazy_debug.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/lazy_debug.png_br_25c9712aeefbc7749c1939fc728d902a1060d7cc85b8bca29358bbaca7a5b01f" +path = "static-publisher/static-content/file581.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/lazy_debug.png_gzip_e9b12efb2a7fa3ffce2baf3f7e00111cac99a035680e1e0551658d5a7d2efd18" +path = "static-publisher/static-content/file581.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/lazy_help.png_c5463d968c4c4026b4c7c714590c213b6be3168142a244d41ac8b859d23b5de3" +path = "../build/minified/site/books/nvchad/images/lazy_help.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/lazy_help.png_br_02e5721efb75ae6b984f0ea3450ba9b64b2ab875c2867727f266574318cc6ace" +path = "static-publisher/static-content/file582.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/lazy_help.png_gzip_271110ca92673d5bbb244a320b23dd96a7e4576760ceced7ef3bfc9ea4b9ef0f" +path = "static-publisher/static-content/file582.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/lazy_install.png_a2bf35bc2ad124cc20bda7d24ffb2e8bdc17bc14194a06bd1f5ad8ba159b4111" +path = "../build/minified/site/books/nvchad/images/lazy_install.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/lazy_install.png_br_5a605f0f422325c06c3d8a1bb93d54c0f4d5f220313361175a797ba499f5299c" +path = "static-publisher/static-content/file583.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/lazy_install.png_gzip_89c15ad2486ff3e81fc99d85924c17b96a22807fc90f61f346a1322f53e814bc" +path = "static-publisher/static-content/file583.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/lazy_log.png_f40a9bf9e94485286d1f2222bf10a8f55c94552ebea56ba61ccce7c198e3ce5e" +path = "../build/minified/site/books/nvchad/images/lazy_log.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/lazy_log.png_br_9c3b9c7a541ddf4c34c799041681f5c86a5b571c647212c9eb0ce8c12e45f649" +path = "static-publisher/static-content/file584.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/lazy_log.png_gzip_46342aad7f3110a1d29f6cd96ade195e7c6a72e766fc15d9b24737e41451c61d" +path = "static-publisher/static-content/file584.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/lazy_nvim.png_dbea79f5e43f5d68c9afda2e3be1ad541dc9a7c72c8fae95438a67051c9d4613" +path = "../build/minified/site/books/nvchad/images/lazy_nvim.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/lazy_nvim.png_br_ca197ff08e71eedf9e46fbfd8374985305707ce514b48239b9d80bc18fb79bcc" +path = "static-publisher/static-content/file585.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/lazy_nvim.png_gzip_1bf358b62bc80a9d1170992dcd938bc73a1a46dd3b067aa65c066eb17229eeb4" +path = "static-publisher/static-content/file585.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/lazy_profile.png_fe845201f6dc2478f29268e6fdec24c2b7191ee59705a9d11f77629d45234a3c" +path = "../build/minified/site/books/nvchad/images/lazy_profile.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/lazy_profile.png_br_f231c482c1b7b310b1c949d6db98a1c71c85e86466a2097085ccbebefb539845" +path = "static-publisher/static-content/file586.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/lazy_profile.png_gzip_4ba1be1b6d0fd15459f99b71298635f850b9bf11c6b0f25ce62f9e6c8aee5ab4" +path = "static-publisher/static-content/file586.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/lazygit_menu.png_8f6260583a616cfeaa29e2fdd0c6313222b73902cceef95891363d0b1828ea48" +path = "../build/minified/site/books/nvchad/images/lazygit_menu.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/lazygit_menu.png_br_2b5c7ebda7595f662bd0f7d9149919d1033f169b358b0cb3b3af1b1314f01875" +path = "static-publisher/static-content/file587.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/lazygit_menu.png_gzip_bfec447b90226cb8c686d98d3962cdb9f94d927320126badaa1a85aedf59f1b7" +path = "static-publisher/static-content/file587.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/lazygit_ui.png_5e23217a5693098bf88f52849ce6d6dd227feb815840eae683a1d5b3384b9050" +path = "../build/minified/site/books/nvchad/images/lazygit_ui.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/lazygit_ui.png_br_1a3174c7685dce240b6047b65a4a33bef7506d88249efcf42f70779abcbda335" +path = "static-publisher/static-content/file588.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/lazygit_ui.png_gzip_3551f3f5f90b0453b40440990ab3d5f2645f4ecd3af58f68c3b9fdd55f7dd2c4" +path = "static-publisher/static-content/file588.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/leader_ff.png_231e606e97360997b1c9922c0b11e2340e758bdb5ad285e804a5ab696f06f3bf" +path = "../build/minified/site/books/nvchad/images/leader_ff.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/leader_ff.png_br_8b00438818bce6580870d7368c12f20047bbc76ccf05f0d0b8976072ee6dcbdd" +path = "static-publisher/static-content/file589.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/leader_ff.png_gzip_b27302655002454d658014002df89d80b98cf095557d98d28eb6d2daeddacc53" +path = "static-publisher/static-content/file589.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/lspconfig_custom.png_5a3ed321cc9e9f3cf63ca9edccdd7ad0008bf79d56d5e8bd817352d652a56d94" +path = "../build/minified/site/books/nvchad/images/lspconfig_custom.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/lspconfig_custom.png_br_de4e04c62f83ad1db81f9dd8a97d9b1f6c0ce68dc2af8b843ecf8be334836d34" +path = "static-publisher/static-content/file590.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/lspconfig_custom.png_gzip_6b871aac5b35a00c0ddd89741e4c7960d68ca64f621070a1cf1e8b25c39685ab" +path = "static-publisher/static-content/file590.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/lua-language-server.png_7f111947ad0d2b8a7d91f8ec81e8544059834c8a4adbf3b18d939a2f484f7ec1" +path = "../build/minified/site/books/nvchad/images/lua-language-server.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/lua-language-server.png_br_e731f5cc06ee89aec0730905ef935d786e7b620ef1432df214feee0d299ed14c" +path = "static-publisher/static-content/file591.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/lua-language-server.png_gzip_94eb5d5b5ad674958372540b64364b1904c8dd75fcfb7875c350727add03da8b" +path = "static-publisher/static-content/file591.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/lua_diagnostic.png_0a60a0684100d0889a3d1b93d581abc021f2120eeb32603f70223fcd077f9d59" +path = "../build/minified/site/books/nvchad/images/lua_diagnostic.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/lua_diagnostic.png_br_f7e25e7e7fca24298d208a423e5526d91c688bcca715da22e4314f21997655aa" +path = "static-publisher/static-content/file592.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/lua_diagnostic.png_gzip_d87969d5c0b15ba5ef867f8924379465bbc6c5e6cc9cc26279ee870e8b379583" +path = "static-publisher/static-content/file592.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/markdown_preview_side.png_6db8057aac36dc2c954ffecbb2631e88af6ec5a010011b76c098af66efecd4ce" +path = "../build/minified/site/books/nvchad/images/markdown_preview_side.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/marksman_assistant.png_d42bdc3ade953302d59c354d33680ca9e514e9a6e487e30d8a541eaceb476c14" +path = "../build/minified/site/books/nvchad/images/marksman_assistant.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/marksman_assistant.png_br_d3f96731e1db5539df193c543c4939f9b5f00f2a6b0fd7ca154d082912ce754c" +path = "static-publisher/static-content/file594.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/marksman_assistant.png_gzip_11395072fccbce62abb022a7d91cbd3bf6809910c5d1fbdda8df24976a4e5e9f" +path = "static-publisher/static-content/file594.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/marksman_diagnostic.png_d66bc10b49b7c4a564cc0f94398814de2502e71ad51ab2d23135757e360ac4ab" +path = "../build/minified/site/books/nvchad/images/marksman_diagnostic.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/marksman_diagnostic.png_br_9c75fa1604b026c830c6ba9e69cc8cdfe9081636a0335561ccb55aea2020f9dc" +path = "static-publisher/static-content/file595.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/marksman_diagnostic.png_gzip_1d2608a36bc2271dc6e8714a600c2a19ab4029b53c175921d26119bd25e6d829" +path = "static-publisher/static-content/file595.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/marksman_enable.png_3be02016b7b4845a9706e96d5a54d77cb13fdaf6495f26f26dcfa078fc174847" +path = "../build/minified/site/books/nvchad/images/marksman_enable.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/marksman_enable.png_br_052f470fae07e45f03704e7259de1fb20c2526d64a6d7713c9b50f2766efa736" +path = "static-publisher/static-content/file596.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/marksman_enable.png_gzip_c9451b0bc75c6b9853912a30ec3fc8e85349684adf8cf36a42da0ccf458c6abc" +path = "static-publisher/static-content/file596.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/marksman_server_info.png_3915fac2a097966f3a01b7983973f49dbb22eeef45e5114a7bbd42cb50d3221e" +path = "../build/minified/site/books/nvchad/images/marksman_server_info.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/marksman_server_info.png_br_796d814c6632f6651e028b9f6065ed44fcd056a8812129f21e32001de5982e00" +path = "static-publisher/static-content/file597.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/marksman_server_info.png_gzip_ac24b690264623e700e56b0797f49438f78a15992546e96e55bd05f673999a88" +path = "static-publisher/static-content/file597.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/marksman_snippets.png_c5123879e082ec2656d07a08bb675eb20f081ff9835d43c460713da7c52f991b" +path = "../build/minified/site/books/nvchad/images/marksman_snippets.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/marksman_snippets.png_gzip_5701faf6f448bb2e6174e7e87b00b3c4565b38a347ddaba98520f1655e7ca57d" +path = "static-publisher/static-content/file598.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/mason_help.png_290f198377833ed1f54643f24ac436b67c1a55d924b8f9456b39bbfef8ea4f94" +path = "../build/minified/site/books/nvchad/images/mason_help.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/mason_help.png_br_1bdba2b43d7346dfa7239947aa54fc39fd04ddf47507254ed140a9c771ebd647" +path = "static-publisher/static-content/file599.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/mason_help.png_gzip_b8ae7090205a1d414f68b9c274d5f78a451fd57f169d854f164382eecb8d1723" +path = "static-publisher/static-content/file599.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/mason_install_ui.png_c376dda65acd1097f508e5d42c2fea51f8feda90f42dcbf7ff16042e944c4245" +path = "../build/minified/site/books/nvchad/images/mason_install_ui.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/mason_install_ui.png_br_71642658bee6d837c4c275402be56b2766a06510b323a074d520cfea99224dac" +path = "static-publisher/static-content/file600.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/mason_install_ui.png_gzip_86a659cc2286fdcf9d9803627d4cb95044ea9f7c96d3f30c54115c0b58e8e04f" +path = "static-publisher/static-content/file600.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/mason_installed.png_f9cbce63c94e0052f8ac93ca84465f485b23c6d2fbb71ac7f19503c9d7b10271" +path = "../build/minified/site/books/nvchad/images/mason_installed.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/mason_installed.png_br_b1ada8dad874ffe1e72054ed76e6afacf220aa39a9e7555b93ad655916f71fd4" +path = "static-publisher/static-content/file601.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/mason_installed.png_gzip_0dd2cd2fdcf7f4a6821c81ffca86ee810a68907bc3fd10318abf80d7718796bc" +path = "static-publisher/static-content/file601.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/mason_marksman.png_f7e8e3cf2669d9d9e0a0f6eed388ce147f25676259fc27ed1094c7a309929b99" +path = "../build/minified/site/books/nvchad/images/mason_marksman.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/mason_marksman.png_br_85402bd95544f51756131b7b3f09011ebdb36ac92496e6fb49910afd29dfed56" +path = "static-publisher/static-content/file602.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/mason_marksman.png_gzip_bc9b954ca744d196b8c11a6d1daaf27f2a7bb2dde99f1fec3ef9720ef39783d3" +path = "static-publisher/static-content/file602.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/mason_ui.png_12b6362a25f3e0e71d0a13b9aa53e03f6c27e49d9c9607722dac33ee40c3e3b0" +path = "../build/minified/site/books/nvchad/images/mason_ui.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/mason_ui.png_br_41d82f3d8d6c4e70907c973d8840f270f810ca6e475fa279c7547e753f0201f0" +path = "static-publisher/static-content/file603.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/mason_ui.png_gzip_260fda19483f1c2884642df78d3afad4e99a6adc43bbceae12531a633928d187" +path = "static-publisher/static-content/file603.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/neovim_tutor.png_5e32c1c6891ef2aff18735da409e7688a8bfbafbf13246f66807a9fb71d27df3" +path = "../build/minified/site/books/nvchad/images/neovim_tutor.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/neovim_tutor.png_br_5226b1efd4ff6b87117e492a68b13fe0757be446abe1716e394661dc54dc8077" +path = "static-publisher/static-content/file604.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/neovim_tutor.png_gzip_04b1e1f49e059376ebe9ff70553b6100227b8afb4ee322a65e5b80ba7e6ebcad" +path = "static-publisher/static-content/file604.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/nerd_fonts_site_small.png_c04c9f39a7796e03171cacaacd8d96fc09da4364a7a3f3b4ee89136053af0eaf" +path = "../build/minified/site/books/nvchad/images/nerd_fonts_site_small.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/nerd_fonts_site_small.png_br_f1b9908b99cd13b6f9c14befd426d1ae74706eec8becee395f72c99d7cd6853a" +path = "static-publisher/static-content/file605.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/nvchad_init.png_5a482bc7cb035fa443cf8df1f0dce80490f8ebbff3f95be11560df9b3c383760" +path = "../build/minified/site/books/nvchad/images/nvchad_init.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/nvchad_init.png_br_183a7947e7134062e55db80b08657127371a9294461d7c37385903d9657d960d" +path = "static-publisher/static-content/file606.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/nvchad_init.png_gzip_c4dd4cee68722fb01fe709c0308553da1cb4eba8af833814871bbe2fb45ba7e7" +path = "static-publisher/static-content/file606.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/nvchad_rocky.png_15cbdfc2a3599723522b89f0ca446f25e83a7c8f10e208ca2db1419808b4b4e8" +path = "../build/minified/site/books/nvchad/images/nvchad_rocky.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/nvchad_rocky.png_br_aba03d8609da2884c402d56aa4965a7b9e3609973635859551c955fe7836252e" +path = "static-publisher/static-content/file607.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/nvchad_rocky.png_gzip_0542ef9afccf88e65a4fcb05068b5211b8a647051071adfb464cbf7420f9dc71" +path = "static-publisher/static-content/file607.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/nvchad_th.png_6da2620e9c73ddfbbe09918a12528c00b11c7494dbc57eddc128af9074aac011" +path = "../build/minified/site/books/nvchad/images/nvchad_th.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/nvchad_th.png_br_2b26d633c9851b4cb66747ada3564e1336a97349a656ef104892a70c74358613" +path = "static-publisher/static-content/file608.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/nvchad_th.png_gzip_d915555216e43ed4f7b5881b824055e4b8173e47eb1b7bec64b3527e40696664" +path = "static-publisher/static-content/file608.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/nvchad_ui.png_c932f49d66712f5fc8a4d7ff500cf938a3e0f04e7cd1b7c4715ce192be2f64ed" +path = "../build/minified/site/books/nvchad/images/nvchad_ui.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/nvchad_ui.png_br_26976321d0bbc15fb5b381b116afc1560d2565d88f90ee29aca82bbf2e2bef27" +path = "static-publisher/static-content/file609.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/nvchad_ui.png_gzip_fef9c2681c9aea1503caeb3c8754de6594f4b3d80b936f04367019dc4006efba" +path = "static-publisher/static-content/file609.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/nvim_options.png_42e4fd9708df59736e408cfbc3a1f3f3674d5b3b2b08b793402ee26361dbe607" +path = "../build/minified/site/books/nvchad/images/nvim_options.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/nvim_options.png_br_6572ff919cb3e831814e262cfed1f332ff73ff0c4ae8654ef83ec209723609dd" +path = "static-publisher/static-content/file610.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/nvim_options.png_gzip_9070a29be945489682901a584e77da68cb3a1f8252387a6b0706d4c08b998d93" +path = "static-publisher/static-content/file610.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/nvim_standard.png_67612d8504dba1ce8018155b779ee49d9bd23f223ce58fbb921acef9a44e77bb" +path = "../build/minified/site/books/nvchad/images/nvim_standard.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/nvim_standard.png_br_38d8b2250e194740c133646e011d5284458f20b3055ac807b9448b261b845d60" +path = "static-publisher/static-content/file611.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/nvim_standard.png_gzip_a56c05d75ed362d0cc2f94c0e49724e6913a46ea6d8b91adf58a26e715373420" +path = "static-publisher/static-content/file611.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/nvim_tree.png_3ce6a5f55f353ca76b431c1a5563e0ca406bb043f6323864b617eca433469a4b" +path = "../build/minified/site/books/nvchad/images/nvim_tree.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/nvim_tree.png_br_7b0a7e38cffe09582f2793278b446fb90755b0893ca7c611f226018efc5ad46c" +path = "static-publisher/static-content/file612.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/nvim_tree.png_gzip_8508c3810d75976af8dcbda8af2713fd1ebf3caa3453fd1cae190206e6945c80" +path = "static-publisher/static-content/file612.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/nvimtree_basic.png_7e0e040f40fd456712b2cdc16192beffaf57d5aa5630c37601ced400e9c447c1" +path = "../build/minified/site/books/nvchad/images/nvimtree_basic.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/nvimtree_basic.png_br_2540a5397c9aa9a9e3f81fa4ce9215cd7f76a977ce22e682752852136e1eda75" +path = "static-publisher/static-content/file613.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/nvimtree_basic.png_gzip_6a925a83ef909352b2e655420c7669321b3bec350e7af54a631a80a684d68d90" +path = "static-publisher/static-content/file613.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/nvimtree_find_filter.png_b8c6d81b6f92021b9a681c938bf0edeb0d2a564b5f7a5ecd4fb37fba4ca0f92d" +path = "../build/minified/site/books/nvchad/images/nvimtree_find_filter.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/nvimtree_find_filter.png_br_9d76d6f72ce2353b487bdeb407da1e3e6dd8f74df648c5ef455216fe4a01a2ac" +path = "static-publisher/static-content/file614.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/nvimtree_git.png_82644ddee8fdef6b3308ca392883c9c9f7502b13158c234700b572722118462b" +path = "../build/minified/site/books/nvchad/images/nvimtree_git.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/nvimtree_git.png_br_bb507cb8222e06734025ed30375e05a5603f0427bf54de537da8aa29c2531f08" +path = "static-publisher/static-content/file615.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/nvimtree_git.png_gzip_7194ef64bfeb49a044ba63a5279c42c1c2e403bc553a0fb9b43b8e0664217b33" +path = "static-publisher/static-content/file615.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/preview_commands.png_9736a11c657ff9cd3e52b5cd9d7d2cdd26d359aa053cd606eca8101689fa85ba" +path = "../build/minified/site/books/nvchad/images/preview_commands.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/preview_dark.png_78ed02ea6347c9db3a6ddfbf41c7649b45ae18fd95fb408664e177e4469c254f" +path = "../build/minified/site/books/nvchad/images/preview_dark.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/preview_dark.png_br_2c0a02d73215ff5f69fc68b12d55b8db89186c98707d92a5c956a797d96ef829" +path = "static-publisher/static-content/file617.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/preview_dark.png_gzip_a56566ddf0df42fd1c01aa622f2aa475f18e9f6b2ce3042fd165206f057e4c5b" +path = "static-publisher/static-content/file617.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/preview_dark_on.png_5375dd847e59f3f9b3c2c25f3ceacbd483e88153edd5e203cfb52a828a35df37" +path = "../build/minified/site/books/nvchad/images/preview_dark_on.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/preview_dark_on.png_br_1eb8a5e0ea478fd5524dbdb72d8973ca67d56968a0a38a5735656354a6de6434" +path = "static-publisher/static-content/file618.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/preview_dark_on.png_gzip_5b635ad5dda5473dee5d0f8f5feafd89f5c3301bbe3ac26fdb1aac09741b3cfc" +path = "static-publisher/static-content/file618.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/preview_mapping.png_207d2015bea76dee750a818c0c074b1d4e2afd0916ffae8343b0a55fd64fe55c" +path = "../build/minified/site/books/nvchad/images/preview_mapping.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/preview_mapping.png_br_dec37806afba45a5165b4b9c1db2caba5c3e7c9ec536dd66c0c9e3787cfb00c9" +path = "static-publisher/static-content/file619.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/preview_mapping.png_gzip_e8f01a5f2dabb378fe0b43153fc093e98ae1c1fc2c70ad9fac0a3ca346a3ad4e" +path = "static-publisher/static-content/file619.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/remove_plugin_01.png_cd74463409d83d8a3d043facf2414c6967489dbb762fc873031eb5b774b76d6e" +path = "../build/minified/site/books/nvchad/images/remove_plugin_01.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/remove_plugin_01.png_br_83f64cf18b8af50832c8ae87fdc46c609af1740a7489cc97626e093634d6e3fa" +path = "static-publisher/static-content/file620.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/remove_plugin_01.png_gzip_05b14eb9abd2018458f52ed850c20b2e8d160dd7ba7cdc996d64e6f883f1230a" +path = "static-publisher/static-content/file620.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/remove_plugin_02.png_0661dc0335121c2149153a67689ca565d1e5480784cfe5949ac09d67407202da" +path = "../build/minified/site/books/nvchad/images/remove_plugin_02.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/remove_plugin_02.png_br_f24f05c2855c23e95567b96d1181433339e6a77b6b224a6a4987f79f30e4525e" +path = "static-publisher/static-content/file621.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/remove_plugin_02.png_gzip_b71c6575dc722005620a5907353c8b145183155988e1c19b4fe522c6ce1b87c0" +path = "static-publisher/static-content/file621.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/telescope_find_files.png_5ac3c56532342f4a83bb9cdf129cdacbed24954597d6b3f9ea6c988e42b9299d" +path = "../build/minified/site/books/nvchad/images/telescope_find_files.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/telescope_find_files.png_br_1efacd13a2fadc463f6ca1f3312b29f032cd960d2265fde807c65c093cdcb28a" +path = "static-publisher/static-content/file622.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/telescope_find_files.png_gzip_04ec8c6636cce2c909198a200523d8c9ef80753a55c856c8389187a15a3260f5" +path = "static-publisher/static-content/file622.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/ui_default.png_0ce49115f57843666e8709bba4696c54fe8674845c9d262c3566cc0c7812974f" +path = "../build/minified/site/books/nvchad/images/ui_default.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/ui_default.png_br_077a88d4f92dd9f4d8cf7b3911f84d90ff63e2402154e1201b00c96d857d0aad" +path = "static-publisher/static-content/file623.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/ui_default.png_gzip_41d50942d2734e2505f2fbb14b71f91447c7ffeedf52709ee107dd9a4dff8278" +path = "static-publisher/static-content/file623.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/ui_default_light.png_1fe1b875aec5d57b14d0461bdfe5c5b53c975767df5cbd5ba726a5bd8b36723c" +path = "../build/minified/site/books/nvchad/images/ui_default_light.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/ui_default_light.png_br_1958a08a619fb73261d5db1057608b3509b23127f3e4b6c77ea87e96835338eb" +path = "static-publisher/static-content/file624.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/ui_default_light.png_gzip_6e1473bef7ebd3fa0177ae384b4ade5173b3d23ed58d48204c4623e17b92856a" +path = "static-publisher/static-content/file624.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/ui_escape_key.png_19ae5aa45cbd246fe97e783e8aeb651348c596cd61368a4301d59d736bb3864b" +path = "../build/minified/site/books/nvchad/images/ui_escape_key.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/ui_escape_key.png_br_a356c35ccba2a9102d88013dd63131aff557f90aa4ad2f2e15ee3c1c470437fb" +path = "static-publisher/static-content/file625.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/ui_escape_key.png_gzip_9be25a4c7da4b639fb64f46a419302b37072195e1911c2e640efe19d202f7c8c" +path = "static-publisher/static-content/file625.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/ui_nvchad_split.png_d47ca36bcf8a068e69a8cddd4101a337018b8cfac673d4362c5241a8a1dbbf7a" +path = "../build/minified/site/books/nvchad/images/ui_nvchad_split.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/ui_nvchad_split.png_br_3d3397f120067150ead2afb3173b03af0d29ea8881c14ae8e01c7be0357d98e6" +path = "static-publisher/static-content/file626.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/ui_nvchad_split.png_gzip_7709a035c8359e0d28a1dd6b416f27d9ce3158a7daf4e034825e490f378409cd" +path = "static-publisher/static-content/file626.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/ui_statusline.png_2fad4f6bb7c61eb20c62654ecbc420747910b8bf2e5257ca77598e06a00b8331" +path = "../build/minified/site/books/nvchad/images/ui_statusline.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/ui_statusline.png_br_efe9d71a93dff5b797bc07175c138a15a8154a62c3933b8e5496f362b8aba9b0" +path = "static-publisher/static-content/file627.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/ui_statusline.png_gzip_eb522164c31b5674f57e7dbd2ee31207631db351d730fbc78dc4216d9cd3cc6f" +path = "static-publisher/static-content/file627.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/ui_tabufline.png_1c7462d84ca88cf2458914fe73a83943c7f2939dbc25238aa23469f1cd6e240d" +path = "../build/minified/site/books/nvchad/images/ui_tabufline.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/ui_tabufline.png_br_35efc2c57b31d39db7fad1d320498c3d7d96f1d59099394f63d02966fad7fc31" +path = "static-publisher/static-content/file628.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/ui_tabufline.png_gzip_a86d907225abce9f3909a90a789e137df2388f0bf383ef3c6adad6cda0327899" +path = "static-publisher/static-content/file628.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/ui_wK_01.png_851723b7c4fb8633c719b76551fcfef05a2ccf998c8f567b122b093e30dfb6a8" +path = "../build/minified/site/books/nvchad/images/ui_wK_01.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/ui_wK_01.png_br_9fe256485da0f27dab23a6250f01009df88d649d3125cee43c116f25fea0635c" +path = "static-publisher/static-content/file629.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/ui_wK_01.png_gzip_392ca737c46cde3e30455ca35e5659b9a863fbe42bda554d768422669637b383" +path = "static-publisher/static-content/file629.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/ui_wK_key.png_9b4b11c04af8d1eeb9234f62b7dc6773b16b7f51487c2d6afaaadbec5a659b67" +path = "../build/minified/site/books/nvchad/images/ui_wK_key.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/ui_wK_key.png_br_369150f985498e414b9f4f337cbfea8d5822e7289d267fe8bd762afc7fe01e03" +path = "static-publisher/static-content/file630.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/ui_wK_key.png_gzip_1f6d598ac88e69d18c91e78f49009c2225c165e334c6d3d4d357ec32b8423d12" +path = "static-publisher/static-content/file630.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/vale_ini_nvchad.png_c16998614a6851c597cd379a060f9880006e2a932b47085bf6e14266187de442" +path = "../build/minified/site/books/nvchad/images/vale_ini_nvchad.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/vale_ini_nvchad.png_br_b60a505c4e802101f76d609c7ace44694e6a9abf6424b2ef50c4ae5889b97bed" +path = "static-publisher/static-content/file631.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/vale_ini_nvchad.png_gzip_86cd4dcec9d35ee3e6340593683dc711b154a15d3b402b74700d36bee5c79c21" +path = "static-publisher/static-content/file631.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/vale_mason.png_3eb946c43af4d81662e654f93ae487f2b571a3a584dc5d1cc9a22479c0529014" +path = "../build/minified/site/books/nvchad/images/vale_mason.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/vale_mason.png_br_07818fb967f38d21ae72b9566ac04eb587ec5e737e7f82c5bf140f93e4301b8a" +path = "static-publisher/static-content/file632.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/vale_mason.png_gzip_9f30fefedca68e1012045ce5072dbb379357415a672809bda22985b371c68fd3" +path = "static-publisher/static-content/file632.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/vale_mason_installed.png_acc2d0e10dd64059d9994e9f6b37ca22df77501ac48cfbaae618297c43efb433" +path = "../build/minified/site/books/nvchad/images/vale_mason_installed.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/vale_mason_installed.png_br_edddbcb83e8ad445a868d95ff7f9ed63aba38de389d3eaded6663048fcfc1149" +path = "static-publisher/static-content/file633.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/vale_mason_installed.png_gzip_dc4d5cd84cbc51350d2fd1f7019c3fb8186343d818dbb4fcfb27b64e8a459975" +path = "static-publisher/static-content/file633.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/vale_null-ls.png_28abf46c4eb676d321c7b3e412d50991906c507471215d3c2a98711bf0e405fc" +path = "../build/minified/site/books/nvchad/images/vale_null-ls.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/vale_null-ls.png_br_cb2221ac8df741f631e032043dad494daa970f4cf0abb1ce4913b764e280b47f" +path = "static-publisher/static-content/file634.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/vale_null-ls.png_gzip_ade0c9397057c3a977f43c565901138deaa6d10e18eaab52f0399f79932ecf8e" +path = "static-publisher/static-content/file634.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/vale_sync.png_5bea9fd0f6005b90fbc6f0ab896c963830fe3994197015e07f62f4c8b742458d" +path = "../build/minified/site/books/nvchad/images/vale_sync.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/vale_sync.png_br_80cbbd3b4c73cc7fa881faea739066e46db8c5431f70ed32224563ffeeb1a40f" +path = "static-publisher/static-content/file635.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/vale_sync.png_gzip_35f1dc86c8e0bc34615eb86eb5f398e1e4e790b993dea1305be6733bcb2140dc" +path = "static-publisher/static-content/file635.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/vsplit_open.png_f3f8521b55263cd562cd5035d9f2b61b82a62c970ee091f8aae0b77fa2fe8ca2" +path = "../build/minified/site/books/nvchad/images/vsplit_open.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/vsplit_open.png_br_0e09ad658a9b38dae613db3430c7608f441b76875f890abd2b37cf87e13162ab" +path = "static-publisher/static-content/file636.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/vsplit_open.png_gzip_bba831ee7a00d8c7a6ca6b9113c302ee41d44830b1cfe23291e446c1a9d27102" +path = "static-publisher/static-content/file636.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/which_key.png_0e2a2a13ccbf231c4f70c53bb20f0ec1052acb02809e85831cc3654fa6d34e58" +path = "../build/minified/site/books/nvchad/images/which_key.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/which_key.png_br_78f96cc6ec7f90dd93f23e1e9966a62e42cc8b12b4c694a2b88db1c0b9731114" +path = "static-publisher/static-content/file637.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/which_key.png_gzip_31c6d69b0350a8a45b0c6e61ef7da8e84d6a391018e31f8dd1d5669a9e98f7f4" +path = "static-publisher/static-content/file637.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/yamlls_server.png_2a47cb0230baf9ce8dbaa04c171b27c519ac2ddd189f220380f034c59458ebb3" +path = "../build/minified/site/books/nvchad/images/yamlls_server.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/yamlls_server.png_br_8343460bc3aec2b10a28ba9d571244af4636af18f64d7b2775e36e37dcf381cc" +path = "static-publisher/static-content/file638.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/images/yamlls_server.png_gzip_d9a21cb367d84a06db499964cb8e926f5b703624ef0d2dd7072d8773f441a470" +path = "static-publisher/static-content/file638.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/index.html_58fc079ceffd8afe36546ba536aa0ed89e456d06d82db4352a329e66b085fb3a" +path = "../build/minified/site/books/nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/index.html_br_92226caea23b0188268b4d3fe5aedeb1a635114d0643b605bd80d989152b2937" +path = "static-publisher/static-content/file639.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/index.html_gzip_c4684e557175e08131e51dcb388cb8d49d4c569c66a56014744e627608087b10" +path = "static-publisher/static-content/file639.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/install_nvchad/index.html_8e3570d50937b15a8c917c55e7a14ec98eea2223ff4a5361f338c363434cf795" +path = "../build/minified/site/books/nvchad/install_nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/install_nvchad/index.html_br_6207ecbec6c282c060dba39f2e982fd0234ac4db2da20c4923d9aba3996a2a80" +path = "static-publisher/static-content/file640.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/install_nvchad/index.html_gzip_960ec3e3a690518c0c817b660745b6074c5ffba1cd5731cd60e94f25a2bc9d0d" +path = "static-publisher/static-content/file640.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/install_nvim/index.html_5e0291231b48df48d349829e5f2c9d10ca1e2ed68d62a411a480bfa432e04391" +path = "../build/minified/site/books/nvchad/install_nvim/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/install_nvim/index.html_br_2b79c8860c4b5a7d65ea3a06b2b58c738695574148c3b28c8a77d7c110dc1fbe" +path = "static-publisher/static-content/file641.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/install_nvim/index.html_gzip_04d13699c40895f11090a065476d56a6a595bcf19f36278e2574f7d3ae8fbb7a" +path = "static-publisher/static-content/file641.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/marksman/index.html_b831739abb70323f4e84a3561681069b7fc2ba996d3a3b35a626afe9a5522217" +path = "../build/minified/site/books/nvchad/marksman/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/marksman/index.html_br_cb18ffcb218fdc908822e65c9fc6f3e97b1943dcd90dc8531fffa984a46dd4ba" +path = "static-publisher/static-content/file642.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/marksman/index.html_gzip_0d8325ce454214fb46e8c193af550ade1d6066ce1f4fd83cc3f753dc54685615" +path = "static-publisher/static-content/file642.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/nerd_fonts/index.html_b06feb659f9f9df41dd0f14bfdbcddb4eac66d894daaa8ff3b9a06501f3727a0" +path = "../build/minified/site/books/nvchad/nerd_fonts/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/nerd_fonts/index.html_br_2ef0680a928aafa44ce198d06bfaff68df9b9b946ceda815048760e21889b843" +path = "static-publisher/static-content/file643.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/nerd_fonts/index.html_gzip_caab47bd2ea3e92db35a26bbdd301f0e2f0fe4361b34324a18d1e933e04a408e" +path = "static-publisher/static-content/file643.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/nvchad_ui/builtin_plugins/index.html_1b1a0339bfca7641d064c479e851b79d5fad466a8f44c0ce2a53183fffbb2261" +path = "../build/minified/site/books/nvchad/nvchad_ui/builtin_plugins/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/nvchad_ui/builtin_plugins/index.html_br_03e0fa0a6468650dcf14f6ab15896957f0b514ad8cd37e260cd626275cdd2897" +path = "static-publisher/static-content/file644.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/nvchad_ui/builtin_plugins/index.html_gzip_68e58a59b87fcbaf1423188ec6d3819e2e096bf6fc7cae58998f26cb00e63e84" +path = "static-publisher/static-content/file644.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/nvchad_ui/nvchad_ui/index.html_6c329e4f2b839136668e77268e7de6626b1fc4a57ff67f4725280fd3affecf04" +path = "../build/minified/site/books/nvchad/nvchad_ui/nvchad_ui/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/nvchad_ui/nvchad_ui/index.html_br_0d30a0377efbbad77ff0e13499179ca7287446c9a97928e70037406b193de38e" +path = "static-publisher/static-content/file645.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/nvchad_ui/nvchad_ui/index.html_gzip_041d0e8ddc09722407e81f08d0f289592715eb3a69711fed43f3d32d0e5162a0" +path = "static-publisher/static-content/file645.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/nvchad_ui/nvimtree/index.html_020c63e56bad87b8329179652ee6b1ac82e51246abc9f4d61b7f7f621243422c" +path = "../build/minified/site/books/nvchad/nvchad_ui/nvimtree/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/nvchad_ui/nvimtree/index.html_br_706ebe54183f39a2693651ee21bade8782326d0c86dd27270fdd609c24dbca81" +path = "static-publisher/static-content/file646.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/nvchad_ui/nvimtree/index.html_gzip_23888e58e403bc25d3f91a45013fb00e9a885f61964b90bc6f9a6bd5ffb3a431" +path = "static-publisher/static-content/file646.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/nvchad_ui/plugins_manager/index.html_3df7d39142b586a7173947960cfc325b8e462aba2c493059915a3b44624e23ad" +path = "../build/minified/site/books/nvchad/nvchad_ui/plugins_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/nvchad_ui/plugins_manager/index.html_br_30ba6eb1b08f5091f2bc4f7307aa50b6eb236709141ad95b767d1680a34e919b" +path = "static-publisher/static-content/file647.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/nvchad_ui/plugins_manager/index.html_gzip_15f3e9aebab02cfea0b6a5e0bf79fe23e4d4b43bd13f54204f8375d148d4d4b0" +path = "static-publisher/static-content/file647.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/nvchad_ui/using_nvchad/index.html_d4277732cef734966c3c4dc7d5d5718d530a26df03392d5e9592153fc4c2c155" +path = "../build/minified/site/books/nvchad/nvchad_ui/using_nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/nvchad_ui/using_nvchad/index.html_br_9c73a7bbc54e23f74c8ab93bf98de7faa422216dcbf90b1b754f8ee3c1c9c50c" +path = "static-publisher/static-content/file648.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/nvchad_ui/using_nvchad/index.html_gzip_b04c28a08251dc24abfb0fbe4a13d1ac04bccf43af5ff68878bb7eef9ba5deed" +path = "static-publisher/static-content/file648.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/plugins/images/markdown_preview_nvim.png_87963cd9a9fcaec00d513227970d429b09214bfb20fac58f392466153e08ca54" +path = "../build/minified/site/books/nvchad/plugins/images/markdown_preview_nvim.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/plugins/images/markdown_preview_nvim.png_br_ceb9e0ab67abea6a86abd88bf2c00becd6f96d05632926f235fadfcfe195e978" +path = "static-publisher/static-content/file649.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/plugins/images/markdown_preview_nvim.png_gzip_e0c88ac46ac015e715c87e8478f86b417989b09a15d73e8c25726d3fdfe34056" +path = "static-publisher/static-content/file649.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/plugins/images/peek_command.png_1a5eb8bb671d9f03e52ba633313b4ca767d960b778ef1941a4325b61a418766e" +path = "../build/minified/site/books/nvchad/plugins/images/peek_command.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/plugins/images/peek_command.png_br_494e95e0e5dc20e72fe74b891974524f1d195d2b139d9a00bd51e960568fb7b1" +path = "static-publisher/static-content/file650.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/plugins/images/peek_command.png_gzip_1483dc2c394d2dc5e757135ff33dc26e5cce0d445240ff7a7d26d9645ac95db7" +path = "static-publisher/static-content/file650.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/plugins/images/peek_webview.png_b820d178a9391f6d057ef10c2b91b69adc210aa44ceb41642cef8898a689c86f" +path = "../build/minified/site/books/nvchad/plugins/images/peek_webview.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/plugins/images/peek_webview.png_gzip_dc695a9396ee0fc9c3b0253338edf4174cf7a0dcb9a26c6086cb9131e06f518d" +path = "static-publisher/static-content/file651.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/plugins/images/plugins_lua.png_5edc782586b4b899ce2ca6dfbf02fb031279006aae003c453fbe2d8935d3e73f" +path = "../build/minified/site/books/nvchad/plugins/images/plugins_lua.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/plugins/images/plugins_lua.png_br_1be13821f30497f02bfec20704fbb48730cca0dfc539efbef3b0829950ed888f" +path = "static-publisher/static-content/file652.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/plugins/images/plugins_lua.png_gzip_9b27ecabecd651a2c836bcdbfbdee50c5767b6870b44f16c9286cc6d93aa9e03" +path = "static-publisher/static-content/file652.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/plugins/images/projectmgr_add.png_445c08b6a57278cb11dd98f36494ad2bee84820c97c6e838a21000e37758f195" +path = "../build/minified/site/books/nvchad/plugins/images/projectmgr_add.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/plugins/images/projectmgr_add.png_br_f458673ff458c7cbddfdf8e03a1a2d55f1295b44f836be3a2d9ec1460c1a9dc7" +path = "static-publisher/static-content/file653.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/plugins/images/projectmgr_add.png_gzip_b3461551067f9fe14e01739accb90d088f329f1ba0faf190aca5b6c927a3e873" +path = "static-publisher/static-content/file653.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/plugins/images/projectmgr_init.png_d24d6772ab905d2b93bc2e20ea80c6f9a6ca915a4f30e75895ec8bbc2da07d8b" +path = "../build/minified/site/books/nvchad/plugins/images/projectmgr_init.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/plugins/images/projectmgr_init.png_br_092a33864ac99d3d6670d63f48f300d1abb12e3aa04186378f06194ac66c41bd" +path = "static-publisher/static-content/file654.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/plugins/images/projectmgr_init.png_gzip_386dd8dbf6943783df5f5859b27ec920854729cdbafbe17e98ea02a293214f5f" +path = "static-publisher/static-content/file654.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/plugins/index.html_771e90b577c16f8042064b3d325ba9935360dd9bc7230121ba640e55a353bcde" +path = "../build/minified/site/books/nvchad/plugins/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/plugins/index.html_br_6d1757b766c9c147fc3bb641c723b311371794952310bd6658024ebcb7078b28" +path = "static-publisher/static-content/file655.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/plugins/index.html_gzip_f26061bb32b4a4eb598c3a3f24fb3aff04cdeafac9533cb7f2b3ef884bcacced" +path = "static-publisher/static-content/file655.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/plugins/md_preview/index.html_e3f293cf3eff6fb5f309558b28939581e1f17bd3c78c706c5e102b66e77328ac" +path = "../build/minified/site/books/nvchad/plugins/md_preview/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/plugins/md_preview/index.html_br_c3e236df73a86304c29928f2d77b40dc4d4b823413f13c02b6624a949cab7c0e" +path = "static-publisher/static-content/file656.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/plugins/md_preview/index.html_gzip_78990368545c92567fe6acabdc6f9fb510f13acc63754463f82ee9fbe6af3738" +path = "static-publisher/static-content/file656.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/plugins/projectmgr/index.html_ce9ec53567fc27d9ee458ab6f4d439d601a5a9f283b61f4a1cfba96e39a2ae2a" +path = "../build/minified/site/books/nvchad/plugins/projectmgr/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/plugins/projectmgr/index.html_br_2c5fd62804e0c448d934403c4ed264f23771f643cb2a6e79dbfd07e401da1762" +path = "static-publisher/static-content/file657.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/plugins/projectmgr/index.html_gzip_407783f5ac861884f8cb8393c304cc2f35c7b97ef61978b5dfab0ca1e46f06ff" +path = "static-publisher/static-content/file657.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/template_chadrc/index.html_cd8170526773b943e14ebc9071be7e87de9ed6976f804ae71682606a9e89f46e" +path = "../build/minified/site/books/nvchad/template_chadrc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/template_chadrc/index.html_br_9137e989d8054edc37121ec0988039337f2d1150c0f5dd376045cc325dd1709c" +path = "static-publisher/static-content/file658.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/template_chadrc/index.html_gzip_268e13ec45efa2b864c4abe4f94b56be1f554a8de0edb862cc2a84668ffa2544" +path = "static-publisher/static-content/file658.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/vale_nvchad/index.html_bc5c167316d6c9cd671fabeeb55ef0382f787eda3228072b28cf122676d5b337" +path = "../build/minified/site/books/nvchad/vale_nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/vale_nvchad/index.html_br_7f3d1caf728227b6a89eb62f8de4db59f10a891a39ad95a8d8f790d61630fec8" +path = "static-publisher/static-content/file659.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/nvchad/vale_nvchad/index.html_gzip_428b156732a1473189e71a754b926ca7a4f03795233de1f2c625b4c32eb69ef2" +path = "static-publisher/static-content/file659.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html_5f4615c9afcf87cb56cd201edfe2fb4f8f9748a8ec913f5ff260e1a9d8e86cef" +path = "../build/minified/site/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html_br_71313eb38a1ccc1995f58c9a9c9dbeb10835dd4772ad001ba48cae33eacb1f6a" +path = "static-publisher/static-content/file660.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html_gzip_6e982be4a227db41ed4b79576afa27cd5ce3e5c97e7a47d6c43c34e6272522b0" +path = "static-publisher/static-content/file660.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/sed_awk_grep/2_grep_command/index.html_ffb87ad699c3448cd78f5f4cc2eb338ffb9392b11add6a638cb2154d82427851" +path = "../build/minified/site/books/sed_awk_grep/2_grep_command/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/sed_awk_grep/2_grep_command/index.html_br_0be88209549d180a96b99c61ab3e1cabfe608f3a0d21ddf569c90cb67435c747" +path = "static-publisher/static-content/file661.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/sed_awk_grep/2_grep_command/index.html_gzip_6f803b26368a3bc7e1e2fb7b63a62ff6643b1d4b95380fb3a70aa979ef2054a3" +path = "static-publisher/static-content/file661.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/sed_awk_grep/3_sed_command/index.html_6f8658fa3f537e746351c01803088ffb8988e5454a89655966415555e2fca701" +path = "../build/minified/site/books/sed_awk_grep/3_sed_command/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/sed_awk_grep/3_sed_command/index.html_br_018d4eac0a42ed34dbb4676e667d2c001854788367544f09d9d822d1a84c9e64" +path = "static-publisher/static-content/file662.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/sed_awk_grep/3_sed_command/index.html_gzip_eef63d99808484dfbef107485dbdb487db9bf555f6c2de321faa90ba2507df67" +path = "static-publisher/static-content/file662.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/sed_awk_grep/4_awk_command/index.html_e24cbeae0f570f647f89b110af9297316c7b284a1630485e664a85bc8a03b7b5" +path = "../build/minified/site/books/sed_awk_grep/4_awk_command/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/sed_awk_grep/4_awk_command/index.html_br_7e2ec9289a9e43593459274474424f7a31bbf5cc56d3251982060459bd619931" +path = "static-publisher/static-content/file663.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/sed_awk_grep/4_awk_command/index.html_gzip_2ceaa38c0798fe46deb4c9aedfb2e4671bf43d66e80b8d1a617ba5fa652a6c49" +path = "static-publisher/static-content/file663.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/sed_awk_grep/index.html_aeb9334167eb6d63107157bcaff06b9bd739539c18dbf7cac8b55f0be60d3b33" +path = "../build/minified/site/books/sed_awk_grep/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/sed_awk_grep/index.html_br_f74b4b1a5d96c13871db27c4d7821f8a386ae36f80fa0b81fe2d1e580db21109" +path = "static-publisher/static-content/file664.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/books/sed_awk_grep/index.html_gzip_073bb2e921adfc6859715bb15c1f44e39598493806bc46995378e9efe8bece17" +path = "static-publisher/static-content/file664.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/admin_guide/00-toc/index.html_99b393639ab525cd7a1fa4446d659ce362a3b3162a050309490860071f949652" +path = "../build/minified/site/de/books/admin_guide/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/admin_guide/00-toc/index.html_br_1c4362a9b1b15fac034402421ca6ecc5b3faac423d90de3ac52bde2c37b31e69" +path = "static-publisher/static-content/file665.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/admin_guide/00-toc/index.html_gzip_bb1fd9469a818deffb04f247820636c33bea8324a4b722f097347e5c3b8679d5" +path = "static-publisher/static-content/file665.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/admin_guide/01-presentation/index.html_2c2f68d4a654f38718326b354d18f060f590c5c7c8723df76b6783ac4431d87d" +path = "../build/minified/site/de/books/admin_guide/01-presentation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/admin_guide/01-presentation/index.html_br_799cf8d60c3c2f858015a2375fc524074a7a2d1dc7bbc64b92565a25cc5c8fe3" +path = "static-publisher/static-content/file666.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/admin_guide/01-presentation/index.html_gzip_7dd756c9de0eb25f8a9188644617e3b2240a168df98b78c1730f0cac39473e23" +path = "static-publisher/static-content/file666.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/admin_guide/03-commands/index.html_de46d75282e2cf62b92a5f14556a0a33c1845676ae8774ee01c9e428dfec1a38" +path = "../build/minified/site/de/books/admin_guide/03-commands/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/admin_guide/03-commands/index.html_br_f6cbf6d8807e7b3022d02b58ae51da9844a8434dc17797664a34ecfaa74cfe5a" +path = "static-publisher/static-content/file667.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/admin_guide/03-commands/index.html_gzip_b61238142b07de3273b71f1ee5a9c9642d66040d1d86030836b444f124bb7352" +path = "static-publisher/static-content/file667.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/admin_guide/04-advanced-commands/index.html_e7fc74b59b99c131f2c21fd8189a3cdadc69679f30c0db722b9420335bab3066" +path = "../build/minified/site/de/books/admin_guide/04-advanced-commands/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/admin_guide/04-advanced-commands/index.html_br_e4b9a686266751d6e1e4c29fb18e14219bbc572bd3366ce49528bba2dd738d0f" +path = "static-publisher/static-content/file668.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/admin_guide/04-advanced-commands/index.html_gzip_826b8aa7efa70f8689b598e9198d000a2f67ec63f6574564fc7e6a93d52322f1" +path = "static-publisher/static-content/file668.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/admin_guide/05-vi/index.html_ac946cac14452bf18809df7848e8e7448710e8475ab9be8422cc5c5faccc664a" +path = "../build/minified/site/de/books/admin_guide/05-vi/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/admin_guide/05-vi/index.html_br_e88fa1adabfa898a6c33fe0a2f9358212874623d061e044cb6d1e8ac61020e00" +path = "static-publisher/static-content/file669.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/admin_guide/05-vi/index.html_gzip_1af563dff3ecda083a08e625addc89baabe46342be3d08348161f3d34a1bb9c7" +path = "static-publisher/static-content/file669.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/admin_guide/06-users/index.html_20d49ad2e3c4894dc45a1027066f7c69d205815c22dc51dbe7760c0ec32b92d4" +path = "../build/minified/site/de/books/admin_guide/06-users/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/admin_guide/06-users/index.html_br_c35b98fbc441dadc8e042f6d86c995fefc82a666045f57ff5463003d69e896b0" +path = "static-publisher/static-content/file670.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/admin_guide/06-users/index.html_gzip_5fe4506e39b4f6d89a7a84d74e0a5b1bf7324dd692e7764545167af8a0fdea38" +path = "static-publisher/static-content/file670.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/admin_guide/07-file-systems/index.html_7bbdfb6c87c5099f94b6c7eb55ba167953e0d33e4a6d991f70c06cc93204ed47" +path = "../build/minified/site/de/books/admin_guide/07-file-systems/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/admin_guide/07-file-systems/index.html_br_b3feeedfb365cabf85f0a27881e5ec5452e9fa83673d8a528303e3ca537731f8" +path = "static-publisher/static-content/file671.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/admin_guide/07-file-systems/index.html_gzip_2e8a3d3c9459ec9dd360c5da2b4311c3617120e3d3b6b985e080da90fac1ccf7" +path = "static-publisher/static-content/file671.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/admin_guide/08-process/index.html_e2940d226b38538da18907510dcfb4abb208831e998988f72aa6cb4a464c16de" +path = "../build/minified/site/de/books/admin_guide/08-process/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/admin_guide/08-process/index.html_br_4760f1f56627062824fcfb5ac48423cd4a574cf4bd526a6ddbfc79b5434a6756" +path = "static-publisher/static-content/file672.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/admin_guide/08-process/index.html_gzip_177a3c3aff7ec1e89965929e27f14c61e046d21c1bd846c05bafc1b769049cd3" +path = "static-publisher/static-content/file672.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/admin_guide/09-backups/index.html_abf2dce6c8cd62d119f9256292f16eba74ec07e59e4d8e898d701656a4b06ca0" +path = "../build/minified/site/de/books/admin_guide/09-backups/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/admin_guide/09-backups/index.html_br_26b491ffdc942c227f6edaf1535f59066a93f89846d66e32f92309f1ece23e13" +path = "static-publisher/static-content/file673.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/admin_guide/09-backups/index.html_gzip_a6f6d0e5e15e125d7d3835fde4e1743268523e57f2e684c14be59567fc80a77e" +path = "static-publisher/static-content/file673.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/admin_guide/10-boot/index.html_de07581ef5267b6dc51bd13032922d0f0434c145c9b94873a5bc498a4364ed6e" +path = "../build/minified/site/de/books/admin_guide/10-boot/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/admin_guide/10-boot/index.html_br_2a1ff81975559a4b28e5ccc75d6f58adedd6cc4b843e83ed4758c2c8f72af450" +path = "static-publisher/static-content/file674.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/admin_guide/10-boot/index.html_gzip_10c2fc80ff86bf9e0249b6b0c02cc7e918472fffcbce4d5bedbb9b25f19e19bf" +path = "static-publisher/static-content/file674.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/admin_guide/11-tasks/index.html_03dc1a2c862862015e1c8711756144c64bbdc2fe39f596c3508339b33556af0f" +path = "../build/minified/site/de/books/admin_guide/11-tasks/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/admin_guide/11-tasks/index.html_br_93fb7620cbac7bc95ec79ed9b7979efa5df55bb74d07014520203e909c04d59c" +path = "static-publisher/static-content/file675.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/admin_guide/11-tasks/index.html_gzip_5915a982695d56401487b98f31e69c333f598d05ddac62fb211fce32792e1339" +path = "static-publisher/static-content/file675.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/admin_guide/12-network/index.html_c5febcef310a54e939548387bf3262f314de529eea276cc6d1e4e578f766bb3e" +path = "../build/minified/site/de/books/admin_guide/12-network/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/admin_guide/12-network/index.html_br_7f8ea5a3fd928f89f74f29604194391c9b3d8399fc7b98fd27ab8e54521cca7a" +path = "static-publisher/static-content/file676.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/admin_guide/12-network/index.html_gzip_ba71409012eb759c2fdf5b536431a6e2f5dce8ac7564af55d3b341241407c51c" +path = "static-publisher/static-content/file676.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/admin_guide/13-softwares/index.html_2c76e8f88f61bc5fe9efe0af5d493885baef414e22f8aa1e454d632b330b2386" +path = "../build/minified/site/de/books/admin_guide/13-softwares/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/admin_guide/13-softwares/index.html_br_16f72924efdc98b8c391983099681417089c3ba77edf4893499f9d9977a3010e" +path = "static-publisher/static-content/file677.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/admin_guide/13-softwares/index.html_gzip_4709bdc8f01a04958d7d5073b11de8e60fe55c57e86fb0a50d6e77267fdc11a6" +path = "static-publisher/static-content/file677.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/admin_guide/14-special-authority/index.html_256a462b6ba4f858e633d70e46f2aff151a4ba4f1a5786a1db63b0d155d11419" +path = "../build/minified/site/de/books/admin_guide/14-special-authority/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/admin_guide/14-special-authority/index.html_br_fb2936c06d970a2aea23500e93939b9bebccf8999f691fe3050ca862100531c1" +path = "static-publisher/static-content/file678.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/admin_guide/14-special-authority/index.html_gzip_0a1c99b47bead30f4636c9365ef92e3b6ab86a0e4738c41fe84fa0e4d1f58adb" +path = "static-publisher/static-content/file678.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/admin_guide/16-about-sytemd/index.html_c3dc889b2ebd77fcc611e457eab60890d1c01e139e5f7bc3c2dfcf416ce6654e" +path = "../build/minified/site/de/books/admin_guide/16-about-sytemd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/admin_guide/16-about-sytemd/index.html_br_85a84f8597812af2101cecb0b369baa604e0154da25d7ee7206b74004d977ccf" +path = "static-publisher/static-content/file679.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/admin_guide/16-about-sytemd/index.html_gzip_8a343ed6086230850b631468f650aa6669b9d6b80a21da31a2cf52911b24d41a" +path = "static-publisher/static-content/file679.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/bash_programming/01-Shell-overview/index.html_dd29e2440e5f58e13a97067f97f3fa1a011a60f43d36961e0075d5411f4b4d22" +path = "../build/minified/site/de/books/bash_programming/01-Shell-overview/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/bash_programming/01-Shell-overview/index.html_br_900b6335707293acd56029dd7706aa1d2a88428a21a5842c61d95d1fb99a68c2" +path = "static-publisher/static-content/file680.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/bash_programming/01-Shell-overview/index.html_gzip_aa330a9f5920314e8b884b2b2bdb25132dae0ce1d2563cafc925cd1990cbb95d" +path = "static-publisher/static-content/file680.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/disa_stig/disa_stig_part1/index.html_fe58273c38c7456b251455df9c7815201409670b65314c2efd774301ba636ff9" +path = "../build/minified/site/de/books/disa_stig/disa_stig_part1/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/disa_stig/disa_stig_part1/index.html_br_9a40295320a05699c6e58eaf44a571957be615d2ef62e05e7f43a94be880960e" +path = "static-publisher/static-content/file681.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/disa_stig/disa_stig_part1/index.html_gzip_7341a658e881f7cf5788baf198c47ea1c57d233a903f4e174d8f4671296352d4" +path = "static-publisher/static-content/file681.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/disa_stig/disa_stig_part2/index.html_a5b4f2239b0686472e7784c5231c0bbf44b0e60be4c95de094def5a7d0e2c2e0" +path = "../build/minified/site/de/books/disa_stig/disa_stig_part2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/disa_stig/disa_stig_part2/index.html_br_14b208e06d19c2afb3355d0acd31da0c2465c56e11e072312012567af3c973dd" +path = "static-publisher/static-content/file682.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/disa_stig/disa_stig_part2/index.html_gzip_7dadc6b0bc918c2d6d3e482a212bfff39a335d543b818b625518b4fe7dbab0e5" +path = "static-publisher/static-content/file682.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/disa_stig/disa_stig_part3/index.html_475784af7078214c309cf1410192dec5f057a7a0e23db58170e842c5d10bfe0b" +path = "../build/minified/site/de/books/disa_stig/disa_stig_part3/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/disa_stig/disa_stig_part3/index.html_br_ad2ac7ed415055213f5e5a1b2d2fb74363d183246dad7ee441316f4e2a301ef1" +path = "static-publisher/static-content/file683.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/disa_stig/disa_stig_part3/index.html_gzip_bfe6d909678ca5ccf84107d04985411e4e06146eddc4419d316a4f40f81f8fca" +path = "static-publisher/static-content/file683.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/index.html_1137877231142031c2a0ae697e057e43f025d386b9cc94365504c8633b37c12b" +path = "../build/minified/site/de/books/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/index.html_br_d1a2cf989fbc90588cece87c7d9560c5c03f205add8cf30e4ef7bc4ca4231944" +path = "static-publisher/static-content/file684.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/index.html_gzip_303bfa93bc7a83e040fc92744493b69cb8820c28ddb487d36ffc5613e8585e00" +path = "static-publisher/static-content/file684.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_ansible/00-toc/index.html_b64f25436bbf523688eb5bdd2d3bb9587665816e3749a4ad55701e171d102a5a" +path = "../build/minified/site/de/books/learning_ansible/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_ansible/00-toc/index.html_br_54d1c0f6d6d13fde04415721ac1969abda9849f745d91db78236b6eb9aa70289" +path = "static-publisher/static-content/file685.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_ansible/00-toc/index.html_gzip_3fec4dbf3b00b5231fa5d03348be2430d7227035fb5c14f15fb756890034472c" +path = "static-publisher/static-content/file685.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_ansible/01-basic/index.html_52d2478de133cffbf8b4892f33a3bdcc5bcfdc6859279e910d69a86e3f38ad57" +path = "../build/minified/site/de/books/learning_ansible/01-basic/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_ansible/01-basic/index.html_br_7a2e6a379d1fe057d014f0d43f9900c4c38f0d92489791f8dcd8266183b27467" +path = "static-publisher/static-content/file686.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_ansible/01-basic/index.html_gzip_b0a26a721beabdb7f082caff09f8cb062667d30ddfa18fdfb8013d4d9e3ec2ac" +path = "static-publisher/static-content/file686.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_ansible/02-advanced/index.html_437d3bd21bc998cfa246d9f872288f9ad277f9018f9ecb7dfa7009fd5a824ef2" +path = "../build/minified/site/de/books/learning_ansible/02-advanced/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_ansible/02-advanced/index.html_br_917585349faadeddf07d062d2d750430b6972dbaa9729eb82f5fde1cd43e1342" +path = "static-publisher/static-content/file687.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_ansible/02-advanced/index.html_gzip_ffb9cdda5357e59836990b1b3317eef63f554675dd1b9f4cb13426a26967bfad" +path = "static-publisher/static-content/file687.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_ansible/03-working-with-files/index.html_4e0e7cfb42e5e746af799f4c52c66d8856a2e271a847a77ee36d2fc5d89e2daf" +path = "../build/minified/site/de/books/learning_ansible/03-working-with-files/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_ansible/03-working-with-files/index.html_br_61f35eaedfe54edc90a239d03b26f13d559f43d7300336394e3e6e04abc965eb" +path = "static-publisher/static-content/file688.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_ansible/03-working-with-files/index.html_gzip_6fcd79252228675f4b4f5e9bdf0436dbd2471a4f9805cbf2fc311c8d19f23fd7" +path = "static-publisher/static-content/file688.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_ansible/04-ansible-galaxy/index.html_2a9609e59e28446d8c9c507a35a9d851cc7e48f44d08de5af94bc3f9f9ec6233" +path = "../build/minified/site/de/books/learning_ansible/04-ansible-galaxy/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_ansible/04-ansible-galaxy/index.html_br_c08f3c9334dfcbb23ab98142becb2da752e02a1299e75dbc0076ebc036a8992c" +path = "static-publisher/static-content/file689.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_ansible/04-ansible-galaxy/index.html_gzip_54c3cda35f3e1c6793149daedb6e4eed8c2187b9a8243c06c88aa201a64b4aa7" +path = "static-publisher/static-content/file689.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_ansible/05-deployments/index.html_56488d7228819c1a674a64ed45cf5665c04f102e59432336fea32fcadbd85096" +path = "../build/minified/site/de/books/learning_ansible/05-deployments/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_ansible/05-deployments/index.html_br_5173e812bcd7a5bd5ffc97d72c67c6dce85ef6173ec03484f11f21a8a2eedbc3" +path = "static-publisher/static-content/file690.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_ansible/05-deployments/index.html_gzip_86f8484b38f5a38496b74087bd757730cb41ba1272b22083191cdcd32ead7950" +path = "static-publisher/static-content/file690.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_ansible/06-large-scale-infrastructure/index.html_a4662ee5b786152f15e8a224a37cf22d77d542062dedf3d8b71347fa648be819" +path = "../build/minified/site/de/books/learning_ansible/06-large-scale-infrastructure/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_ansible/06-large-scale-infrastructure/index.html_br_8468a78e0f44b96807a7310d517fe1548144ea6af97ab0954e46167b7c149298" +path = "static-publisher/static-content/file691.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_ansible/06-large-scale-infrastructure/index.html_gzip_5fde0fe7cbb27cdc6fd616bcf499c137d06e9e72b7dbb9ee91c85afe521762a2" +path = "static-publisher/static-content/file691.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_ansible/07-working-with-filters/index.html_966415d090af46f8b57213591fbdba4fe9e9abbec516a6c912bfc0c1bc160362" +path = "../build/minified/site/de/books/learning_ansible/07-working-with-filters/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_ansible/07-working-with-filters/index.html_br_f744a9a0fa20a861f4e1a2dca46cd8a54002e5de1d357fc6e2cf4944eaa5afc4" +path = "static-publisher/static-content/file692.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_ansible/07-working-with-filters/index.html_gzip_3abe8e8953f422fdbb870137976538407d69183bb8300b81d42a48a10cf9ba83" +path = "static-publisher/static-content/file692.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_ansible/08-management-server-optimizations/index.html_d967d2c254973980b7c84eb289deb903bac6522feff21b9772fee3fcfb004b25" +path = "../build/minified/site/de/books/learning_ansible/08-management-server-optimizations/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_ansible/08-management-server-optimizations/index.html_br_3b6a5e5e7c7c173e000f80b05af0acde77b745d6dd35cef170b27bf522ce0dd8" +path = "static-publisher/static-content/file693.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_ansible/08-management-server-optimizations/index.html_gzip_850b4b089c3e6e9e886fb34940bd6957ec8c1a0a517aebeae6f06c4642c35aba" +path = "static-publisher/static-content/file693.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_bash/00-toc/index.html_80db311840fdadae63cfd352f4c3b91daa5ba70ddb609bdaf67afda3b05900cb" +path = "../build/minified/site/de/books/learning_bash/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_bash/00-toc/index.html_br_f9c323bfb674c493688803133389d31e77a3e156b4166359a26f6768a9ea48b3" +path = "static-publisher/static-content/file694.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_bash/00-toc/index.html_gzip_b8430c810a812ffeedde774a17ea92fec7e55d6e382962c2df27ca05184e1ddb" +path = "static-publisher/static-content/file694.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_bash/01-first-script/index.html_60482dd66091b162335a533436b8cad7e2a52629b57c64aef712cb047f34cfe8" +path = "../build/minified/site/de/books/learning_bash/01-first-script/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_bash/01-first-script/index.html_br_612543ba7633f2c150713c46202ae7307de32b4d465ecd0a1478563e09652495" +path = "static-publisher/static-content/file695.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_bash/01-first-script/index.html_gzip_b052341e1774885fd387b0c1d8f957b1101e2a31d5ee44bd7b600837b2db7443" +path = "static-publisher/static-content/file695.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_bash/02-using-variables/index.html_b5d65af591bcc3c6a7154214ba247e7531906bfe5f880175891967b39a187045" +path = "../build/minified/site/de/books/learning_bash/02-using-variables/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_bash/02-using-variables/index.html_br_cef25559cf3f1f5cdc90cb7c0d70f0d0edc41dadb3f921f67e5e9e0d9b8ac1a8" +path = "static-publisher/static-content/file696.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_bash/02-using-variables/index.html_gzip_6cb731e54cba456a218fcabee77815f4bfb61ae13abb7885a731089a384e813f" +path = "static-publisher/static-content/file696.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_bash/03-data-entry-and-manipulations/index.html_93d63d1f375f9755e6fffb961912b0fb37e64de0efb7fdff8a27fd34169fa171" +path = "../build/minified/site/de/books/learning_bash/03-data-entry-and-manipulations/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_bash/03-data-entry-and-manipulations/index.html_br_efdcdf72e4b92a4e199af985d5fbd4eacd11f56d6270e8f06f638178cbd42e64" +path = "static-publisher/static-content/file697.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_bash/03-data-entry-and-manipulations/index.html_gzip_da66eaa437836f802051b116d28830492450b4a99daff0d60e37a217ae93aa46" +path = "static-publisher/static-content/file697.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_bash/04-check-your-knowledge/index.html_28c4ad2caf88d0b0196efd48094a700b96efe21b91cfc0be3cfd20ff1829fbe9" +path = "../build/minified/site/de/books/learning_bash/04-check-your-knowledge/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_bash/04-check-your-knowledge/index.html_br_fb25d6371be1b329ba8d8229c96179280447344cc8bb7d09e50010f3e3b0d0a6" +path = "static-publisher/static-content/file698.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_bash/04-check-your-knowledge/index.html_gzip_30a9bed4bb09c18556740711585ff592fbf5f101c24d7004b3d8e14b63858c56" +path = "static-publisher/static-content/file698.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_bash/05-tests/index.html_c9eeca0874c6c98e71510eb8b623e4ecb4b5a8ce48edc76601b6df4902428f53" +path = "../build/minified/site/de/books/learning_bash/05-tests/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_bash/05-tests/index.html_br_f6bb8f2f01b5da82d60907ef63bdbdede78ecc3a039c32c61d1ae0aaedc3c696" +path = "static-publisher/static-content/file699.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_bash/05-tests/index.html_gzip_044f7b4398c67a3d778db22ccd5ef1ddf9a5e200b9a0b57c17992df353471f4e" +path = "static-publisher/static-content/file699.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_bash/06-conditional-structures/index.html_cbe259d54b7d4c51f6285e00e70dcf5f5df7d9f8ae0eae021fd3d00724abd761" +path = "../build/minified/site/de/books/learning_bash/06-conditional-structures/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_bash/06-conditional-structures/index.html_br_e80eb13fdb5669f54436980003e757e2a5d327eafb1fc352e42b82b466b176c3" +path = "static-publisher/static-content/file700.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_bash/06-conditional-structures/index.html_gzip_5a9c7aca5cc244a098823da63d931de82d623f6e55b7b04e3c218293216af015" +path = "static-publisher/static-content/file700.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_bash/07-loops/index.html_43d51608593a9ac54212e60f6d5681967741df03ff51c2080c757f72a7c64a57" +path = "../build/minified/site/de/books/learning_bash/07-loops/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_bash/07-loops/index.html_br_24e65b520f97aa092df9d19aff27533392e1918a9216d2abe8c802eb1051201d" +path = "static-publisher/static-content/file701.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_bash/07-loops/index.html_gzip_d241f470d9c1000f458e52c5a7d2a7efb9a095a89e49f47d95a52588d10ec5ca" +path = "static-publisher/static-content/file701.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_bash/08-check-your-knowledge/index.html_e38f8d2927a446885ee91a03deb7f3ad1605b6e445c0ea1e8edec9deb0b045b0" +path = "../build/minified/site/de/books/learning_bash/08-check-your-knowledge/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_bash/08-check-your-knowledge/index.html_br_5529bcb61cd76737db1cbdcf001c982410a7f77c2d68ecb078f28534f4bd8f59" +path = "static-publisher/static-content/file702.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_bash/08-check-your-knowledge/index.html_gzip_02384e0412c4ce4c074ec6557da223a54c57bf177c2e7377d97eeb9c5222d8cd" +path = "static-publisher/static-content/file702.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_bash/appendix/02-variables-logs/index.html_7004325475c5184ef652c9db88c4c3a6c7b959923fa35903f23301fc86db5eb2" +path = "../build/minified/site/de/books/learning_bash/appendix/02-variables-logs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_bash/appendix/02-variables-logs/index.html_br_8f6ae661cd2cd7dd6b4dedd4509ae8c562e7edd6548db1b9f1284253991e294d" +path = "static-publisher/static-content/file703.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_bash/appendix/02-variables-logs/index.html_gzip_87dbc51acebd366c6b65fdbec0f0b6d7bebbf75b137430f7a15f18754445bed8" +path = "static-publisher/static-content/file703.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_rsync/01_rsync_overview/index.html_3dff7409714ce663d01b46f2b6dab683781a060be925e64d1f6452e331e400bc" +path = "../build/minified/site/de/books/learning_rsync/01_rsync_overview/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_rsync/01_rsync_overview/index.html_br_437c9f430ad34e2c2b9bb5634560dd1443fac5cd9e8d12369eac9285bf2d2050" +path = "static-publisher/static-content/file704.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_rsync/01_rsync_overview/index.html_gzip_68619f60de899e9d2dc0a579261a80b823c34b95f6868bb86bedaedb18ca4cbb" +path = "static-publisher/static-content/file704.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_rsync/02_rsync_demo01/index.html_d0fe3552cf0f0ccfa08358bd8abf460b89738549b5acbcdfae81d5907c970f61" +path = "../build/minified/site/de/books/learning_rsync/02_rsync_demo01/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_rsync/02_rsync_demo01/index.html_br_4e2bad28f2d33abbc4257bb2b4c82044774cf37287d35161d9c0e68a8c395dc9" +path = "static-publisher/static-content/file705.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_rsync/02_rsync_demo01/index.html_gzip_070e3db47aa78854fdfdd621d665bd6c076da8e5a2cbaafc3d4aa11887c1d330" +path = "static-publisher/static-content/file705.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_rsync/03_rsync_demo02/index.html_872b082065c20d0df833d8292a51ab52690c680430b9bf5b46456c7a6407559e" +path = "../build/minified/site/de/books/learning_rsync/03_rsync_demo02/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_rsync/03_rsync_demo02/index.html_br_4b7d8e84648f0f76f007694b63248b72dcf393be4fcb584de0603e17837ee42b" +path = "static-publisher/static-content/file706.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_rsync/03_rsync_demo02/index.html_gzip_f3cdba66c983bf6c52a17371b744b50966b2f0ec3098f2b62aed98e08c411569" +path = "static-publisher/static-content/file706.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_rsync/04_rsync_configure/index.html_41f84f8e1b82554957fffd990e5a46aceba19ab8c4adc3edbb301d0affdd9ee7" +path = "../build/minified/site/de/books/learning_rsync/04_rsync_configure/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_rsync/04_rsync_configure/index.html_br_237a3408b098c9f25947f120d485257488a5f74154b9760573c49cd145a9e344" +path = "static-publisher/static-content/file707.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_rsync/04_rsync_configure/index.html_gzip_9ffd83761814d25c7c22d08e5821e8962d1ec975f03b745c0dd5d5a454fb00e1" +path = "static-publisher/static-content/file707.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_rsync/05_rsync_authentication-free_login/index.html_843f6fa6ee774aae007d91aac15c38c8ec34fec3b1c6dafd0be7734abf359026" +path = "../build/minified/site/de/books/learning_rsync/05_rsync_authentication-free_login/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_rsync/05_rsync_authentication-free_login/index.html_br_ec3676f0d981d6f2144e61a85d1276d501d07a151e9e1bedf986880b052ee6c6" +path = "static-publisher/static-content/file708.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_rsync/05_rsync_authentication-free_login/index.html_gzip_42a43b257d6a56e739ec69665181bf3c36ed7dc501f30851cd48e377f2522953" +path = "static-publisher/static-content/file708.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_rsync/06_rsync_inotify/index.html_7fcecbb027b5cda0ffefce156e3a26044a96fe9d2b2d5bfab2b40875b92b284a" +path = "../build/minified/site/de/books/learning_rsync/06_rsync_inotify/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_rsync/06_rsync_inotify/index.html_br_ac1f2f1770cc3672f4969e0b62ca858486b095d61161abee6c7eb0145d1bdecd" +path = "static-publisher/static-content/file709.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_rsync/06_rsync_inotify/index.html_gzip_e5f01b71309739c4d4df0dff81ead87dec15d3b15b37ed7b23c32f8c853854d8" +path = "static-publisher/static-content/file709.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_rsync/07_rsync_unison_use/index.html_877a2eb9ed7386c69bc1a5f811b1015ab1282c42444cc9879f4ea9c8968ab5d1" +path = "../build/minified/site/de/books/learning_rsync/07_rsync_unison_use/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_rsync/07_rsync_unison_use/index.html_br_131e5df7f0357ab590e2f66c6dc12e9ac42dcbc89ee65b1d305320f2e60a0f0b" +path = "static-publisher/static-content/file710.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/learning_rsync/07_rsync_unison_use/index.html_gzip_2f18509896eb0dc5f391342d33c880c705b5fa42193b6af37b44a20e733c94b9" +path = "static-publisher/static-content/file710.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/licence/index.html_7fd792222c4ac2c99fc2200c4b63cf35931fa406a0a4d16df9a11d322c6a1fd2" +path = "../build/minified/site/de/books/licence/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/licence/index.html_br_93d3dc86f87698b0d921d41ee5e0c7850ba5fcb3712112af29580be06473faab" +path = "static-publisher/static-content/file711.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/licence/index.html_gzip_4ee3b155b7ef01ec54059ebb865922d77cebfca04b00cd49bb9c0c3f5bc18f99" +path = "static-publisher/static-content/file711.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/lxd_server/00-toc/index.html_d0f5038091a741a349769f5339fc10806eb5c37e62f92300f3b77fa8dc047bfd" +path = "../build/minified/site/de/books/lxd_server/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/lxd_server/00-toc/index.html_br_9c388b9d293535c35710dbe35b069b16ff4c083f832992c31aa704356bd6545f" +path = "static-publisher/static-content/file712.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/lxd_server/00-toc/index.html_gzip_d6e7441de19b5a0bb0477e7b5538bc7b201af28d4e74eef0b99f050b9491133e" +path = "static-publisher/static-content/file712.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/lxd_server/01-install/index.html_31a8c0f472c594146ed0c0b914a660f223c5c5d71ae1bd186673cc2d8ac8a356" +path = "../build/minified/site/de/books/lxd_server/01-install/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/lxd_server/01-install/index.html_br_e0942a373f6cb1404b74ff81b6b5a1b4e824b5b6a0b37b5d0a56086b429c6b1d" +path = "static-publisher/static-content/file713.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/lxd_server/01-install/index.html_gzip_e71a97135a3233f6074e2ffc4c3ce1fb718afe6d232edc097ae90f10233f7a04" +path = "static-publisher/static-content/file713.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/lxd_server/02-zfs_setup/index.html_915f9885ab7d25bd6be588106f05c0a242b25b375d1b4239b736b81ad9aad020" +path = "../build/minified/site/de/books/lxd_server/02-zfs_setup/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/lxd_server/02-zfs_setup/index.html_br_3f4e3c1a8a353d280805ed59404f95dd04fb8b7f89f89ef07d24b4902da5197e" +path = "static-publisher/static-content/file714.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/lxd_server/02-zfs_setup/index.html_gzip_55c082a4a272bf7e6bbd16d2c84535b7418f95af3b0d83632d895d56fe5081c7" +path = "static-publisher/static-content/file714.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/lxd_server/03-lxdinit/index.html_d5fcabf6386a05b71b6e3bf0f6ef6b21141033204eda6da9188b457d687659b0" +path = "../build/minified/site/de/books/lxd_server/03-lxdinit/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/lxd_server/03-lxdinit/index.html_br_15522f4c548b7e3460afee0f2f38e23eaff6993c91ce78f006df39f532e70c1e" +path = "static-publisher/static-content/file715.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/lxd_server/03-lxdinit/index.html_gzip_98c198e3d3c965297bbc313129ccadfe8eb783409b292c52db297a1e598413f7" +path = "static-publisher/static-content/file715.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/lxd_server/04-firewall/index.html_8a7c461b7c8fe9dd9bf8134b418f89235db31cc5ebd8643592fc727ae2ce8a63" +path = "../build/minified/site/de/books/lxd_server/04-firewall/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/lxd_server/04-firewall/index.html_br_43773116043316a410f6b1b3526da344a6c98a03a3797321c24d55cd1ed68b61" +path = "static-publisher/static-content/file716.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/lxd_server/04-firewall/index.html_gzip_d005ba8608510c197bbeb014275cf09341863662deb224fbcc77360b4716ab44" +path = "static-publisher/static-content/file716.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/lxd_server/05-lxd_images/index.html_e256a8fb4c21ed0f2c820b7c79cd43d1d671cbb5e8bc684514eacf09fb6425ed" +path = "../build/minified/site/de/books/lxd_server/05-lxd_images/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/lxd_server/05-lxd_images/index.html_br_b555208503c72a813bb93a954744e70097e9b731f511a1f456002447f3194888" +path = "static-publisher/static-content/file717.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/lxd_server/05-lxd_images/index.html_gzip_98d50ac46463c40552ba78593d1f1de38fb868d22eadc33670653e5e628d5bf4" +path = "static-publisher/static-content/file717.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/lxd_server/06-profiles/index.html_4d13958e450282a29b654122e35f00261502f8a75a533d61bf5b9734d17ff90f" +path = "../build/minified/site/de/books/lxd_server/06-profiles/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/lxd_server/06-profiles/index.html_br_f2f8a9a2c2d6a0be1f81223486c832c432295caaaa39eddde9bf83b924b47c12" +path = "static-publisher/static-content/file718.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/lxd_server/06-profiles/index.html_gzip_5c218329339a6815748791037b950327e02eac708d96a9e31d602dba05c43908" +path = "static-publisher/static-content/file718.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/lxd_server/07-configurations/index.html_8566bfedbf631a31b080d5e890c252cc063bf6436af64e371170cb4812bd1fe3" +path = "../build/minified/site/de/books/lxd_server/07-configurations/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/lxd_server/07-configurations/index.html_br_547b2e2c3c3095cc685c07d6408a451773001ffee78bfcb330abcc73ec44de30" +path = "static-publisher/static-content/file719.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/lxd_server/07-configurations/index.html_gzip_c7ec64af0b5496214668944d01a3566c13efabc56172a3de16c349d4f0cde8d8" +path = "static-publisher/static-content/file719.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/lxd_server/08-snapshots/index.html_90cbd0587dc7f1ab645fde628a025b470cc374fad82820edbf5f5c68bf71baac" +path = "../build/minified/site/de/books/lxd_server/08-snapshots/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/lxd_server/08-snapshots/index.html_br_e323a1d8cf01a14007ca1f46c4f85123cde7350e2392c7e63604217685b9f9a4" +path = "static-publisher/static-content/file720.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/lxd_server/08-snapshots/index.html_gzip_6e592ac27ca58ec1436a5a1fc16aea3c34e693f8253c9b8061b55286f9db213c" +path = "static-publisher/static-content/file720.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/lxd_server/09-snapshot_server/index.html_89ddbe4e54ef00aa1e57f523be3eec5ae3afc7fedaee322b160aa9ac1c6ccf58" +path = "../build/minified/site/de/books/lxd_server/09-snapshot_server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/lxd_server/09-snapshot_server/index.html_br_4aaa40a08a719ddd44731aa39eb1388a5bc412f1f2690ebc0038e6d4d52ac180" +path = "static-publisher/static-content/file721.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/lxd_server/09-snapshot_server/index.html_gzip_6219a3a85826e043e929428d3b074359c7b58debd9231a3ea3e145df21373f40" +path = "static-publisher/static-content/file721.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/lxd_server/10-automating/index.html_946038ccbe25ad1eac3cbb94c83f30f4f6f1a172da19cebb0d0aed865b9f4d5a" +path = "../build/minified/site/de/books/lxd_server/10-automating/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/lxd_server/10-automating/index.html_br_a69acb6977c3a5504624972bf2d1f2d474e92b9c3c6f0b8a1a41304d2887d440" +path = "static-publisher/static-content/file722.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/lxd_server/10-automating/index.html_gzip_16a8df6e5f5cd2dd64e3253c19e1dfa1f666a24d665174a0f50e5e7a5195e51d" +path = "static-publisher/static-content/file722.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/lxd_server/30-appendix_a/index.html_36240a3a70b510146d794d09a3591f0cb136e16f972fc971a4be477e106f44f5" +path = "../build/minified/site/de/books/lxd_server/30-appendix_a/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/lxd_server/30-appendix_a/index.html_br_5baac1823904e0b1bf0056672fa8be8b6be5613a1c0ad9ab31587cd8f7ae7c54" +path = "static-publisher/static-content/file723.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/lxd_server/30-appendix_a/index.html_gzip_b95babb1567058f7c3f57029d4bff6ebda7313c2d8778a3cb9fad45f271be363" +path = "static-publisher/static-content/file723.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/nvchad/additional_software/index.html_3d27aa28adf99a3eae2069a864bfc477b47e28f9a497fa7dde4d31ac5dfdf8ca" +path = "../build/minified/site/de/books/nvchad/additional_software/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/nvchad/additional_software/index.html_br_00f722f28d826f496552ed5684003e6c543847ced32e5fed0cbc1dea76f4ff9d" +path = "static-publisher/static-content/file724.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/nvchad/additional_software/index.html_gzip_8989ac9ff646a418c17f97476e4498b4ea0b26c1f8d8a6bf551347b6adc722a8" +path = "static-publisher/static-content/file724.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/nvchad/index.html_22c1a07f7e2f409144b0b92b0213cc5e05a9ff01cca2a57f939bab67bad22e42" +path = "../build/minified/site/de/books/nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/nvchad/index.html_br_8c33ef81f6e554e251962a5170e41d1ee01c4b940f98dbd9613cd2378cb12f77" +path = "static-publisher/static-content/file725.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/nvchad/index.html_gzip_e8e0a5fed4fd9ed609c7fe06e92c62788745f53f8e497a2309ed97397d7dc199" +path = "static-publisher/static-content/file725.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/nvchad/install_nvchad/index.html_eec9925418bea1d793d1d54e07a2ff450bdf83236f4916a197278e8062e2a33a" +path = "../build/minified/site/de/books/nvchad/install_nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/nvchad/install_nvchad/index.html_br_2502433ae6ebd1729b33e43dd1ba87d08d702acd8aa86ea63d8935561b2e0070" +path = "static-publisher/static-content/file726.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/nvchad/install_nvchad/index.html_gzip_ec6f2a972b2468d3da99767e8665115c37fec5b51736926f4af671fd0b3e1286" +path = "static-publisher/static-content/file726.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/nvchad/install_nvim/index.html_3511bf1e2312cdbf8d3d3f89d8c1554fc08512521fef56b7c2d7cd9beb08ef34" +path = "../build/minified/site/de/books/nvchad/install_nvim/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/nvchad/install_nvim/index.html_br_653bb872a83944ba614a122ca7f0dee8eadf04b02b6fdff504d743ba396ea626" +path = "static-publisher/static-content/file727.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/nvchad/install_nvim/index.html_gzip_e0d2ca1180589238a80643941c824381012779ca88d96b75d91ab15f3fe7d673" +path = "static-publisher/static-content/file727.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/nvchad/marksman/index.html_935ab4ca41a2da15955831130cbc99dc7568c7e33858d32d3671214f5032b248" +path = "../build/minified/site/de/books/nvchad/marksman/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/nvchad/marksman/index.html_br_71fff62f33064e4f5c0b77c8a126ea94eb731d1567ca97bc80fcd3ef28b8a1e6" +path = "static-publisher/static-content/file728.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/nvchad/marksman/index.html_gzip_90eef9605820ab68e21c5a69c896a1f87ca99467cc3bc7c236c5cd374af271b6" +path = "static-publisher/static-content/file728.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/nvchad/nerd_fonts/index.html_f1018114fb32152ded0f05177eaa13228c78891ab88062debb3af93cb3d07a06" +path = "../build/minified/site/de/books/nvchad/nerd_fonts/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/nvchad/nerd_fonts/index.html_br_e66c1adee9e8d64e351e35e6302e144fda8f448514d9964e108998be69b518bf" +path = "static-publisher/static-content/file729.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/nvchad/nerd_fonts/index.html_gzip_af2560a986004ef326526c05e01ed9a07d698d3334266b0606f65ab3e3ebec0f" +path = "static-publisher/static-content/file729.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/nvchad/nvchad_ui/builtin_plugins/index.html_6b5ec06825e15d99caf709422fb516ff995542564b6a035ca7a872018f393c03" +path = "../build/minified/site/de/books/nvchad/nvchad_ui/builtin_plugins/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/nvchad/nvchad_ui/builtin_plugins/index.html_br_91aae442c99659fc5a8c7365af4901947866b202138aa1bfefd96cb1915aa59d" +path = "static-publisher/static-content/file730.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/nvchad/nvchad_ui/builtin_plugins/index.html_gzip_57b39b13abc0c7b7299557da1feffe6c5562445d6155c435d520780d03c65c9c" +path = "static-publisher/static-content/file730.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/nvchad/nvchad_ui/nvchad_ui/index.html_5195448b388e7a7a65955420b7a7570c384fcb25461911fe777355ecc9acf175" +path = "../build/minified/site/de/books/nvchad/nvchad_ui/nvchad_ui/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/nvchad/nvchad_ui/nvchad_ui/index.html_br_13396173ee33b96a02e1e7890a16ffa807edae0138ace9f4f5ae6f719a1a18ad" +path = "static-publisher/static-content/file731.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/nvchad/nvchad_ui/nvchad_ui/index.html_gzip_50e0320dfb3dd285c44014a53d1062c6b804c36bed434834d881a8c70a00c37d" +path = "static-publisher/static-content/file731.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/nvchad/nvchad_ui/nvimtree/index.html_c2d655df5420629cfcbf6b3fef25518c69dea4e782aefe17930933fbbf22c590" +path = "../build/minified/site/de/books/nvchad/nvchad_ui/nvimtree/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/nvchad/nvchad_ui/nvimtree/index.html_br_123c18baf9298c25c839bb1abfbe5a3c1bee5b6348ad9c097ed520261a310a83" +path = "static-publisher/static-content/file732.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/nvchad/nvchad_ui/nvimtree/index.html_gzip_759b9e9311b9e22d06cc889ce4d0ba9d083492110e30809bbc6c0bde9e231a2f" +path = "static-publisher/static-content/file732.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/nvchad/nvchad_ui/plugins_manager/index.html_da99a5674539f274ab2ab64bd615dbf779364a32d0ee1e2344f1706ef6e8e235" +path = "../build/minified/site/de/books/nvchad/nvchad_ui/plugins_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/nvchad/nvchad_ui/plugins_manager/index.html_br_b0c2e9ac16d9c242b750bb761127764de1335e27b470969e73efea98523bb963" +path = "static-publisher/static-content/file733.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/nvchad/nvchad_ui/plugins_manager/index.html_gzip_ba9acfc9213c4e0f998537cbcd7b3c2da6470c7cc624402f0856b3d581f46dc1" +path = "static-publisher/static-content/file733.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/nvchad/nvchad_ui/using_nvchad/index.html_a9d5399953ec7def79b4db2ac4106b62faf9b928bb7300edf61f50e38eebd7c3" +path = "../build/minified/site/de/books/nvchad/nvchad_ui/using_nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/nvchad/nvchad_ui/using_nvchad/index.html_br_e3ac0977b1fec57d884a0e5ab9075c7c3306375296da6d6ee3562106edbc88f2" +path = "static-publisher/static-content/file734.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/nvchad/nvchad_ui/using_nvchad/index.html_gzip_4dd938d51d41ed1e85277ffa76914edfd4b252e2634e7ed3ab65aa75c98bbbcb" +path = "static-publisher/static-content/file734.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/nvchad/plugins/index.html_dbf386686d7bf412204adc00ea00c49941ff83d256760c1ceb560bccd3a21110" +path = "../build/minified/site/de/books/nvchad/plugins/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/nvchad/plugins/index.html_br_48aa1659fce4be26f540687957660375d61028ecea5ead9c55b607b28c88d4d6" +path = "static-publisher/static-content/file735.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/nvchad/plugins/index.html_gzip_f7a83b5dec878bedab5089cf472575b26525c5d9985e853485600d5df2fafeb4" +path = "static-publisher/static-content/file735.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/nvchad/plugins/md_preview/index.html_fd34b03698aa8f1b57dc6c6c5b6b36c2fac6233b2c0b55725bc54447a2565d6d" +path = "../build/minified/site/de/books/nvchad/plugins/md_preview/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/nvchad/plugins/md_preview/index.html_br_2cb982acca72cccc3c32c0e7167d31065006ed223b20b49fa472810f5be7140b" +path = "static-publisher/static-content/file736.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/nvchad/plugins/md_preview/index.html_gzip_2dd7af8a4274da24e2f64df4a824a342cef03cbde720e30a07b9c699fe2d83ce" +path = "static-publisher/static-content/file736.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/nvchad/plugins/projectmgr/index.html_03a3e281a409b52a76790622f89b65c0786d0fb6142129e1c8be3dbca76a4663" +path = "../build/minified/site/de/books/nvchad/plugins/projectmgr/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/nvchad/plugins/projectmgr/index.html_br_99cf6b45bb1f9b4b479b256b4a17b11db814c9b96f9231f4728877278824ff2a" +path = "static-publisher/static-content/file737.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/nvchad/plugins/projectmgr/index.html_gzip_8aad6cd8ffdfcae406f49e8afa847604bfa0807528fd0cc5b1832aada353eb31" +path = "static-publisher/static-content/file737.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/nvchad/template_chadrc/index.html_616acaf1f2a1439e9fd6f8ab0ac1d3239a9be396065c9e3cd224c70f0dda30f9" +path = "../build/minified/site/de/books/nvchad/template_chadrc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/nvchad/template_chadrc/index.html_br_6f79eba7aa40bb427243d88d3b588fcb29e33f3fbef42e8fe8b71013a9e14594" +path = "static-publisher/static-content/file738.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/nvchad/template_chadrc/index.html_gzip_f410eae581f84c4e16f77f1eead584ffba12b6dd3bea8f2ee15768223a99432a" +path = "static-publisher/static-content/file738.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/nvchad/vale_nvchad/index.html_cde4d3c4c95a9dfa04622e1b29cd2719a333ff963166b478b2c1ffbfaba73459" +path = "../build/minified/site/de/books/nvchad/vale_nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/nvchad/vale_nvchad/index.html_br_bbee382c321c8dfcf2b6f045378403c900405ff006c46a5d8b8d4b02cbd07aa7" +path = "static-publisher/static-content/file739.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/nvchad/vale_nvchad/index.html_gzip_6d726e515b7c6cae5687f031dddbaefe76708fd0b01ae42515a411d05bcde3e3" +path = "static-publisher/static-content/file739.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html_9cb7ccd07e0370d2f13d1ba68b3c485bb1f7779e03a7c0393df9506efde6e4fb" +path = "../build/minified/site/de/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html_br_17962928049f80971d960d13a6ae72a350f56c87e1a99e86e733aae28a551106" +path = "static-publisher/static-content/file740.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html_gzip_98a281fb02154580d6dc456a3c2675036b55b10b40c2f914eab0502d4459714d" +path = "static-publisher/static-content/file740.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/sed_awk_grep/2_grep_command/index.html_6de8ddd3ff996490ee438e1941e65cc3826eb73242c294d76f82ab86fe6c8e0a" +path = "../build/minified/site/de/books/sed_awk_grep/2_grep_command/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/sed_awk_grep/2_grep_command/index.html_br_d3a12fc11219d87f6e2cdbd9b09d327c31bc198393233587830618a56b5d7b27" +path = "static-publisher/static-content/file741.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/sed_awk_grep/2_grep_command/index.html_gzip_445dbb59824e0806d43a9b9d46269719ccdd22b8e2f291386c8cb85aefc39b96" +path = "static-publisher/static-content/file741.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/sed_awk_grep/3_sed_command/index.html_f9f4b32229d82003b980fed19612a9b51eb291d18b61808706fa7935e6a89017" +path = "../build/minified/site/de/books/sed_awk_grep/3_sed_command/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/sed_awk_grep/3_sed_command/index.html_br_95d747f8d88e998cfc07d6050000576b8bc51783db488f766881b28f039b449e" +path = "static-publisher/static-content/file742.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/sed_awk_grep/3_sed_command/index.html_gzip_a1427445925a857b7b462475f2ba52476923ab2c59a8bcd7b311dcd18e7cbfd1" +path = "static-publisher/static-content/file742.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/sed_awk_grep/4_awk_command/index.html_af1ed10528bf7babacce2564d0eb69671e9c85604772d39b81185f6fdcc0497a" +path = "../build/minified/site/de/books/sed_awk_grep/4_awk_command/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/sed_awk_grep/4_awk_command/index.html_br_fef0049ed4349e9c6e37a63f837f47cd6a5c07c2c30c94b125c3a54a253161f3" +path = "static-publisher/static-content/file743.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/sed_awk_grep/4_awk_command/index.html_gzip_251bfb505bf39733a595790e9a9532237407b0c297e12f19a307e516c4905578" +path = "static-publisher/static-content/file743.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/sed_awk_grep/index.html_096fafa7890df68d1dad847a32e11ec8ffc43aaf5413d1c42a5fb395f491fb5c" +path = "../build/minified/site/de/books/sed_awk_grep/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/sed_awk_grep/index.html_br_df3a6c9f48ed3f4786f41c019632820a2fe86573c21602daae2a8c7c96ae604e" +path = "static-publisher/static-content/file744.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/books/sed_awk_grep/index.html_gzip_dc7635964442376e347c673a376706f88f965b4fab52d7ea480be0dddb17c46d" +path = "static-publisher/static-content/file744.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/containers/docker/index.html_0bb6c51b999148da776d7bb0edf404fb64af91414c58b451de5e0f26f0d08155" +path = "../build/minified/site/de/gemstones/containers/docker/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/containers/docker/index.html_br_472390fea12541a6c03548f1b08f9ac36e92e6bf03290692e01bbb77edf68acc" +path = "static-publisher/static-content/file745.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/containers/docker/index.html_gzip_679a65eb1ef9ea290a4e5dca51570652d660d18e1c67d567294fadb1c9bd657d" +path = "static-publisher/static-content/file745.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/containers/podman/index.html_ef52c07a6808eb0a8a4fbc504f3906c26e3c9047568ba9ee7b4fa7ca26cf71e3" +path = "../build/minified/site/de/gemstones/containers/podman/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/containers/podman/index.html_br_952313f89190f8c0660c925e878b54648d8ff4fb62f03cfa8fe1bd4bd3126990" +path = "static-publisher/static-content/file746.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/containers/podman/index.html_gzip_90e177ba3b966d6dedbc51e206a0dd47d3f95fa1acb56b28df5878adbb3ad854" +path = "static-publisher/static-content/file746.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/core/view_kernel_conf/index.html_ab6deca63ca85113840922e89882ea889ef9899e22652c4a415b6ff2365601c3" +path = "../build/minified/site/de/gemstones/core/view_kernel_conf/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/core/view_kernel_conf/index.html_br_3033d30daabd96787094c80f6039db9d7ebf271d64a951f644ff34fc549c143a" +path = "static-publisher/static-content/file747.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/core/view_kernel_conf/index.html_gzip_aa688bbc3a420601617ad59fa8d774a7ea7d59a6187ddea52b8ada45d9158dc9" +path = "static-publisher/static-content/file747.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/dnf-swap/index.html_a5a42928a5d28afb9f5011189a5c6d070ef7a17653794db82d756fd9ae1ec8cb" +path = "../build/minified/site/de/gemstones/dnf-swap/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/dnf-swap/index.html_br_6f1f446725409526491d87eeea9740743f7fd4c77c7f6101136448a3a09bb961" +path = "static-publisher/static-content/file748.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/dnf-swap/index.html_gzip_bc9323df88015a7f8ccd698b0b5cb58a3725b2abcf3996e60526b6884b581b72" +path = "static-publisher/static-content/file748.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/gemstone_template/index.html_93c92c2a2d572f00588b93e4811e1db10ed19825f9aae1f923a5b9c6666ea553" +path = "../build/minified/site/de/gemstones/gemstone_template/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/gemstone_template/index.html_br_f549b3e5e9d4eb3091a618ccf8f21256a10a005dce52a95fc7e469a7f5d89658" +path = "static-publisher/static-content/file749.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/gemstone_template/index.html_gzip_4b17f68be687288187d1d1d0b4c937c2cbb440aaf369278bbd91d2d7e2d0d53e" +path = "static-publisher/static-content/file749.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/git/00-gh_cli_installation/index.html_327aacf1f4d6191aa07bcf09e25c7288d35c5e1794c4666d1448e7a2107283a5" +path = "../build/minified/site/de/gemstones/git/00-gh_cli_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/git/00-gh_cli_installation/index.html_br_17482dc0bbe16b8455acd2d9fb73dc7275dcdbb474471784f821f19eeb8005e7" +path = "static-publisher/static-content/file750.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/git/00-gh_cli_installation/index.html_gzip_650f52a1e0e7602b194c5b44eacce4775888dcaa32e5ea48b068e510d64b7f85" +path = "static-publisher/static-content/file750.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/git/01-gh_cli_1st_pr/index.html_e8ca25ac0175948f84f09897b9ac94e8adb8c4eedfdb0b54a4023fb5fb4e6fb5" +path = "../build/minified/site/de/gemstones/git/01-gh_cli_1st_pr/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/git/01-gh_cli_1st_pr/index.html_br_be82218a2531a85f985598446c77a5efe70585c9a266d13f5ab4b926eb53acac" +path = "static-publisher/static-content/file751.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/git/01-gh_cli_1st_pr/index.html_gzip_fcb894c9602ff22b3d41470631c061cf5dcb7ac003c3816ac0cb4ca997111981" +path = "static-publisher/static-content/file751.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/git/02-gh_cli_edit_pr_title/index.html_9a228b09e895733ca8cc9b464ccd032293b73e3431284231b9ccfbc126245a69" +path = "../build/minified/site/de/gemstones/git/02-gh_cli_edit_pr_title/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/git/02-gh_cli_edit_pr_title/index.html_br_6fafd33085a2c02f70496f41eaa05bfa233fa708f1054e6deac8015c15a6e54a" +path = "static-publisher/static-content/file752.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/git/02-gh_cli_edit_pr_title/index.html_gzip_850740925ac5b6cb64e6938f9ffb02c33fee3a57e33250feb98cbb4dfd167931" +path = "static-publisher/static-content/file752.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/git/02_github_web_edit_pr_title/index.html_9ef54d3fd98bc300585e0ff10e15f7696ac8c74061a0c8f9356f0a9e4cbc9f3c" +path = "../build/minified/site/de/gemstones/git/02_github_web_edit_pr_title/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/git/02_github_web_edit_pr_title/index.html_br_71820608ec2d8449d3443b91339f43d6a1850561d73d081e12b223dfbbf5db59" +path = "static-publisher/static-content/file753.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/git/02_github_web_edit_pr_title/index.html_gzip_392ab03b6deb1f4cae92ee0d698153c9b513f9de1763f085d7e2fd1f31cbc867" +path = "static-publisher/static-content/file753.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/git/feature_branch_workflow/index.html_d821116c7a715a2039a24f33495ed56e5f7c87906712c96196a95426785ab6b9" +path = "../build/minified/site/de/gemstones/git/feature_branch_workflow/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/git/feature_branch_workflow/index.html_br_d42a19d740668bee92c5938de6a1b379a9ee18027866d6b10a4609c933bd0130" +path = "static-publisher/static-content/file754.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/git/feature_branch_workflow/index.html_gzip_2646e77a4c7a39a2c8d56876fb9f92190f9c0e9a64f8bc20ed7f19d09fc1fcea" +path = "static-publisher/static-content/file754.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/git/fork_and_branch_workflow/index.html_41f7cedb08daefc8d35a017069309708268744576a2f47891bd1c2cee258cb22" +path = "../build/minified/site/de/gemstones/git/fork_and_branch_workflow/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/git/fork_and_branch_workflow/index.html_br_68c16b14e87dfbde3337a6a7d33affe288ae6ec513bdf1d710fd247f8673ef95" +path = "static-publisher/static-content/file755.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/git/fork_and_branch_workflow/index.html_gzip_d546f8930908abe003b6e8450b23134c019d9ef51edb651776b13a92249e97d5" +path = "static-publisher/static-content/file755.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/git/git_pull_vs_git_fetch/index.html_027afde6888414fd8868d18093e618ffd450b2a3612cd5f767e84c7bc380b4fd" +path = "../build/minified/site/de/gemstones/git/git_pull_vs_git_fetch/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/git/git_pull_vs_git_fetch/index.html_br_ea51642f0bf3a84ecbcc11ba4285f33b32edc389826eaca4757348bf3c7cfe3b" +path = "static-publisher/static-content/file756.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/git/git_pull_vs_git_fetch/index.html_gzip_22b0a9199361d14156b01277ece5a3ec32851031b80eb67bca9e8aa2894d1a1f" +path = "static-publisher/static-content/file756.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/git/git_remote_add/index.html_d54e3d7fbba7d0015d2759b6747140abbf4f08c684b9f447b0c2d1a3bd694823" +path = "../build/minified/site/de/gemstones/git/git_remote_add/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/git/git_remote_add/index.html_br_12c06229760500be6bfbb3f5cd86fefc375a16221e8471b2bc5ca842cdac0efd" +path = "static-publisher/static-content/file757.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/git/git_remote_add/index.html_gzip_0934f73533f59af707a5a40a47448ca3dbd85d478b640df250651cca776b9285" +path = "static-publisher/static-content/file757.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/git/tracking_and_nontracking_branch/index.html_3c22ed3adbf1bb4114ac8389caf7f405a28e0ecf61a46ef7c52f6a15d90abd1b" +path = "../build/minified/site/de/gemstones/git/tracking_and_nontracking_branch/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/git/tracking_and_nontracking_branch/index.html_br_84533f4d999d984e8ba39611eab2fcb2e96fd64326e2168a5d935e6d26b5d76c" +path = "static-publisher/static-content/file758.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/git/tracking_and_nontracking_branch/index.html_gzip_77fbb26b397aff924d0749332610896b0192197987c7ac7b0ddf35c560e06b6e" +path = "static-publisher/static-content/file758.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/htop/index.html_da571a74a2ef4ff16265ce7c2b86ff475ae4a2c25e9576a910f18a1b09a662dc" +path = "../build/minified/site/de/gemstones/htop/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/htop/index.html_br_fe067dbe3cf3c3e37ae48b0f5dcf88d48c811fd1d163a6d72c9a3083cbfb87cf" +path = "static-publisher/static-content/file759.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/htop/index.html_gzip_43c0dd58f1499157d284cd19dc60878e2859ade176138a3f9b41f8a5671c9f76" +path = "static-publisher/static-content/file759.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/https_rsa_keygen/index.html_d524904ceaca19bd4b4868bcf53b50829504aac67cc7f8b1862cb35dbffe1cd7" +path = "../build/minified/site/de/gemstones/https_rsa_keygen/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/https_rsa_keygen/index.html_br_acafec76b8ec2ca6cc4e72e71e8caf3954bab55f8a01258262363187f23de046" +path = "static-publisher/static-content/file760.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/https_rsa_keygen/index.html_gzip_799a479c6894816ce31eefccabaf81ce57bba2e12f4ed978528c2c5acd384ab3" +path = "static-publisher/static-content/file760.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/index.html_ee7658f17fee632f580e85da7e5517431499fd61bd104060a6fc69a1b7dc1031" +path = "../build/minified/site/de/gemstones/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/index.html_br_a72e9cf1271fece79fc35fa157acb90c8d4ace383e32d54f14dedb0d54e62268" +path = "static-publisher/static-content/file761.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/index.html_gzip_2945a32e07dc8a47594dde39b11314cd783b49da70bc60a26efc593d62036004" +path = "static-publisher/static-content/file761.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/markdown-demo-v2/index.html_8d6e4dfd3887db94374099f47c0fb45d55aa07cd916977d2c35dd7794b132cf0" +path = "../build/minified/site/de/gemstones/markdown-demo-v2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/markdown-demo-v2/index.html_br_7c2329c43932129d875b64455541e4a1270d56d14c97ad370880840c57900c00" +path = "static-publisher/static-content/file762.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/markdown-demo-v2/index.html_gzip_385b4f239481d0a963d271ad6dfa2b970a46dcd9f8de34ce2e25f2a51604b442" +path = "static-publisher/static-content/file762.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/network/RL9_network_manager/index.html_8b1c2f708536727e8768c71134f585f1993b165f1ae89e6ebd7dac983db06c9b" +path = "../build/minified/site/de/gemstones/network/RL9_network_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/network/RL9_network_manager/index.html_br_8ba095c002a0b24789af3b59b981f12199597f40d73f94ae31e1337a8d23bec8" +path = "static-publisher/static-content/file763.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/network/RL9_network_manager/index.html_gzip_2bfd07357569b47c3488b0bd9cc2ff910531a256762e7dd216afeb8c906ac943" +path = "static-publisher/static-content/file763.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/network/iftop/index.html_10ec28b2d0f9ed11512a2ff6a2305a1725acf973bd746a247b5b386544254674" +path = "../build/minified/site/de/gemstones/network/iftop/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/network/iftop/index.html_br_98cb334539ca694c11379eebecacf0764bc7256c3a12e07ea68bc355ec0963c2" +path = "static-publisher/static-content/file764.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/network/iftop/index.html_gzip_79777223d8c7b41acc3d8f3afa45172fef754fa77f6ac85235a9d59a1dda85fe" +path = "static-publisher/static-content/file764.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/network/mtr/index.html_da6b907806493cad1bd9108c3c57db973d8da138ac71039daf6971a3a4d0145b" +path = "../build/minified/site/de/gemstones/network/mtr/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/network/mtr/index.html_br_05a5db60a1585ac64d7c4a96f3de396b69c28d465a13b51f0e46a2bf88746ad8" +path = "static-publisher/static-content/file765.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/network/mtr/index.html_gzip_5f03ffa75b87e8ddf4c2ed85bc4fafa573b9e078879c512275bcbd17279f9896" +path = "static-publisher/static-content/file765.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/network/nload/index.html_73be4b6badbaf3d0473e0118049c0fd96c8fab4d020c9f94fb841867e1f95d21" +path = "../build/minified/site/de/gemstones/network/nload/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/network/nload/index.html_br_38a6a309542fa2b41dd8476c9f5a111e77df4793dcf054f90a00fd3792c38745" +path = "static-publisher/static-content/file766.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/network/nload/index.html_gzip_ac1497d6c5cfa4689f453d0459d008b71f5b14132409c35daf444b637a438113" +path = "static-publisher/static-content/file766.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/network/nmcli/index.html_eed51ce691b80705ba158b856de32a6d94b50bec218d659dc43b685d47f13bee" +path = "../build/minified/site/de/gemstones/network/nmcli/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/network/nmcli/index.html_br_225ff455b0555e113b01825823237962d93dbc2b63e404bb66c312a65671b736" +path = "static-publisher/static-content/file767.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/network/nmcli/index.html_gzip_8ab2f109c38c24c849c4713d6ccfb53d656ef738d781ad7b6c62fa399d521075" +path = "static-publisher/static-content/file767.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/network/nmtui/index.html_f7bac8644dbe2f30285b3a9088f66fa11d88438d8c271dcf92d6ec23eaaedca5" +path = "../build/minified/site/de/gemstones/network/nmtui/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/network/nmtui/index.html_br_f1989e26dbc0a2611ec7cee9a0f1b2a84280352166a9d5c0b9e9dfb08f3b80c7" +path = "static-publisher/static-content/file768.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/network/nmtui/index.html_gzip_6ae67bb7085feee83639747d9955af4b13236c02a5962a3ecfe3c17777626989" +path = "static-publisher/static-content/file768.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/perl_search_replace/index.html_822075a5383317b023dc4531941683b7a3b8a999e0895a407615702518567b48" +path = "../build/minified/site/de/gemstones/perl_search_replace/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/perl_search_replace/index.html_br_003a3a4b2b71a916bbf81518914ba62707c1820ab7b7f07ca0ef26b9a15c7372" +path = "static-publisher/static-content/file769.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/perl_search_replace/index.html_gzip_eef021d7dd6faa851fdb331620510775b9c5c794d3d5ef67b4d922915bfd33b2" +path = "static-publisher/static-content/file769.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/rpaste/index.html_d05284506ad6d61505383ec05b995440eab82610ab3e2ff2851c92a70d1c9d38" +path = "../build/minified/site/de/gemstones/rpaste/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/rpaste/index.html_br_0d164a57fc2fbb6f6b6c59472b7b9e7639c736d72acd605dc80c107a87a26d90" +path = "static-publisher/static-content/file770.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/rpaste/index.html_gzip_b707a388f0a9bda88bcfde7b4dedbca932c74086e702b573a4bf2324c830c3e2" +path = "static-publisher/static-content/file770.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/scripts/NoSleep/index.html_77ed2be2ca419f6b49f2399c3e90c4623a7277d98abea8606b9f0323a20e380c" +path = "../build/minified/site/de/gemstones/scripts/NoSleep/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/scripts/NoSleep/index.html_br_88f03c9ff3f7df0039c811b294d9b60ae7eb287b096bcdb4c5383d906777eb92" +path = "static-publisher/static-content/file771.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/scripts/NoSleep/index.html_gzip_f91ce68ae51b45d54ac02a135fe42254438db6948e29d76f4eef5f86526cf3ac" +path = "static-publisher/static-content/file771.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/scripts/bash_stub/index.html_fe2e94229e2229516f6ea06cf1a83d7ef33728503dea0be311ca59e66b026336" +path = "../build/minified/site/de/gemstones/scripts/bash_stub/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/scripts/bash_stub/index.html_br_474c94f36c0e15fc0706b81f3ba5fadea5ff1e3565f43b1f8b23b36a3e43b7fe" +path = "static-publisher/static-content/file772.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/scripts/bash_stub/index.html_gzip_9624533cc31e5ea7f76896128ba8fcd32facf20c353d63f6cea371c9ca952ce2" +path = "static-publisher/static-content/file772.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/sed_search_replace/index.html_846fc0020f3d5473fd07d145e629a2fa99d59c16ae08425a88dfba936e71c017" +path = "../build/minified/site/de/gemstones/sed_search_replace/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/sed_search_replace/index.html_br_28cb082c30c3b4f4846efc0e614b995e732dcb8c44fdf122aa089ed939638fa2" +path = "static-publisher/static-content/file773.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/sed_search_replace/index.html_gzip_ae02f7a69984e1877a60ce1eb7420bcd9ddba2fb051e7f22454f7e8b769b46a9" +path = "static-publisher/static-content/file773.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/setup_local_repo/index.html_386285a142926c942e410fd54332894d946982504d2d74136bfdbc5fb9de87c9" +path = "../build/minified/site/de/gemstones/setup_local_repo/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/setup_local_repo/index.html_br_e8f9bdc8d2c307e2e9e85c6df262f8581ff8ffd573da4e221fc53843dd294fb7" +path = "static-publisher/static-content/file774.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/setup_local_repo/index.html_gzip_efaa82556f9db8e0535675da768b2f6944ab859bdf5420f1d42b910dc7797a8e" +path = "static-publisher/static-content/file774.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/string_color/index.html_14097e218137b5d7ab1a6410aa6e4e2329ea367adc4a43e1ffaa2a79dffed589" +path = "../build/minified/site/de/gemstones/string_color/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/string_color/index.html_br_74c89ea936471f190e25b1361a87428dba7f6fc905f02040e8b89c8b767ed8c9" +path = "static-publisher/static-content/file775.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/string_color/index.html_gzip_d8a33d3b2c3aa30380fc6c354b1461901a4d1076f7a4f902c2ec14d2725f4671" +path = "static-publisher/static-content/file775.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/systemd_service_for_python_script/index.html_93888350451171b1371ca696d1fe2abd097a8adc3938793198bf8f56b98903af" +path = "../build/minified/site/de/gemstones/systemd_service_for_python_script/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/systemd_service_for_python_script/index.html_br_fde5fd6bd81417dc14eb5ad17a0498e57c83aff8c24378ca515a95a382a26dc4" +path = "static-publisher/static-content/file776.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/systemd_service_for_python_script/index.html_gzip_0e4c97981d80b1d687a92a3f98fd9b71043e4a89a0d656f14bb4e4f633009a81" +path = "static-publisher/static-content/file776.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/test_cpu_compat/index.html_a03f57712b881173e353702619562959b53f61fa0231bfe7f98999e1eec87bfd" +path = "../build/minified/site/de/gemstones/test_cpu_compat/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/test_cpu_compat/index.html_br_d483be6328b94fbffd79cce6a7bbc35715a3f52046cb1562b1d04ad08b9d555e" +path = "static-publisher/static-content/file777.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/test_cpu_compat/index.html_gzip_a33e6f73de6c0209d925df92c8e125c0e47d3b070288e379eb1aa0e9172ad5ea" +path = "static-publisher/static-content/file777.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/torsocks/index.html_cb27ce95c33bf6f718d212d40cd81db7a80a343caab0303d828a23e4bf6606f7" +path = "../build/minified/site/de/gemstones/torsocks/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/torsocks/index.html_br_cb692684cfad5973cc2004c7442b84221b8322c3f2bc381119f7008868dee489" +path = "static-publisher/static-content/file778.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/gemstones/torsocks/index.html_gzip_cff25dd4edc03a8b2f943c9f2040c2c2a6b518949d8d2073b4f2c8ecc1d3f395" +path = "static-publisher/static-content/file778.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/8_6_installation/index.html_d5f8a47d7984201b8a6dfba925438d2e49518c6acbef05dc2990f5f64409ac69" +path = "../build/minified/site/de/guides/8_6_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/8_6_installation/index.html_br_1945eff1d76e3b25b0d57e7ae1764be2cc8d22bb5b4b4169a35b21951d8d8753" +path = "static-publisher/static-content/file779.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/8_6_installation/index.html_gzip_5de1ae000906d4027573965ec8f424157e9414581413a0ca9777afd14d9f2683" +path = "static-publisher/static-content/file779.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/automation/anacron/index.html_f37fc16c78b2201afa8d62d9c4a50c6ca23b3c8c5fb69bb3c67d409c88f8bb8f" +path = "../build/minified/site/de/guides/automation/anacron/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/automation/anacron/index.html_br_0a43820651cc27b8322e889b98a4fbbf3ec08a855fa4374e4c02666c2a1a0874" +path = "static-publisher/static-content/file780.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/automation/anacron/index.html_gzip_aba849df089c541ac1cc2ed572317c7cd3fe24f5f128907527a9e34d4e1d50fe" +path = "static-publisher/static-content/file780.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/automation/cron_jobs_howto/index.html_ccb7d798694c146f8d7093bc7d11c40e1576f8cf07c0007ae1fe54ea543a2eb5" +path = "../build/minified/site/de/guides/automation/cron_jobs_howto/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/automation/cron_jobs_howto/index.html_br_4e75ca50db20109e3bfc37254e3a4645c08451708737345c6bab1e691fc32e73" +path = "static-publisher/static-content/file781.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/automation/cron_jobs_howto/index.html_gzip_afb462477c44e34334c030f9d22278c8df334f76ae561162ac51e7d180bf6865" +path = "static-publisher/static-content/file781.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/automation/cronie/index.html_4c32b66b09e5677ea29b7365c2a13483782ed313ef289fddb62ca894d37aacae" +path = "../build/minified/site/de/guides/automation/cronie/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/automation/cronie/index.html_br_3b4ac59e1e0617c7bc30ad7a1a273ae6eb5f8b5591b7abed82c305969c3d0ec1" +path = "static-publisher/static-content/file782.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/automation/cronie/index.html_gzip_f02120b86a9d0d581476c8e9b00780f0ac407aadbf2ba59058b0c5650a7f3f63" +path = "static-publisher/static-content/file782.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/automation/olivetin/index.html_5ffc7025f754fda7ea35ac78d177b9533dd3ef68d14e2acd9f9bc012147e0bc8" +path = "../build/minified/site/de/guides/automation/olivetin/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/automation/olivetin/index.html_br_0c18b86f145eb56a9aced3de3a51991488daf2084561e69038e010e0c6867dcd" +path = "static-publisher/static-content/file783.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/automation/olivetin/index.html_gzip_e1ffd1ed5ddabfc0bb519146467f13b81b4f013c565b9288afff7c199595c5d1" +path = "static-publisher/static-content/file783.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/automation/templates-automation-packer-vsphere/index.html_a1750eaac8163287289c4e20d1ef6942cbda7aece0ff4dafa200753cdd0a9685" +path = "../build/minified/site/de/guides/automation/templates-automation-packer-vsphere/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/automation/templates-automation-packer-vsphere/index.html_br_569f08e23aa006b6aaa421be1e1d9dfaef78ffef4b1db043661507e2b3b0c802" +path = "static-publisher/static-content/file784.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/automation/templates-automation-packer-vsphere/index.html_gzip_ba1e5da20628097f876e229fca230e2a4579c560a1961732b5274e3ef5f5f0eb" +path = "static-publisher/static-content/file784.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/backup/mirroring_lsyncd/index.html_e265c656b319944de85eabed51f1a03bd70efc197c9dd2596f2d700ffbe42de0" +path = "../build/minified/site/de/guides/backup/mirroring_lsyncd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/backup/mirroring_lsyncd/index.html_br_379c30c797b5755f7cc1c8fbd8be429815b3b3a3906300f108461ed667ad53e6" +path = "static-publisher/static-content/file785.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/backup/mirroring_lsyncd/index.html_gzip_fe6617992c465421e3f6185e19b633b5e9dea3278ac1cf5786c5fcdbc8eab68a" +path = "static-publisher/static-content/file785.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/backup/rsnapshot_backup/index.html_2b877d611d5cf6a0199d5c8f0f0441d652f9775a24e93df176ce5660645cb020" +path = "../build/minified/site/de/guides/backup/rsnapshot_backup/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/backup/rsnapshot_backup/index.html_br_18c3ce72fd46b8d1e08e983e2e1ee6aff61c9bc423b6fd6c5214842cf58e0daf" +path = "static-publisher/static-content/file786.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/backup/rsnapshot_backup/index.html_gzip_c53591f9ef08f274c15db31eadd65d8a99842d0850c28eb59b31482541b9b7d6" +path = "static-publisher/static-content/file786.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/backup/rsync_ssh/index.html_9d45570047643edfbac11f630df673c7da115032f203ef34b91a4be539800769" +path = "../build/minified/site/de/guides/backup/rsync_ssh/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/backup/rsync_ssh/index.html_br_87749d7295bf69fd540d55697ad04b0f1cf4c2ab6094b73033b3e10c63532d46" +path = "static-publisher/static-content/file787.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/backup/rsync_ssh/index.html_gzip_225adca71e9999716572ec12b58dbb763f38c4a725fb1740013a12c49e98b40b" +path = "static-publisher/static-content/file787.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/cms/cloud_server_using_nextcloud/index.html_907242e64a6ad37b30b90a6b1403fe3ca52b4fc20adee5c1932da32c462856c4" +path = "../build/minified/site/de/guides/cms/cloud_server_using_nextcloud/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/cms/cloud_server_using_nextcloud/index.html_br_688f5458585b3eeda875d33e53797b62d5c2ebbe2ab51b7a71dc489e512246e8" +path = "static-publisher/static-content/file788.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/cms/cloud_server_using_nextcloud/index.html_gzip_773c970b8a1542bd27de5e39ce06b25655181cd7eec15bd9f5ec91b546266ed8" +path = "static-publisher/static-content/file788.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/cms/dokuwiki_server/index.html_70bddeda211adaf5e8ff817aabb349c892c6e96c6984036a9a327220edad3ed8" +path = "../build/minified/site/de/guides/cms/dokuwiki_server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/cms/dokuwiki_server/index.html_br_238db48634753d2497dc17046c800a1a3506374c499edf98bbb5d69f5e71239e" +path = "static-publisher/static-content/file789.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/cms/dokuwiki_server/index.html_gzip_f08517d79a8654978beb51089a3bf6ae97ca9cdaf710063de5b2af3fe7d69d4f" +path = "static-publisher/static-content/file789.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/communications/asterisk_installation/index.html_8561e5ff91766c5874d9be3ff175833c26a9a40cd9a932b043bbc9b8bc734cd9" +path = "../build/minified/site/de/guides/communications/asterisk_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/communications/asterisk_installation/index.html_br_dfbfeff81b8a0b877de9df37507d2cbc126e1bca3270ad4b7be96b1a0a4afa2f" +path = "static-publisher/static-content/file790.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/communications/asterisk_installation/index.html_gzip_3f897fefb2cc6c6840ba8df2665ac3703ed337ea93953bd3d4eaed4d881bf3f1" +path = "static-publisher/static-content/file790.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/containers/lxd_web_servers/index.html_eda456d0d6c2469347c039e13fcf0dbc92a622b9b3b239c2f38eeff2289e26ad" +path = "../build/minified/site/de/guides/containers/lxd_web_servers/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/containers/lxd_web_servers/index.html_br_1dd0af87570255babc712ab853fa4e07809d5e437d8708cf3270e0535104cb4d" +path = "static-publisher/static-content/file791.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/containers/lxd_web_servers/index.html_gzip_102c53e3332bfcc08e3ab38fa4a9fcd95996659e3d59da2e0e7a49674b1a742d" +path = "static-publisher/static-content/file791.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/containers/podman-nextcloud/index.html_a7d9121720486fd0122b8b27dc01a3cb43b2a5fd1456788ae6d7f45012aabc9f" +path = "../build/minified/site/de/guides/containers/podman-nextcloud/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/containers/podman-nextcloud/index.html_br_4ed36fb02fb4cb9ecdb7baf55885ad981fae109e16114f950a4b239f2f0bd7e1" +path = "static-publisher/static-content/file792.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/containers/podman-nextcloud/index.html_gzip_58d6d46c661ccac9cea403d5da6c6a58692df8e732e92f2f04776618564daca8" +path = "static-publisher/static-content/file792.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/containers/rancher_and_kubernetes/index.html_23a6b751913e41c829d57896c2efa2c83e74c891f89ab729409730a1e9ae36d4" +path = "../build/minified/site/de/guides/containers/rancher_and_kubernetes/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/containers/rancher_and_kubernetes/index.html_br_fe39a0044875c54def2f67a99e9d5b54143bf56c379d5edfc83c26128b8f9eed" +path = "static-publisher/static-content/file793.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/containers/rancher_and_kubernetes/index.html_gzip_9ee01bc46965681506329c0454eefadb980ed83ec69f6b30e26891ad750fe5d4" +path = "static-publisher/static-content/file793.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/contribute/beginners/index.html_1e6cd53643a84fd232cfcaa403a07e4641cb1462df2a0f1d09ffb36edf964308" +path = "../build/minified/site/de/guides/contribute/beginners/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/contribute/beginners/index.html_br_c6ba6a1876c47269d7e7ce7f1ac588844aab7f0e099f90f6d4771b2ca330d46d" +path = "static-publisher/static-content/file794.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/contribute/beginners/index.html_gzip_287cad6fbe6f2d1dd9c991a256cbfe5e7e6326d339330b625c8230ee5fee0743" +path = "static-publisher/static-content/file794.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/contribute/createnew/index.html_2ebcf06dfcebb050dd47de26a6c5d3527c8203f883482fc2ee388ca8ba8f330d" +path = "../build/minified/site/de/guides/contribute/createnew/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/contribute/createnew/index.html_br_badd689c26f0855116e064ff7fe6bb6725797cd5ed25a93eba101626cfe1ec8c" +path = "static-publisher/static-content/file795.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/contribute/createnew/index.html_gzip_9fd28a1eefc20792acdbe4e295e0c7fa7afe961fb493d65b81e3119b6ee07245" +path = "static-publisher/static-content/file795.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/contribute/index.html_6936cc0ccc7a0fcec64ef3444af3a6a25c38e27f45a8d11e3d5efe9a10c72356" +path = "../build/minified/site/de/guides/contribute/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/contribute/index.html_br_033ed4870fee7767232e07a65e8228521b2c4db2ca63eb3a4a0e094b2ef0a780" +path = "static-publisher/static-content/file796.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/contribute/index.html_gzip_f6a3665f6f8ac8b2cc1b3f85cfeacaa3be1ef4cd3f8310e4a2a6202e1f0bc475" +path = "static-publisher/static-content/file796.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/contribute/localdocs/index.html_26cbaa860e468faa7669cc3a0bb5397851aa329c95561e6275c12734c6c51558" +path = "../build/minified/site/de/guides/contribute/localdocs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/contribute/localdocs/index.html_br_3fcbf975648c5debf586c5dccc24ba2bf47e9dba02e17db68df33327920108c3" +path = "static-publisher/static-content/file797.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/contribute/localdocs/index.html_gzip_ea3a409e0dd44adea1cb04cf36da7ef17a91f4f7217513a0519bcafcab064406" +path = "static-publisher/static-content/file797.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/contribute/localdocs/local_docs/index.html_4c21f6278a2666ae55e747d0dfcd0d79f9cbef8f03dc25ee390afa8ae4763be6" +path = "../build/minified/site/de/guides/contribute/localdocs/local_docs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/contribute/localdocs/local_docs/index.html_br_f815a0ca0e778bb1e781c429d4c2dec44aa82a4cfb3f7df5a11ffdd06a4a9a8c" +path = "static-publisher/static-content/file798.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/contribute/localdocs/local_docs/index.html_gzip_26ec4f62029a58efc95d07cebf1153c58fb1e1d27b35fe1573905283fb6ca279" +path = "static-publisher/static-content/file798.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/contribute/localdocs/mkdocs_lsyncd/index.html_8d4e8e09252f8d5dcfba97b1a6a2e2782da0056c7b43fead523104018592b390" +path = "../build/minified/site/de/guides/contribute/localdocs/mkdocs_lsyncd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/contribute/localdocs/mkdocs_lsyncd/index.html_br_293ac4492f19d2dae01de64ef22e6384acf60739bedd0fd1ce70149d0f08dffb" +path = "static-publisher/static-content/file799.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/contribute/localdocs/mkdocs_lsyncd/index.html_gzip_e2b778405a8cbdc3ee8c03d5c813df96820a3fa44ede6f00c1e39239405da869" +path = "static-publisher/static-content/file799.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/contribute/localdocs/mkdocs_venv/index.html_36cf1b3bd32857abafc1508fe324b2fa23457092571e5bb1594eec41a64b9469" +path = "../build/minified/site/de/guides/contribute/localdocs/mkdocs_venv/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/contribute/localdocs/mkdocs_venv/index.html_br_119955656eb2f91d10003d811910101949b192dd9979d7efcf739855343272be" +path = "static-publisher/static-content/file800.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/contribute/localdocs/mkdocs_venv/index.html_gzip_061762030e7eb55eb7ad37210ca80a11b7320db11b77364c68d6b2e8ce7fdc21" +path = "static-publisher/static-content/file800.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/contribute/localdocs/rockydocs_web_dev/index.html_ae922a52c037747fb97b8d6bf89380d543d61e6fd9009f4210dd0c5aa9b99b9d" +path = "../build/minified/site/de/guides/contribute/localdocs/rockydocs_web_dev/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/contribute/localdocs/rockydocs_web_dev/index.html_br_891653824210c33c9a003a217665be54bd0a9692721feb4f8dd242fce5ea921d" +path = "static-publisher/static-content/file801.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/contribute/localdocs/rockydocs_web_dev/index.html_gzip_2396cc74d48601bf33c73f1d46da14227b25c945ce304978b7f69ed4beb85d46" +path = "static-publisher/static-content/file801.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/contribute/localdocs/rockydocs_webdev_v2/index.html_daa51d10bc620692ecb8a74e04e4b01a4d5d07edae1de5d0fdcec0958de5511d" +path = "../build/minified/site/de/guides/contribute/localdocs/rockydocs_webdev_v2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/contribute/localdocs/rockydocs_webdev_v2/index.html_br_1fd255bd0e9f3ea9ccd848dee201209f2a1852ebbdc29bb989304dca85659467" +path = "static-publisher/static-content/file802.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/contribute/localdocs/rockydocs_webdev_v2/index.html_gzip_99ec9bc7741390d811d679f9829eddcecaee8bf6190a098cdbdec76e34cdf01f" +path = "static-publisher/static-content/file802.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/contribute/navigation/index.html_1cb8ad50bf504d993af99894be5da9f6b90bbb8948c2efb98c80cd7a731612af" +path = "../build/minified/site/de/guides/contribute/navigation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/contribute/navigation/index.html_br_37726c3c6d6e289babc9b5ea98cce30df1fc5e5c718fc412397cc6ab576351fe" +path = "static-publisher/static-content/file803.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/contribute/navigation/index.html_gzip_ef0f5a5c9bed487aae40360e415511b91d9dbe543617578dfc635b79fe40fc78" +path = "static-publisher/static-content/file803.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/contribute/rockydocs_formatting/index.html_01ee73f991f011c7f5d7252f9810fed648a1aaa85ed788148d5d6b543d07ef04" +path = "../build/minified/site/de/guides/contribute/rockydocs_formatting/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/contribute/rockydocs_formatting/index.html_br_b1305b695f8480fdd90b4afb9eef1f2aa826c49e4034ec802c480c1daa1c7443" +path = "static-publisher/static-content/file804.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/contribute/rockydocs_formatting/index.html_gzip_01b62a56f6de057337e7d6fb99d3fc805185a0c38f073ae3037b393c39ba849c" +path = "static-publisher/static-content/file804.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/contribute/style_guide/index.html_d0b4fae3c01353157e141bfb10aef6f9e0c893104ca83efad84a862e57b052aa" +path = "../build/minified/site/de/guides/contribute/style_guide/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/contribute/style_guide/index.html_br_d8d0f2f1ac8d93bea5854505b1c4b8f599ad69451e62a9ae78ccf4b8688e21be" +path = "static-publisher/static-content/file805.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/contribute/style_guide/index.html_gzip_ec22a3b210e07d42581117d9d379a3facb03fb12acae132336b1e628e42ed00d" +path = "static-publisher/static-content/file805.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/custom-linux-kernel/index.html_44114e2ec8be64f625b9c64377af1b5afff4388064e013647aceaded9e190a73" +path = "../build/minified/site/de/guides/custom-linux-kernel/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/custom-linux-kernel/index.html_br_1b75f0b942dfdc4f82c3656de412857b19f24bb32f92959b9b090862dbc197bc" +path = "static-publisher/static-content/file806.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/custom-linux-kernel/index.html_gzip_f197862a14f03639bf5271b876797d1b7236b3a78cbb1b74543bf7735eaafa2d" +path = "static-publisher/static-content/file806.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/database/database_mariadb-server/index.html_b2c30a34646d9524f37298e925daa46bd388ad088a43ad69b01be70640b36ac4" +path = "../build/minified/site/de/guides/database/database_mariadb-server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/database/database_mariadb-server/index.html_br_d95a4e0f6758def9555af4530ea78fc08cd68958409a40dcc3a2c2e8c6acc695" +path = "static-publisher/static-content/file807.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/database/database_mariadb-server/index.html_gzip_7607ba44ad97cc4ad84b8e35abb93b6f58231752faf0cc6d86175bb21cd06878" +path = "static-publisher/static-content/file807.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/desktop/kde_installation/index.html_e69e91a0753f3e42468670a09d6b1aadbd7f545d84b284a8e32193bab60bf5f0" +path = "../build/minified/site/de/guides/desktop/kde_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/desktop/kde_installation/index.html_br_08b9d8a4dde27bd65f7d5f265766ededf1a740e820f2dd4e3e749e76f4ea7cb6" +path = "static-publisher/static-content/file808.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/desktop/kde_installation/index.html_gzip_57ec9bab66b682fb73615680448ce5c5172f40b93819326aa14e747954fa5aff" +path = "static-publisher/static-content/file808.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/desktop/mate_installation/index.html_e60f07102458cf8ec8f3c9805c31cfc9c3ec816e0663f1a41ac56f60c44e07d8" +path = "../build/minified/site/de/guides/desktop/mate_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/desktop/mate_installation/index.html_br_862a369c352248b9e5fd3a3c02d30a1d7c9537ce86bea23a8a9c22b27e0ab796" +path = "static-publisher/static-content/file809.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/desktop/mate_installation/index.html_gzip_9953632e6b0d5c2343a5aba7013985c01c76bb9cf1b11290d0d89e973558392f" +path = "static-publisher/static-content/file809.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/desktop/xfce_installation/index.html_759f65fc3b54abfc5e0ddd539587e40e85ee7510ebef0eac56cbcc29993cef8b" +path = "../build/minified/site/de/guides/desktop/xfce_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/desktop/xfce_installation/index.html_br_c248f16f4ea294067f965354cc798a5583974f96a0ea14f5cbcddc5ee6fcb8ce" +path = "static-publisher/static-content/file810.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/desktop/xfce_installation/index.html_gzip_2d473e05d694f88b40c2382028ceb4d7c04b1271623873427ecf2fbc60d2c706" +path = "static-publisher/static-content/file810.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/dns/private_dns_server_using_bind/index.html_2390b7fe95d275ded05e00848d8fd8f26feed852084f874d76dd120ca3577aa7" +path = "../build/minified/site/de/guides/dns/private_dns_server_using_bind/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/dns/private_dns_server_using_bind/index.html_br_ab0e6e6fff4a348b44b5e7921a0084bda504d65b26e2f0638ca66958c1fbf28c" +path = "static-publisher/static-content/file811.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/dns/private_dns_server_using_bind/index.html_gzip_585272b896ce0df63ff66dc016daa6bbbd5df6f19140e6ce3280b410171b397d" +path = "static-publisher/static-content/file811.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/editors/micro/index.html_8db0746c62e99f32603104ff6bf5ffd0b98fffd307b634f382b49e54b62fb407" +path = "../build/minified/site/de/guides/editors/micro/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/editors/micro/index.html_br_58e91f17c5f2a7cfba96224b5eb339f080d30dbe73b46784091a5e23b9e726db" +path = "static-publisher/static-content/file812.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/editors/micro/index.html_gzip_c517af9b3a8449bce49fe3119b735560b653691fde44b3f8ed9432bd59674839" +path = "static-publisher/static-content/file812.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/email/01-email-system/index.html_078c0a4865b4d51754a355fa39c2ce5a270e3eccc0a6e80d5d920bba56d29051" +path = "../build/minified/site/de/guides/email/01-email-system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/email/01-email-system/index.html_br_fad5f0d3b460045a398ea54e613ff36ad4be42502e98ab3ee1158d186b5addac" +path = "static-publisher/static-content/file813.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/email/01-email-system/index.html_gzip_de296332d4e5df6b2803983e7fb727e063837780c0b160503da01fbd2d131e0c" +path = "static-publisher/static-content/file813.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/email/02-basic-email-system/index.html_a9cf8fba0a717e533a2c3da89bad55ba0d924c9d12ddfabac8537d53648d9509" +path = "../build/minified/site/de/guides/email/02-basic-email-system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/email/02-basic-email-system/index.html_br_143a11d69b505734f00fd867d3b7c11fd681a5f514baac63c0b6fd0b9722a3c2" +path = "static-publisher/static-content/file814.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/email/02-basic-email-system/index.html_gzip_1df4bb9c24f07914f14edfd4b96565001c81c5ec1f484640eb23580ecf2b6ac1" +path = "static-publisher/static-content/file814.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/email/postfix_reporting/index.html_8b58ed6ea54056f437efd9fcc417c66d0aec26210f5a2af41e81a131a42ffbe9" +path = "../build/minified/site/de/guides/email/postfix_reporting/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/email/postfix_reporting/index.html_br_a92c66a4993eb31a6751ba0a41527a89289706e3453ba276b676724fae9ca0b7" +path = "static-publisher/static-content/file815.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/email/postfix_reporting/index.html_gzip_23bc0e6d7c2256739b0f2a0ab650fc183bf2ca8dcf64a0967496c0381d1e3a71" +path = "static-publisher/static-content/file815.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/file_sharing/glusterfs/index.html_7e54e296b7248138ea864debfc81b66ac48d485ae8dc645619b08ff9994b188c" +path = "../build/minified/site/de/guides/file_sharing/glusterfs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/file_sharing/glusterfs/index.html_br_5d622a3e6871328692871706413fcc70c348da0607b4910a26ff31bb136ca40b" +path = "static-publisher/static-content/file816.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/file_sharing/glusterfs/index.html_gzip_304019a171019372a86f0a1b7addc99b55ea361799a8ffe1c6c662eda4ed29cf" +path = "static-publisher/static-content/file816.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/file_sharing/nfsserver/index.html_e39f3359bc89ed589c9c4376efc486532d63f07ad8b4080abb48cef0b65e0cd6" +path = "../build/minified/site/de/guides/file_sharing/nfsserver/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/file_sharing/nfsserver/index.html_br_aee234d798baeeb2a0707a6a2b0ea6a11f577c1536697c8a96cff77ace6622e2" +path = "static-publisher/static-content/file817.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/file_sharing/nfsserver/index.html_gzip_ec1262b7f6025746fcc17779531c901eff1357d80b0119b0bd68eef70ba922ed" +path = "static-publisher/static-content/file817.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/file_sharing/secure_ftp_server_vsftpd/index.html_2a7791d31c1f950a3f79a47e148196919d827ade98a23eca97108ae911f399a8" +path = "../build/minified/site/de/guides/file_sharing/secure_ftp_server_vsftpd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/file_sharing/secure_ftp_server_vsftpd/index.html_br_a5086623ba44fefce15ee4cedf62fdc6329afbd06b5ad18177bdd360c3e49464" +path = "static-publisher/static-content/file818.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/file_sharing/secure_ftp_server_vsftpd/index.html_gzip_2bcae613d66fc3ea374c2d3269bf019c0bf6cbcb362c686a13c8d2bfca2835bd" +path = "static-publisher/static-content/file818.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/file_sharing/sftp/index.html_a834e6ee995ed265874a3dfb2ae16cbe1fd159dd4aedff668f72f412bcf7360a" +path = "../build/minified/site/de/guides/file_sharing/sftp/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/file_sharing/sftp/index.html_br_23371d73f694f00b297284d7bf2bd184516a9317d4cb3469c05bab7e0b154b66" +path = "static-publisher/static-content/file819.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/file_sharing/sftp/index.html_gzip_a76be0b6d677df79b9f0b53748b45a826eb41c892d52d5f3d424508a5d876177" +path = "static-publisher/static-content/file819.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/index.html_b047a392ecbb737b2b5c0cb96fd2ab70d51a975aab967c9962f1084d99aff433" +path = "../build/minified/site/de/guides/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/index.html_br_e4c53542bf31f5c5dc143ec00c17d5167075b2e5cd84e4461a6d1075ff5be766" +path = "static-publisher/static-content/file820.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/index.html_gzip_ff1ff55a932ad9681b4faaaf79e363c1bc4440ae26620a71ec7c9bf26f407e9a" +path = "static-publisher/static-content/file820.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/installation/index.html_5ecb1c8768e0d855b8ed158e69f35e60e5f4270bf819f6f6eca8357fdbe9670c" +path = "../build/minified/site/de/guides/installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/installation/index.html_br_8c7fe9c1a661d42bf773f0cbd8e8d37125f07eb1e3b39940d4651a2e05c1e945" +path = "static-publisher/static-content/file821.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/installation/index.html_gzip_a3cd91cfdd93bba6a4cd99f615d1f922933672e3f802c0c5d8543e563fb41c32" +path = "static-publisher/static-content/file821.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/interoperability/import_rocky_to_wsl/index.html_87b8a2698dbb655ab9e346658d9936de11036bf1467671f3f04524825f6d8dce" +path = "../build/minified/site/de/guides/interoperability/import_rocky_to_wsl/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/interoperability/import_rocky_to_wsl/index.html_br_faa7fc6b5584d76f5e2e9afc69838cafd6142da03ecd5bb144728980be88b69c" +path = "static-publisher/static-content/file822.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/interoperability/import_rocky_to_wsl/index.html_gzip_b5b0f511531f9f17ff51bf65f8112d05ebc04cdf2d448a5241d5203176d4970f" +path = "static-publisher/static-content/file822.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/migrate2rocky/index.html_77945ba210ad6d5b4c2f097358001a23bf9610b9cdd97eefcb86f2551a021eb4" +path = "../build/minified/site/de/guides/migrate2rocky/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/migrate2rocky/index.html_br_8d6598bc17eb26764d827665feb1160e1f3b220ac9e8db7b0eb60aee317e2eba" +path = "static-publisher/static-content/file823.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/migrate2rocky/index.html_gzip_538cfef0ce6756e084807556e6d7a6d366d290d45bf3b5ad5831e70fc0fa5f5b" +path = "static-publisher/static-content/file823.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/mirror_management/add_mirror_manager/index.html_2f1ab1fcddee0f9fbafed3a09ac5d475983ab3013b88cac88f04f1bdf95c35bd" +path = "../build/minified/site/de/guides/mirror_management/add_mirror_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/mirror_management/add_mirror_manager/index.html_br_2c86557f492d1cf30ebddf4240a90ac510facb991fd19a57614318e876c05bff" +path = "static-publisher/static-content/file824.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/mirror_management/add_mirror_manager/index.html_gzip_4e8f8670443da6e62b84e38bf78413609342a56477f9bf47d19bd0e709ba9c57" +path = "static-publisher/static-content/file824.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/network/basic_network_configuration/index.html_59011929ab0dbc4c4295ef831c16d500aeaf02b15b4b2a7ca48804ef4b6b68d9" +path = "../build/minified/site/de/guides/network/basic_network_configuration/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/network/basic_network_configuration/index.html_br_9639e4dea7c16dfc976bb2a88918770f39143fd359463e48be3935421cfb5339" +path = "static-publisher/static-content/file825.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/network/basic_network_configuration/index.html_gzip_6449cdc04a964f3483cb2318275c4acc759bc0c7dc1ccf18be6125c5616067c4" +path = "static-publisher/static-content/file825.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/network/librenms_monitoring_server/index.html_ba6cd8c4d739d1d04471f4de62576fbc2fa4a5a6126980198ccab73b727acfe2" +path = "../build/minified/site/de/guides/network/librenms_monitoring_server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/network/librenms_monitoring_server/index.html_br_011a2813b3d5c6f0c4a3a886aded0feda5d948f3c0ac5c3d23478e0fe9a40c09" +path = "static-publisher/static-content/file826.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/network/librenms_monitoring_server/index.html_gzip_e0914098b604485758bdceaf1e1465f22525075226bf2845124bf5934e5a5ce2" +path = "static-publisher/static-content/file826.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/package_management/dnf_package_manager/index.html_2c30a114a89e92a514b6d9dd1a6e44acd616155134d3486886ab207ce9131e61" +path = "../build/minified/site/de/guides/package_management/dnf_package_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/package_management/dnf_package_manager/index.html_br_07e235f0a7305d59265db28030167cfb44e64a02bd129032b218cda781cd9dc2" +path = "static-publisher/static-content/file827.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/package_management/dnf_package_manager/index.html_gzip_c9475383715a66af7943a79de1cecf5ab37ee6db0a4e412e00ae712233f04e29" +path = "static-publisher/static-content/file827.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/package_management/index.html_ec37e9cbb3bb131ddbab0c6912dfceb947da7751d4f12267c407e430c035a603" +path = "../build/minified/site/de/guides/package_management/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/package_management/index.html_br_096eb2260b97036a6dc4ed16d3c21113489be8e40b639ef0394c6835bda89498" +path = "static-publisher/static-content/file828.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/package_management/index.html_gzip_18b81dce5022f645c6c824804e65fabff3454b1c5a3b457de3b4e21b70ad18c4" +path = "static-publisher/static-content/file828.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/package_management/package_build_troubleshooting/index.html_c1d16401b8c2c9a1dce15d85bc76432d3570dd7fd00c2e85cdcedd0737ccfbe8" +path = "../build/minified/site/de/guides/package_management/package_build_troubleshooting/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/package_management/package_build_troubleshooting/index.html_br_65ac34e2c3090f85485351d989f71f96f3081a161c2bc843008eda79fc924b94" +path = "static-publisher/static-content/file829.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/package_management/package_build_troubleshooting/index.html_gzip_a53a3a7a756bcc6ef312fda0edb25e44c168f8b0067c2ed3092d8d35b2b76fce" +path = "static-publisher/static-content/file829.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/package_management/package_debranding/index.html_d580b2b4c0a13e114ef332a1e3c04ed552cd2d0c27d44f71bfa82ed157bd8896" +path = "../build/minified/site/de/guides/package_management/package_debranding/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/package_management/package_debranding/index.html_br_ad0613a082700e1e4a05ac10d1dcb2888b79b680125372285740335a1eb6833e" +path = "static-publisher/static-content/file830.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/package_management/package_debranding/index.html_gzip_ba40ad98217c67ee6662c0ad671106c1facf6fd8ced653ee536e559b90b89d92" +path = "static-publisher/static-content/file830.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/package_management/package_dev_start/index.html_8218759a269720ff763b47a3272b297ccbca639fe016e0a6f476adedeb797d75" +path = "../build/minified/site/de/guides/package_management/package_dev_start/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/package_management/package_dev_start/index.html_br_0ff435a31ec5277cd3e8bec7f71ade0c1e2688eff373b76fc7e29993397bd28a" +path = "static-publisher/static-content/file831.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/package_management/package_dev_start/index.html_gzip_95729abba44b82d91603c58542801640b126462104a25d52b9d8bf6c9132ecf6" +path = "static-publisher/static-content/file831.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/package_management/package_signing/index.html_7e3a9b0a0cd4da190c0e558e7bce37faf31e347b1a91e39287a1f4d261925a72" +path = "../build/minified/site/de/guides/package_management/package_signing/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/package_management/package_signing/index.html_br_6db599b5568a58f57da54bfc1746e81f2c0aad76d53f4a89da6ffa334e2273d5" +path = "static-publisher/static-content/file832.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/package_management/package_signing/index.html_gzip_ee9d3e3f44d241be32a55f640846048e0ed63085c5e4a9a47723c36d13350a8f" +path = "static-publisher/static-content/file832.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/proxies/haproxy_apache_lxd/index.html_713a8b8225ea049e1a1beff05ec1c774acb60261284162bb5d0f4d52185f3e58" +path = "../build/minified/site/de/guides/proxies/haproxy_apache_lxd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/proxies/haproxy_apache_lxd/index.html_br_f0d0848a8014ec4f505d71277338b29e1af4db1ed4e5af945b7b2db85ad9bd59" +path = "static-publisher/static-content/file833.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/proxies/haproxy_apache_lxd/index.html_gzip_f87194dc3fd3e0314209f6b8de32e07230897c992e6b13ef2b6ebbaf1c6fa9f5" +path = "static-publisher/static-content/file833.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/proxies/pound/index.html_2c4d671942d5454471b452beb70c1ef9a7f3a641ae2b1eb768b3672944546ed1" +path = "../build/minified/site/de/guides/proxies/pound/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/proxies/pound/index.html_br_a5687a9cf670f1278de97ad5ef7fe1ba53490442fce3542c25e4c507da734f8a" +path = "static-publisher/static-content/file834.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/proxies/pound/index.html_gzip_45636f12d64712776553677c5d661c6c27917c1979187474f79bcd96a09283ed" +path = "static-publisher/static-content/file834.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/proxies/tor_relay/index.html_fd506d01a327c1df261dd6f18558027db97bc7ea0cc815ccb3ad3e596f8065b1" +path = "../build/minified/site/de/guides/proxies/tor_relay/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/proxies/tor_relay/index.html_br_0258428bf35131b4a38bf21b0d2cdb29674b9f9b90e1f62bea214691b69bf2d2" +path = "static-publisher/static-content/file835.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/proxies/tor_relay/index.html_gzip_5a36e0520f20ec61d2363b11867798e2ca9b9ac4d8c59e98c2779a5b8ad6362a" +path = "static-publisher/static-content/file835.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/security/authentication/active_directory_authentication/index.html_829c80eae192c68fe60b1a197a7bd7339744861d7d78957b57a392487d459248" +path = "../build/minified/site/de/guides/security/authentication/active_directory_authentication/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/security/authentication/active_directory_authentication/index.html_br_68da24e1750f60ea1532de268dbaf3a6ade87e13a04873fcd9fe7152fd542ffd" +path = "static-publisher/static-content/file836.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/security/authentication/active_directory_authentication/index.html_gzip_a5485954b5fc6bb388ce05aabdfbac2dd81409834bc1bf378a390a991c518b18" +path = "static-publisher/static-content/file836.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/security/dnf_automatic/index.html_b8ca2c2b9f6fee43afd0c4a934abe81e6a11fbcf762fed3ee0604215ce18ef47" +path = "../build/minified/site/de/guides/security/dnf_automatic/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/security/dnf_automatic/index.html_br_72d8222898b0976c620551a5cf945286660d977acbde29765b743a93a88a6250" +path = "static-publisher/static-content/file837.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/security/dnf_automatic/index.html_gzip_a4a02a7e28231999e8977220977db581fb644f70ca998cbd84766f882d88fc61" +path = "static-publisher/static-content/file837.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/security/enabling_iptables_firewall/index.html_440c73d9c387dfd6cdcc8f221093defca315199205117f7039ade3aef6866e16" +path = "../build/minified/site/de/guides/security/enabling_iptables_firewall/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/security/enabling_iptables_firewall/index.html_br_ee904ee78052fad41e117cac6d1db184f55ceddd668293f161507c5d903eadac" +path = "static-publisher/static-content/file838.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/security/enabling_iptables_firewall/index.html_gzip_12d5d557c769ed8f41a01eebcf5c5e424a87f496f603109d0a77dfb0e0e7330c" +path = "static-publisher/static-content/file838.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/security/firewalld/index.html_2d7b82ce8b6f7b4dbc397cf16f70bc54e9419191b37069f1a210b03753d06d14" +path = "../build/minified/site/de/guides/security/firewalld/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/security/firewalld/index.html_br_9f04ac5a039a0f3488b7b1345667a0240d6e9b30e18c98686b608b89e943e55d" +path = "static-publisher/static-content/file839.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/security/firewalld/index.html_gzip_f3a87508492f6a018f9098a09c9deaf668aeed2f0316ef4d054da41c7e898058" +path = "static-publisher/static-content/file839.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/security/firewalld-beginners/index.html_c6fc93f64edd2721cc948cabf55db9a1979f7792cba6afd1ceddc1a8bce4f6c6" +path = "../build/minified/site/de/guides/security/firewalld-beginners/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/security/firewalld-beginners/index.html_br_f65a54ec196c6daf868b9aa5e924b89e3ae9b78232e3eccc91b84cdb8e8185a0" +path = "static-publisher/static-content/file840.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/security/firewalld-beginners/index.html_gzip_23c2df9bd465d3723d1b05d9a28b91806902cc85172a46350dac8934d6b5842d" +path = "static-publisher/static-content/file840.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/security/generating_ssl_keys_lets_encrypt/index.html_f452ab199bb710ada28db0759e74244467f6966d9ec47e858062f2c2083352f5" +path = "../build/minified/site/de/guides/security/generating_ssl_keys_lets_encrypt/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/security/generating_ssl_keys_lets_encrypt/index.html_br_21860a02a38313bfaa10113e02403e0a341e3bb17df5b816b22798f665c4ca1b" +path = "static-publisher/static-content/file841.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/security/generating_ssl_keys_lets_encrypt/index.html_gzip_bd7627b43d1aa78bd58db9b5cc2a00ed48ebcfa64fc9c38d2eaf7e699f7f3068" +path = "static-publisher/static-content/file841.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/security/learning_selinux/index.html_cf5dc564ed705b49f25081e6d0bc5499c46f1b4841eb9d6258b942e42056c24c" +path = "../build/minified/site/de/guides/security/learning_selinux/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/security/learning_selinux/index.html_br_ce00ed43bf3f59fe6ce3f0302a646904d8abde9756a132dbd6b5af52fdbad14b" +path = "static-publisher/static-content/file842.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/security/learning_selinux/index.html_gzip_4679e10928ba6dd26dd95169062c6c128b351ca6b819dbc876621f4c3253bad2" +path = "static-publisher/static-content/file842.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/security/pam/index.html_67c0372679db2d94b7e5f73677ac606001dbf9c646995e162d61f583edad3f78" +path = "../build/minified/site/de/guides/security/pam/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/security/pam/index.html_br_a0888b63fd40cdcfa1d407d802afcc0a13d7bedde24f50745ccaff2aecdc5135" +path = "static-publisher/static-content/file843.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/security/pam/index.html_gzip_849b9befaff56f02581f16f8a099671f729f83288b6bb8e2abf99a69719c75a5" +path = "static-publisher/static-content/file843.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/security/ssh_public_private_keys/index.html_2d49591e36585f6d30ea99f4eefe87f9201d54a06495e1b7d7224de8a9b0e88d" +path = "../build/minified/site/de/guides/security/ssh_public_private_keys/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/security/ssh_public_private_keys/index.html_br_3dd8c7a70b1321f921e03454c10018611f6eb4289fdbe5addb0da0b913556864" +path = "static-publisher/static-content/file844.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/security/ssh_public_private_keys/index.html_gzip_36683a8664b1d6ef7a2ea20db0b63c09081fca0bae9c9f4852e3888c76b0ecd7" +path = "static-publisher/static-content/file844.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/security/ssl_keys_https/index.html_631d11df4ed393614b1f025907ddfd49b824ac48f4b8fae6e4bb63a4c87ca869" +path = "../build/minified/site/de/guides/security/ssl_keys_https/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/security/ssl_keys_https/index.html_br_490d678fa0b55eeeb0f0878f497f587e6a8590887ba2f986e947b80129bf1f0b" +path = "static-publisher/static-content/file845.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/security/ssl_keys_https/index.html_gzip_8342a885373b05f5f06764bdaa8647918e03f898aa26ab81a5b603707460d441" +path = "static-publisher/static-content/file845.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/security/tailscale_vpn/index.html_ddded7cc47a845a359a6f1402c604068acd9757d2d0bf2ed207cf06773b6d233" +path = "../build/minified/site/de/guides/security/tailscale_vpn/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/security/tailscale_vpn/index.html_br_e29f852546dc2f53e8615cf9c7ac53bb8745fd06c7a9f13cc0bab9f6bc8fcd7c" +path = "static-publisher/static-content/file846.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/security/tailscale_vpn/index.html_gzip_ab185d49b2af7582ea30c46bf6d553ad95787d622f7e05e409854fd4959ac8ac" +path = "static-publisher/static-content/file846.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/virtualization/cockpit-machines/index.html_7ddc0c0dfcd571c7d7c72a125bbfc89bb9bcb70ba252da34cacc62bdf1bc71aa" +path = "../build/minified/site/de/guides/virtualization/cockpit-machines/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/virtualization/cockpit-machines/index.html_br_95819d29d809452001429602927219d0ccfa003203dd92192bebc1a06c267ca7" +path = "static-publisher/static-content/file847.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/virtualization/cockpit-machines/index.html_gzip_64a144595d6d05ef2a6b956d45aee2800a3f561b9b01c68c9aa127bc2afb6d0f" +path = "static-publisher/static-content/file847.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/virtualization/vbox-rocky/index.html_30b7c8b7671cc3a124fc5c6123190cf8ba4c2ffc8624eb72a2f94d49847ab118" +path = "../build/minified/site/de/guides/virtualization/vbox-rocky/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/virtualization/vbox-rocky/index.html_br_f9f69f8a9c67403d354c94ba83d691a6c77a61fcb59ff6b0a75352f488c30825" +path = "static-publisher/static-content/file848.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/virtualization/vbox-rocky/index.html_gzip_9d763004adfd201f1e012570b905f59a5877bb7963b139d7d87c72088d1bc9a4" +path = "static-publisher/static-content/file848.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/virtualization/vmware_tools/index.html_44b599e0ae42b07cbe7e357af38485a3575112f199563971517730a32c366d93" +path = "../build/minified/site/de/guides/virtualization/vmware_tools/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/virtualization/vmware_tools/index.html_br_d24372e5e6e4d6f837be685e7f276c7fcad94344f4996c4e0916470bc2f6f788" +path = "static-publisher/static-content/file849.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/virtualization/vmware_tools/index.html_gzip_de82ead5758a29c23e225a52fedaf8b023e619f303a4c9fed93616fae48834ea" +path = "static-publisher/static-content/file849.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/web/apache-sites-enabled/index.html_009b840dbb4138b7d591d3e4ef16cb1ed83d3e04ce360a625fcb79d976a34cb9" +path = "../build/minified/site/de/guides/web/apache-sites-enabled/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/web/apache-sites-enabled/index.html_br_7dfd81b9796fa9fe74712e92bc782907bb7b8d34bacfb27c5344a6f10dd834bb" +path = "static-publisher/static-content/file850.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/web/apache-sites-enabled/index.html_gzip_8f358e34b7fc81ec84a9fa31329dca48d0db4759e013cbd798135a023124aca7" +path = "static-publisher/static-content/file850.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/web/apache_hardened_webserver/index.html_7aea6652a2d2c883208a5e656acd1186ee6a4bb68b0e2deedfcbc9d3b6f06a06" +path = "../build/minified/site/de/guides/web/apache_hardened_webserver/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/web/apache_hardened_webserver/index.html_br_5fbdd2caaea5547b090d39778feb9f4b863ed1737caeb9d28e9afb2da1df9722" +path = "static-publisher/static-content/file851.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/web/apache_hardened_webserver/index.html_gzip_8b5f8cb4cffae2d8238dc5dfb5565598dc42b333a223dd8c3d530d75de287070" +path = "static-publisher/static-content/file851.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/web/apache_hardened_webserver/modsecurity/index.html_46abb386c131ec94e64d8956e7e8b695f0befb372101d33aae1f843da18c53fe" +path = "../build/minified/site/de/guides/web/apache_hardened_webserver/modsecurity/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/web/apache_hardened_webserver/modsecurity/index.html_br_a279723c6ce0daac404d516daf9f93789c5bffe9a43bbc272b12168d6e46e213" +path = "static-publisher/static-content/file852.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/web/apache_hardened_webserver/modsecurity/index.html_gzip_193aba72e6cbc86426e0d904ddc30338cfd5966d8434c48ed0f00db4a9852bac" +path = "static-publisher/static-content/file852.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/web/apache_hardened_webserver/ossec-hids/index.html_281c45790098b2940d1f62b713ad69f5554a6769f2fa8fca36950dde439a8bce" +path = "../build/minified/site/de/guides/web/apache_hardened_webserver/ossec-hids/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/web/apache_hardened_webserver/ossec-hids/index.html_br_22fdd076e6f6d92a7d16e087395c5646e05d371a45ac9de88ccd90b1ed5fbff1" +path = "static-publisher/static-content/file853.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/web/apache_hardened_webserver/ossec-hids/index.html_gzip_3705c859c6aacd415962b127febfc77a36da082dd62351b5a57bc13f3f14178b" +path = "static-publisher/static-content/file853.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/web/apache_hardened_webserver/rkhunter/index.html_857773182fbe0307d19964bc61297c6b8605c5996ba13a2f56c87a2d83fe1e2b" +path = "../build/minified/site/de/guides/web/apache_hardened_webserver/rkhunter/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/web/apache_hardened_webserver/rkhunter/index.html_br_a88f68e1da03f21b375785a7a27cc0b9d0650497f89aa6a9dcb538992834ae8a" +path = "static-publisher/static-content/file854.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/web/apache_hardened_webserver/rkhunter/index.html_gzip_8e2bad8c5a6f1e2ebe2440f1810df4ef876f9934e1bdedc03dc1d19851b2c1b2" +path = "static-publisher/static-content/file854.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/web/caddy/index.html_de711a7eba1597955d053cf810660505f21e70824ee2881147c87bdcf6df33be" +path = "../build/minified/site/de/guides/web/caddy/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/web/caddy/index.html_br_0d10a4fe0db49aa074e2cdf5cbfc48ab702ed0141ffc3c70da3f40be726a8e52" +path = "static-publisher/static-content/file855.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/web/caddy/index.html_gzip_ec6522de9c44328875ddda706660edde65bcdaa14114b07916b23da91cd76f67" +path = "static-publisher/static-content/file855.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/web/mod_SSL_apache/index.html_3e2dc422a22bed702f856e9c5393a201aa5cbc03e9929950d33d94c93f4a0a80" +path = "../build/minified/site/de/guides/web/mod_SSL_apache/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/web/mod_SSL_apache/index.html_br_8c01ba6fdd7d1a5d65c34770e73f865c41dd6e050b15d9de56c8609909d3625b" +path = "static-publisher/static-content/file856.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/web/mod_SSL_apache/index.html_gzip_ccc769ad57d2b529aa66bfdb5d98d3405bf4ecbbaee6071eb0ca8b7eaf13fb08" +path = "static-publisher/static-content/file856.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/web/nginx-mainline/index.html_b5908a2613ffbe54e72a68bdf34892747010936d171e70bdc70296ea6231a00c" +path = "../build/minified/site/de/guides/web/nginx-mainline/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/web/nginx-mainline/index.html_br_d79e1a9fe0550c2f08dd25ce4d48973bd5a4e5e5e7acf937eb1f00019cb32a62" +path = "static-publisher/static-content/file857.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/web/nginx-mainline/index.html_gzip_342533ff60aec0aeaa6c1d9ee541baa09381172ce917417657b5134acde9596e" +path = "static-publisher/static-content/file857.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/web/nginx-multisite/index.html_5047d117171784165bfa393c9ce20d4ab290b36df0e8e4822fd5577ca37a98e1" +path = "../build/minified/site/de/guides/web/nginx-multisite/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/web/nginx-multisite/index.html_br_d93c67f6c8255146bb6d2ae84d831622e32137f72b5629bc0401ffa53c2dd499" +path = "static-publisher/static-content/file858.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/web/nginx-multisite/index.html_gzip_668a2a5ef3ea74b7e31b4847fd5c22ae69b54fdd4f3b1fe4d020473a9080a426" +path = "static-publisher/static-content/file858.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/web/php/index.html_bf5969804bb54fc058ebe1f2532e0baa8a4e22361e96c4ffa5b05d70e98e1ec6" +path = "../build/minified/site/de/guides/web/php/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/web/php/index.html_br_b40f53e745150719342e1ff3780d9437553475e7d9f47c1d8d8f071e33f58dde" +path = "static-publisher/static-content/file859.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/web/php/index.html_gzip_6de165b8a69e5a2a2e6933b50f34904065a42c1150a721609fa9ffd3c5eee57b" +path = "static-publisher/static-content/file859.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/web/tor_onion_service/index.html_2494a88d893dd59486229862b5e3243739081c9c25af13b908fea6144a855ae6" +path = "../build/minified/site/de/guides/web/tor_onion_service/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/web/tor_onion_service/index.html_br_31d95c5029eb8a046b4de629f2cbfd19a06580460e11c646fb91bec895ba6c95" +path = "static-publisher/static-content/file860.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/guides/web/tor_onion_service/index.html_gzip_079c6b26c049bf26b91d9122c2a94781eba655dbc90d81a4a539b45461dd12da" +path = "static-publisher/static-content/file860.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/index.html_eac6249d47124a0be679475cb2627c8e32cd6c78cd1da164d3374d89b852cb23" +path = "../build/minified/site/de/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/index.html_br_ecfb521c7f6bc9ac2664412bf0e0aebf7d79627ca8415863b05a582c9f36c2d5" +path = "static-publisher/static-content/file861.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/index.html_gzip_ca898327810b4886948e79f08c70b844876bc551600ffaec8655440083531d9a" +path = "static-publisher/static-content/file861.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/labs/index.html_8aba44a6b54e4dbaedf226333fd9b727ddae60f4423e3c344392a497f21ccb65" +path = "../build/minified/site/de/labs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/labs/index.html_br_74bad0971dc6132dffa0eb5803c2a846fbc62c89e30e9242a464a6dd90ca3a2c" +path = "static-publisher/static-content/file862.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/labs/index.html_gzip_cf1582c5d0a1a4bd74456535487ff84682c019498612b1c9e63a966ec11ad81c" +path = "static-publisher/static-content/file862.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/labs/networking/lab5-nfs/index.html_7ce6cc4c3e47950c56b1b8694f3ef6087adfafec5a80fb3a9b96f12be3975a26" +path = "../build/minified/site/de/labs/networking/lab5-nfs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/labs/networking/lab5-nfs/index.html_br_10270a2ed11f2da2ffaec905ede07e471856575ba238f689c8f0520eca87448e" +path = "static-publisher/static-content/file863.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/labs/networking/lab5-nfs/index.html_gzip_811a8ea9c6685d865436e387e3c131a86d145863022c9fac348d5ffdf19ef7c5" +path = "static-publisher/static-content/file863.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/labs/security/index.html_a0c1e7c74d8ace4df613d0d1031b92fd36fcbe63bc17f1b8b6d76ccfca309da4" +path = "../build/minified/site/de/labs/security/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/labs/security/index.html_br_304d4056bc7a4b6cace0c8950a617f690501270eafc2ccd96e1326d544c945a3" +path = "static-publisher/static-content/file864.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/labs/security/index.html_gzip_6ee0ea1d923eb7e3b03f2bc3b4e72be894d6af85f318c8f10b78e8a872afa02f" +path = "static-publisher/static-content/file864.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/labs/security/introduction/index.html_8d5e2b5f3d257d763ad8684d4e28b67d6aa7f61ac85e8c9b198a82107cfebd93" +path = "../build/minified/site/de/labs/security/introduction/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/labs/security/introduction/index.html_br_ce3e683c14cb8ed83da6d17eb5a00013454a76703b6eeb85a8d1b82d461bcad7" +path = "static-publisher/static-content/file865.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/labs/security/introduction/index.html_gzip_de7fa09a33ed98750a3d7a4400bda237d5894e239dcd13dbe8167e067abab2f5" +path = "static-publisher/static-content/file865.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/labs/security/lab3-auditing_the_system/index.html_2e12fd43ebd3551f2a1b184376d665d0f009059b3a80937128259c336101de5d" +path = "../build/minified/site/de/labs/security/lab3-auditing_the_system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/labs/security/lab3-auditing_the_system/index.html_br_14515e820904bf86f0c4e11a9a242d0934c0dde8300fd17395eb95e82038a45a" +path = "static-publisher/static-content/file866.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/labs/security/lab3-auditing_the_system/index.html_gzip_80405cada5bfbb8e10a376a83853693b4b741f505ee2fccaf9abc6156dc96a08" +path = "static-publisher/static-content/file866.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/labs/security/lab8-iptables/index.html_cc89688d7307d2b60f0d148b335462f45654113dace1f6b994143acf41e745b0" +path = "../build/minified/site/de/labs/security/lab8-iptables/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/labs/security/lab8-iptables/index.html_br_7c7b1e172a8c7a0aed819845b990e8e09b47cf5737c27c3c3a0aba13feae90a9" +path = "static-publisher/static-content/file867.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/labs/security/lab8-iptables/index.html_gzip_4367e1f7c2be9f10d68cd796ff7d79a6f5cf5f5207aed5c4a245d932451a9ec3" +path = "static-publisher/static-content/file867.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/labs/security/lab9-cryptography/index.html_d25070415bd1c36f858982fbb11ff2f8b252d5a6637f9d65ac1efd371fce5381" +path = "../build/minified/site/de/labs/security/lab9-cryptography/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/labs/security/lab9-cryptography/index.html_br_9ac67d0418d4aa3a503030a180ab9f02966e353e74c4cf6acbe7be0e46a10193" +path = "static-publisher/static-content/file868.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/labs/security/lab9-cryptography/index.html_gzip_bdefb727007595494127a935d0093f0598c270a1c208d0d11a15300a5bdb3c51" +path = "static-publisher/static-content/file868.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/labs/systems_administration_I/lab3-system_utilities/index.html_14255532a06135fe83b1e68f55ffa2d588c486f71d5af4a4020a4f16adef9779" +path = "../build/minified/site/de/labs/systems_administration_I/lab3-system_utilities/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/labs/systems_administration_I/lab3-system_utilities/index.html_br_f90c290ab1f6e37de2a2014e0c3662b442d820cbab880db3cdce5ac907a0abc5" +path = "static-publisher/static-content/file869.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/labs/systems_administration_I/lab3-system_utilities/index.html_gzip_87e1c0b2a080ee35e9f6604f95f4fca47bb478a7b156beda6074b5d9164cbf47" +path = "static-publisher/static-content/file869.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/labs/systems_administration_I/lab5-networking/index.html_843525cd51f40aa81946162a01e09c6313cc2638fa03bfa632d978ecfb520bc0" +path = "../build/minified/site/de/labs/systems_administration_I/lab5-networking/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/labs/systems_administration_I/lab5-networking/index.html_br_c9538521b7fda9c9a0a19d60cae4e97ec635684dcfc60c22232364cc86a021e1" +path = "static-publisher/static-content/file870.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/labs/systems_administration_I/lab5-networking/index.html_gzip_035b0b542e5a8d09d430fbbfc02fffd81ec16f1679fd29f2b7907b34fbbce3c9" +path = "static-publisher/static-content/file870.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/labs/systems_administration_I/lab6-user_and_group_management/index.html_38030cb61cc7edf51d6bbe379661deb981353f3eab38b175098c790dd1b4a7d2" +path = "../build/minified/site/de/labs/systems_administration_I/lab6-user_and_group_management/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/labs/systems_administration_I/lab6-user_and_group_management/index.html_br_c323a6a38c175fee80451d8481793579ed57513885ae0cdb9ee0467c11625073" +path = "static-publisher/static-content/file871.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/labs/systems_administration_I/lab6-user_and_group_management/index.html_gzip_c2ebafd736cbd7208f0b134d60d550832b22dcd34a0a2e945e2559a22a3280f9" +path = "static-publisher/static-content/file871.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/labs/systems_administration_I/lab7-software_management/index.html_54557f0a9464169a7fc07b462df4b328f2d13b9b7078de20cb00e6d27f906894" +path = "../build/minified/site/de/labs/systems_administration_I/lab7-software_management/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/labs/systems_administration_I/lab7-software_management/index.html_br_45e517165f77ee47d532b59c5c6e0caf303dac16355f0307443d4b39481141e7" +path = "static-publisher/static-content/file872.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/labs/systems_administration_I/lab7-software_management/index.html_gzip_5a6f04be48a3ff101c6868c07cd2be6f9f6b72c6f4a5c83a3bf58b10b802031e" +path = "static-publisher/static-content/file872.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html_ceb23fc58dd245e4fa544f0acdc73d79d4710eb8458a70f3d54a28c70f6a8755" +path = "../build/minified/site/de/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html_br_73b37572d4e7772b854bbc80ebe6166ecbe3c079be8ea820b712dbba6751da55" +path = "static-publisher/static-content/file873.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html_gzip_52087987cb21ae99860de8ffc88055026d5239f2cdc909c075adc211cfe9490f" +path = "static-publisher/static-content/file873.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/labs/systems_administration_II/lab3-bootup_and_startup/index.html_d8c54295aa22dc2d2a5b1960a66aef74765e506d34dab859add2909d48b8d2df" +path = "../build/minified/site/de/labs/systems_administration_II/lab3-bootup_and_startup/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/labs/systems_administration_II/lab3-bootup_and_startup/index.html_br_3eaa6e5d6733564dacab5a8f25a6ffe41b52b541b86b85a285d02faa92436ecb" +path = "static-publisher/static-content/file874.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/labs/systems_administration_II/lab3-bootup_and_startup/index.html_gzip_fbc8f85c7ee2b5eb7ca41eb22d29cac0f85ac336adccdcc12d8b4f3ea7e19de1" +path = "static-publisher/static-content/file874.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html_da90ccee1fb51278ec6e587092eb9782b4ffa568c79a546ed3e3234f8f847dbd" +path = "../build/minified/site/de/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html_br_924743be4c30eef19169dc0f82c54d9153603574b1c38af66a3540732bb72797" +path = "static-publisher/static-content/file875.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html_gzip_55caf02a91b2d5ab9b1a7d0ce6e5622e3afce66987aa699db21b1931d3c5afd2" +path = "static-publisher/static-content/file875.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/labs/systems_administration_II/lab6-the_file_system/index.html_12a12a4b5010a6c4b65e4124591eca0b34784d2120aab212ce7a7d0fd0cb8c06" +path = "../build/minified/site/de/labs/systems_administration_II/lab6-the_file_system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/labs/systems_administration_II/lab6-the_file_system/index.html_br_1815d6b6855a0407cafe2aa40d861809a9c5897cab15808911d89d9c23e37c23" +path = "static-publisher/static-content/file876.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/labs/systems_administration_II/lab6-the_file_system/index.html_gzip_3049d1aa33d6c9b55f24aea7d97c3af81739617de837d87452fdd0ba599f379a" +path = "static-publisher/static-content/file876.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/labs/systems_administration_II/lab7-the_linux_kernel/index.html_41522863db64dd51a54db8f006537768942a1ffbd74fd998c8c46289a5aff493" +path = "../build/minified/site/de/labs/systems_administration_II/lab7-the_linux_kernel/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/labs/systems_administration_II/lab7-the_linux_kernel/index.html_br_8f7a9b35329eb0cb87ac91b47fd720708b51ee46bad79c7df0c96ce63ad8cce3" +path = "static-publisher/static-content/file877.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/labs/systems_administration_II/lab7-the_linux_kernel/index.html_gzip_c2ddee65b3fd964e4d9e4e2b69845e8acfbc084740a04967514bceac2daeb4d9" +path = "static-publisher/static-content/file877.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/release_notes/8-changelog/index.html_6050e276581fc898d297a1e992077d278aeb52a2d532007b91c738b58a8e9f5f" +path = "../build/minified/site/de/release_notes/8-changelog/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/release_notes/8-changelog/index.html_br_2a9867ef5844536bac2d24a4c407fc837c924f274e169b2ea0642b1f98dbda91" +path = "static-publisher/static-content/file878.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/release_notes/8-changelog/index.html_gzip_efc2816ede029a2d2f57fa401ff877202078bacb5262aae09beb1a77c652639f" +path = "static-publisher/static-content/file878.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/release_notes/8_4/index.html_cd2ad387a875924b33a7b591214e7fe8bfa9d491cb52cc76281703f56e5a16fa" +path = "../build/minified/site/de/release_notes/8_4/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/release_notes/8_4/index.html_br_4ee1ab9ff567ddcf87d764826407fd804faf104d0ee3b01f36bd4140c1d02043" +path = "static-publisher/static-content/file879.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/release_notes/8_4/index.html_gzip_17376cfb9b46aa72389d371ec63227a97584e069b49f1b57e18adb55d7ab5376" +path = "static-publisher/static-content/file879.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/release_notes/8_5/index.html_6fa446b06095379be81be0c693bb48a9912830726321f88d696a2f3043196407" +path = "../build/minified/site/de/release_notes/8_5/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/release_notes/8_5/index.html_br_3415e8e1aa8549a3b16d6239214fae07e43eefb2d0c6b3301edc03c995ef80b5" +path = "static-publisher/static-content/file880.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/release_notes/8_5/index.html_gzip_3862f5728998abd7534f11872e6dd2bb26a36d90e56521c5ea2dd173590062b2" +path = "static-publisher/static-content/file880.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/release_notes/8_6/index.html_19f5427b9105b867e6d1f101c12f1b99d968dc99bff601122348b1ce7c77a60b" +path = "../build/minified/site/de/release_notes/8_6/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/release_notes/8_6/index.html_br_ab8a3bdf157c49650484bd5197db6256d5de3d4d4d3fbe6f44f289e3e7dc62f1" +path = "static-publisher/static-content/file881.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/release_notes/8_6/index.html_gzip_c4a864d2319c7cc4f8a519a4818f9f56e13059c574c83916a4515ed87d546abd" +path = "static-publisher/static-content/file881.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/release_notes/8_7/index.html_565f4a60222ecdebd41223b509725679e1a4dd6e142f164225a6ab25027c0e52" +path = "../build/minified/site/de/release_notes/8_7/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/release_notes/8_7/index.html_br_e60f9e46006c4a9d602ebadd1e46ea2df5d536f852b729e934d925ec578ff987" +path = "static-publisher/static-content/file882.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/release_notes/8_7/index.html_gzip_8c22e4cfda1eb03ed74ebb9bcb086fe493e1efacdeacf1681e41537b24e05f54" +path = "static-publisher/static-content/file882.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/release_notes/8_8/index.html_2f6be14e47b8796fdf9a5d1195cedd3ba1a9457e97b68624d73375868b2e3545" +path = "../build/minified/site/de/release_notes/8_8/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/release_notes/8_8/index.html_br_3fc975d48e4c7d7e4c58a67dd376022544bb7033fcef6f787107329d241e151d" +path = "static-publisher/static-content/file883.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/release_notes/8_8/index.html_gzip_228013b92562a4e230533edbf29f8fdbbde249de34d725a17d171352e836985b" +path = "static-publisher/static-content/file883.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/release_notes/8_9/index.html_aa0d3d8f765f63ad179844855e6e70677b4691ce70ed5384ccda993419656ddb" +path = "../build/minified/site/de/release_notes/8_9/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/release_notes/8_9/index.html_br_0ccdc0b8b07ba9cb73b939bc6a3fc72d04fa9823102eae2f387f84a138aa819c" +path = "static-publisher/static-content/file884.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/release_notes/8_9/index.html_gzip_31d983618a730d9a7c340eac08efd8f34f954ffca4fcebfcbff1acb6fdc5e15f" +path = "static-publisher/static-content/file884.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/release_notes/9_0/index.html_998f7ea1b1242de08303830f7bcabb6a968032585678641ad0057e54fd2c1a1d" +path = "../build/minified/site/de/release_notes/9_0/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/release_notes/9_0/index.html_br_a5179c934adf48bdf196005be34bf19dbe3afb40239f5b49ab2a2882bad3e54e" +path = "static-publisher/static-content/file885.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/release_notes/9_0/index.html_gzip_90989910ca87b9f59fc19daaf0d70f1ff5772cae8bdf529adf3ed5119208b840" +path = "static-publisher/static-content/file885.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/release_notes/9_1/index.html_2902f41bcc654cc329eb1933d7ceb94ca485a9148e68ad78a60018159e1517b0" +path = "../build/minified/site/de/release_notes/9_1/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/release_notes/9_1/index.html_br_3009928ee79f4530ae76db631d9774c9e0f1611a243176bccf6215485416420d" +path = "static-publisher/static-content/file886.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/release_notes/9_1/index.html_gzip_3201f6f8e1c2bac835927a8ac2d72750a4317ff052bb5102df7b930e8edaa4b7" +path = "static-publisher/static-content/file886.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/release_notes/9_2/index.html_bcda212b1db8d98f6fa3660d35afce65164f1f9fb47e707ac33a6fc1b30782e7" +path = "../build/minified/site/de/release_notes/9_2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/release_notes/9_2/index.html_br_65adf63b0260c56e1c8f99713a49083bafb371c7535daf6eca81e32031d1c423" +path = "static-publisher/static-content/file887.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/release_notes/9_2/index.html_gzip_16dbc718d31ee2c27936efd2f1ddb3e9a5133ec4371fb75737451ef8d773456f" +path = "static-publisher/static-content/file887.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/release_notes/9_3/index.html_3ec0873d9a8bb3379986557a6a150e3ac2f6bcb28468d47e865525fab3e9c4d3" +path = "../build/minified/site/de/release_notes/9_3/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/release_notes/9_3/index.html_br_e5b34e2d91269c75b5a028f1e23c7350f5b09120c099fdd7c06a175eff0f50fc" +path = "static-publisher/static-content/file888.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/release_notes/9_3/index.html_gzip_08a1e1eea4d22f26721062a1458d35a4ee9c801bdcbf4205e0bf997957a13f80" +path = "static-publisher/static-content/file888.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/release_notes/index.html_2f3a79e5b323a29cf08270f0ce30ed93b4d20c020fe72b05b937189f52d18905" +path = "../build/minified/site/de/release_notes/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/release_notes/index.html_br_fd043e1065b49cb2c8cc860583b710bd44188c8269086b6c5080e4d019ba9b22" +path = "static-publisher/static-content/file889.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/de/release_notes/index.html_gzip_cb8630a1b5ec4847aa0ff12d848dfbdd6efa6f752905e6cdd8e9c52cd1ad67ec" +path = "static-publisher/static-content/file889.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/admin_guide/00-toc/index.html_5d04ed5b6e2acf95cee02b645fd329a6f02836d951213dfcac241ca05c6eae89" +path = "../build/minified/site/es/books/admin_guide/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/admin_guide/00-toc/index.html_br_9559ec8ba496fa92826c1faffb19d03cee44720a96d75349b1205d598a911c36" +path = "static-publisher/static-content/file890.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/admin_guide/00-toc/index.html_gzip_23e1f8bc56152757de3cf60c1d97b3ed0035523188eda741db87442499740298" +path = "static-publisher/static-content/file890.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/admin_guide/01-presentation/index.html_d82ba0ef47eb95299ddb70c71c40fb5705cd35eeb088edf0dfea4972354d64a7" +path = "../build/minified/site/es/books/admin_guide/01-presentation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/admin_guide/01-presentation/index.html_br_4da318016d3d086685e2cfb2863448bfcedc86433e9e3fff756db9bd1cd245da" +path = "static-publisher/static-content/file891.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/admin_guide/01-presentation/index.html_gzip_5224ee5808791e177f79df9c12d0d5d6c4d0bd854044c945b215e35d523cf1c9" +path = "static-publisher/static-content/file891.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/admin_guide/03-commands/index.html_b0db29f65beee0f4faa39a6757c7eb9a816c6c351c39d9a08623ff67a3b9c4f7" +path = "../build/minified/site/es/books/admin_guide/03-commands/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/admin_guide/03-commands/index.html_br_bcd477c4870fd2a9c203fd467df19537efbb24a03d797b73d404d8d138b8b57f" +path = "static-publisher/static-content/file892.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/admin_guide/03-commands/index.html_gzip_7b2bc5e0e570a9bf7475b72ae80283a20c732ad234e0afd2a3fe06461e4d121c" +path = "static-publisher/static-content/file892.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/admin_guide/04-advanced-commands/index.html_e571e30f71d062cf20c84205df36bff94e861bca08ada7952f0ba4b71e5a7a5e" +path = "../build/minified/site/es/books/admin_guide/04-advanced-commands/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/admin_guide/04-advanced-commands/index.html_br_d96c89e98edb85fb392f771447cd95130db5768c63f2b45a558e984e57126fb9" +path = "static-publisher/static-content/file893.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/admin_guide/04-advanced-commands/index.html_gzip_148b0453a0af7becfaeb5f49eac8c0e63c8837362176ea91d94e207f99355f17" +path = "static-publisher/static-content/file893.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/admin_guide/05-vi/index.html_20a40eb95911cb5946da9eb7a905cffbf202ea4d5889586a445103e4435b7380" +path = "../build/minified/site/es/books/admin_guide/05-vi/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/admin_guide/05-vi/index.html_br_151c2295cac052e92fd2d09dfe4b8913e8f5276b60b745669ad4ff60147531cf" +path = "static-publisher/static-content/file894.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/admin_guide/05-vi/index.html_gzip_e5f26bbacdb242da5a83197fb4415fe4b6d82e30ae2a4314a1f8c79b8d32c6da" +path = "static-publisher/static-content/file894.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/admin_guide/06-users/index.html_0474b2b3ddafed9602cab189786dc0a3a3323b4f604dc0196cf7d7d98ee54826" +path = "../build/minified/site/es/books/admin_guide/06-users/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/admin_guide/06-users/index.html_br_27d0f3a4c51a676e374990015b0df6e9df26b951ef83dd66ad668e7081e58b47" +path = "static-publisher/static-content/file895.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/admin_guide/06-users/index.html_gzip_0b483f98cd4271f11cd243407a018c7edd5873af7f9c6b56e774216a9ee93af6" +path = "static-publisher/static-content/file895.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/admin_guide/07-file-systems/index.html_0372122759cc50d95022f75e258ae1ba6f53406a496350fd0a8448ae36074d47" +path = "../build/minified/site/es/books/admin_guide/07-file-systems/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/admin_guide/07-file-systems/index.html_br_0846c6ad41c35e1f88ea222360bedd13c363e43ac13c7c7612ff2c454040aa69" +path = "static-publisher/static-content/file896.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/admin_guide/07-file-systems/index.html_gzip_7ecedd0f23ec4e346e781cc470111731396823248f4635ad58644504e4786430" +path = "static-publisher/static-content/file896.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/admin_guide/08-process/index.html_92b2b714e55cb0024b9132109ce2cb48048208782264fb4a33de769d1fa6306e" +path = "../build/minified/site/es/books/admin_guide/08-process/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/admin_guide/08-process/index.html_br_0c88768365b040e8e3d10a318c33acf007597776ff851d1c6b27d4a0ce6b1589" +path = "static-publisher/static-content/file897.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/admin_guide/08-process/index.html_gzip_2f22a650212513a1b5d8ffdc046097e797dcce183914b35374e1a311f725a542" +path = "static-publisher/static-content/file897.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/admin_guide/09-backups/index.html_e2ca72cfe173f2fc7ee4bf88b88b4fa063b92d885f33c532d00c9e8779dac50e" +path = "../build/minified/site/es/books/admin_guide/09-backups/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/admin_guide/09-backups/index.html_br_27eabc3db26f4b392b496c4e522e862e3e8ea8396273912fee8f3366fbd77565" +path = "static-publisher/static-content/file898.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/admin_guide/09-backups/index.html_gzip_5b46a3ea20fbc532f2de7cdabaa1fb868d69d43f4bd7ec6c908680a31dfd8840" +path = "static-publisher/static-content/file898.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/admin_guide/10-boot/index.html_adeca18694b0f27b345555396f455bfb0ae1e0f8c94d7e55c8fcfe189bd2f52b" +path = "../build/minified/site/es/books/admin_guide/10-boot/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/admin_guide/10-boot/index.html_br_77b886f66ea31d1859e82258377a8424a8963ef23450feda2617e64b051e5fda" +path = "static-publisher/static-content/file899.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/admin_guide/10-boot/index.html_gzip_891502b184ec295be71398cf2e9fa83fe1e120b70b129f042fda61b059410c5d" +path = "static-publisher/static-content/file899.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/admin_guide/11-tasks/index.html_664677ff1b3c4c5d1930d9ca15a0786d5ce7708697be42dc7b900114e312d88c" +path = "../build/minified/site/es/books/admin_guide/11-tasks/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/admin_guide/11-tasks/index.html_br_92a9f30a91d1e43aaef0e95bd7df86a1d652497c336b7b7475db4358e5bd961c" +path = "static-publisher/static-content/file900.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/admin_guide/11-tasks/index.html_gzip_8e1fa71504e3e20bc2ef6f5a5d5a68b78ab9f8da6ef69ff79ebe56ff7267fbe9" +path = "static-publisher/static-content/file900.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/admin_guide/12-network/index.html_6f299f40c9521decf0409489d952bece27d414c44d3e736223bd6bf9365ed0c4" +path = "../build/minified/site/es/books/admin_guide/12-network/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/admin_guide/12-network/index.html_br_b864e7f9121fb655bbb1a2bde84d62de29efaeb69d0c623a5c14dd65f56c54e3" +path = "static-publisher/static-content/file901.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/admin_guide/12-network/index.html_gzip_6b90a430dbdc65dd06490e0485f18a523007b9581332ddda67e1748c2bada7dd" +path = "static-publisher/static-content/file901.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/admin_guide/13-softwares/index.html_fe79289e7811c7aad91e26528a26b1058d48f723fedb734687d1d4595ea3d218" +path = "../build/minified/site/es/books/admin_guide/13-softwares/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/admin_guide/13-softwares/index.html_br_20aa6b0da3e7d44fdabcb69169fae4f40171e7bd78b9f8a3aa5256b34e8c3096" +path = "static-publisher/static-content/file902.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/admin_guide/13-softwares/index.html_gzip_8c31f66e72cb6fc352b8dbaaa455a1ce27735196833b55d30c02136acdcd7b83" +path = "static-publisher/static-content/file902.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/admin_guide/14-special-authority/index.html_cba5c880891e4530349ada0c0734489b43bfa2f673b27e5a947b3130c4e1534c" +path = "../build/minified/site/es/books/admin_guide/14-special-authority/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/admin_guide/14-special-authority/index.html_br_503fa3479c867c6692f5a4b1b1892c960c2a59d98dd9db8fca1c0037161cfaa5" +path = "static-publisher/static-content/file903.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/admin_guide/14-special-authority/index.html_gzip_ada783d55b0e38bbb8488f037694195e19b5536d08b50ef924a07e059d44f7c9" +path = "static-publisher/static-content/file903.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/admin_guide/16-about-sytemd/index.html_f56ddccedb27fa14a4f27e1c05de4ef7cd828a6b33428e9b1a0d3035892abbd2" +path = "../build/minified/site/es/books/admin_guide/16-about-sytemd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/admin_guide/16-about-sytemd/index.html_br_3dd9c134b40fb6780693ab222f65c306a88ce4ce17d41d8a93d58297835261a4" +path = "static-publisher/static-content/file904.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/admin_guide/16-about-sytemd/index.html_gzip_b5586d44cc8db3b06e5bdcad88bb01a5d4e01a880ffe3871cb390471a3d62666" +path = "static-publisher/static-content/file904.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/bash_programming/01-Shell-overview/index.html_a0549347589be2fac1bb5a4040ac483de549a8b3aad8245098408bf40941ed06" +path = "../build/minified/site/es/books/bash_programming/01-Shell-overview/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/bash_programming/01-Shell-overview/index.html_br_6401e1eaa73a8d2d86babd510fb46661cb158079cbffb6327e192e11326b839d" +path = "static-publisher/static-content/file905.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/bash_programming/01-Shell-overview/index.html_gzip_7ac5918e65d2f81e2fa4c369e2dd2ba491054ee14552bc6746cca48e2f7820e4" +path = "static-publisher/static-content/file905.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/disa_stig/disa_stig_part1/index.html_b6bb16d7a44c3c9078e93faea4b8afb13784d2dd2c7fc4a92cb536bdeb3247dd" +path = "../build/minified/site/es/books/disa_stig/disa_stig_part1/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/disa_stig/disa_stig_part1/index.html_br_f26323c13d78ad3017995c1076a684bcf9ace6bdd0f8b73dc34e98586c86c7b6" +path = "static-publisher/static-content/file906.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/disa_stig/disa_stig_part1/index.html_gzip_2d0232d211ff602df51372cf4596ec0c7710a981699741066eab5711ba4ea55d" +path = "static-publisher/static-content/file906.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/disa_stig/disa_stig_part2/index.html_d7b5f9a2de331181564b32752f339aa53cc79de5977357d44529702b5ab3e53d" +path = "../build/minified/site/es/books/disa_stig/disa_stig_part2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/disa_stig/disa_stig_part2/index.html_br_5700c115c678d6240202bed991117d19e8402f88fe18c487c8aa74f0d099094a" +path = "static-publisher/static-content/file907.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/disa_stig/disa_stig_part2/index.html_gzip_0f7de5492030f01cf9b40a96298fc1fb80e73578217be7870f9d13c8910d763b" +path = "static-publisher/static-content/file907.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/disa_stig/disa_stig_part3/index.html_6c4b29eacd13a60dd9422097d87fcce8a2e554727c689ea78cfed4be022a224f" +path = "../build/minified/site/es/books/disa_stig/disa_stig_part3/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/disa_stig/disa_stig_part3/index.html_br_08c02d80e3a7c03284e7328994b938c2830efef1bbdaf51e520b5a8fab3edc9b" +path = "static-publisher/static-content/file908.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/disa_stig/disa_stig_part3/index.html_gzip_3e99f59f56e8029decaaacafd9669ba3478d77ca093233b5c56c85af7473e352" +path = "static-publisher/static-content/file908.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/index.html_673e8ca558b1b88bb0f28212d2705519de7d5965caff102e439a4eb8c26c3740" +path = "../build/minified/site/es/books/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/index.html_br_7381cecc97f652ea8646d03a2278f9e2b0ce9324b6a6c3bb84ba99c3c07f8175" +path = "static-publisher/static-content/file909.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/index.html_gzip_f8e3cd4a4d36a0cca8163915666f4738bf83cd5367a37cdda9e56fb5e92b4089" +path = "static-publisher/static-content/file909.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_ansible/00-toc/index.html_b4a1ff366a5ff3fa2e7b922cd5c7d4d0a85743742ddf8d89f8bc961f8ada5d00" +path = "../build/minified/site/es/books/learning_ansible/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_ansible/00-toc/index.html_br_9f154d2facca91f8aea47136b412f2053f74307133060d137aa5c8a5e607ee3f" +path = "static-publisher/static-content/file910.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_ansible/00-toc/index.html_gzip_e4ffde7ce01d3bc9541f0ef2b2e3355758b668c09cc5dfae4b5204b1a72037c4" +path = "static-publisher/static-content/file910.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_ansible/01-basic/index.html_27ad3ff17882265d9788e9b310c80bc9103f5b580523b7430dbb164560f90d80" +path = "../build/minified/site/es/books/learning_ansible/01-basic/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_ansible/01-basic/index.html_br_66644a7465340893095fb4da77d83ce414c0d3335ebebacfad878f9b246ef528" +path = "static-publisher/static-content/file911.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_ansible/01-basic/index.html_gzip_3439f27b4f750f80df065d97e04689b33e1108ac38a7dc403809d419db2af125" +path = "static-publisher/static-content/file911.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_ansible/02-advanced/index.html_f9e002ea14d5081d74ca18d61b05228badc1a45d559405f12492af65781ea00d" +path = "../build/minified/site/es/books/learning_ansible/02-advanced/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_ansible/02-advanced/index.html_br_df0979311eb1fcba1148a642b620a601ce01e5e0c2efd2a5fd65ab9dda84e95c" +path = "static-publisher/static-content/file912.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_ansible/02-advanced/index.html_gzip_64d937a2fd7e3523a02c8324b897a38e1c334663bd02fe5eb815c18cf4a4887c" +path = "static-publisher/static-content/file912.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_ansible/03-working-with-files/index.html_4696e5e24317d9f029566b83a757af1fb5e3ac808e54b93179b17f834486a89d" +path = "../build/minified/site/es/books/learning_ansible/03-working-with-files/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_ansible/03-working-with-files/index.html_br_713a819a8fa82d08d52d23a62afc1a7f502a1c23f1a699d164a3c9e5178a5b5a" +path = "static-publisher/static-content/file913.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_ansible/03-working-with-files/index.html_gzip_3efe49fcc733d7ccc84723151ee5c8d76f0bea8ac3b1d8e2c649870993d03991" +path = "static-publisher/static-content/file913.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_ansible/04-ansible-galaxy/index.html_c39cd814edac1763c45b901067e5871a0beca9549b05d0e393536c139a36d2d1" +path = "../build/minified/site/es/books/learning_ansible/04-ansible-galaxy/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_ansible/04-ansible-galaxy/index.html_br_323e1d3a992b92c052d01382dd7353647a69527a80a6b89320e556ab06dee339" +path = "static-publisher/static-content/file914.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_ansible/04-ansible-galaxy/index.html_gzip_1c18131b341529c5496dbd88ba6f416bff6467f02c02d86aeb4247b64bd96207" +path = "static-publisher/static-content/file914.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_ansible/05-deployments/index.html_1b440bc118c30a391ba8beb5f8c5582f8c225a1658afd4338759e5efa6d2bb7e" +path = "../build/minified/site/es/books/learning_ansible/05-deployments/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_ansible/05-deployments/index.html_br_fe443da1e2f5460ce443a037765aa5b8bd6acf49c8928306cf8a65afded981f8" +path = "static-publisher/static-content/file915.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_ansible/05-deployments/index.html_gzip_f9ee2cee13be9b56f87f71c5324dbc6317a0c0e23d0515b8d8d107c64e136d46" +path = "static-publisher/static-content/file915.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_ansible/06-large-scale-infrastructure/index.html_e7b2f5888fa356a7e742255782ade2b79b8042b4bd6bd6ce241cd9a2add93dba" +path = "../build/minified/site/es/books/learning_ansible/06-large-scale-infrastructure/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_ansible/06-large-scale-infrastructure/index.html_br_760f7904f33832a26e463251b6c6cb6303d20f3acc563c346730972499304ec1" +path = "static-publisher/static-content/file916.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_ansible/06-large-scale-infrastructure/index.html_gzip_d7e6ff7a67fa92df4f882cb718305c3170f1169f70168371cccb6be8303a738e" +path = "static-publisher/static-content/file916.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_ansible/07-working-with-filters/index.html_3615489b1801e8c4d9b6790cac107e8b7ae986b86681cf2e7b11ca5c2d6b207e" +path = "../build/minified/site/es/books/learning_ansible/07-working-with-filters/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_ansible/07-working-with-filters/index.html_br_5ea38c42590f1eb9e3d9d18292c525b6e356ecb2769e255a8f417296aee03bb7" +path = "static-publisher/static-content/file917.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_ansible/07-working-with-filters/index.html_gzip_29584b8a9ebd5eadc1736f5cc385f3b71b3eb01e953ed49bd697b2500941236c" +path = "static-publisher/static-content/file917.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_ansible/08-management-server-optimizations/index.html_c031f6d29e55ccd3a3d96e2000167bc50623e407bf3a06e84f0cc78559d5760e" +path = "../build/minified/site/es/books/learning_ansible/08-management-server-optimizations/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_ansible/08-management-server-optimizations/index.html_br_22153f576b40bb2dbd8b8caadadb97800cdc58409efefe11b08653c0feb2acb6" +path = "static-publisher/static-content/file918.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_ansible/08-management-server-optimizations/index.html_gzip_5fa34b4330ce182c0cee0179117a322c5c1be2914e6dc3ac8639732e7368606e" +path = "static-publisher/static-content/file918.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_bash/00-toc/index.html_030a7347be8a7a78fb1fe0a47d2e8379106624314b48cc6bba10831f6c2504fc" +path = "../build/minified/site/es/books/learning_bash/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_bash/00-toc/index.html_br_cf0e9186368e3b1cc21748faad685620c2ad334b5b6f182962c2fdb6fd554423" +path = "static-publisher/static-content/file919.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_bash/00-toc/index.html_gzip_14ca44340384dfb63c21129ee8848d4fac704ad2b502be1c6a290facb32fcf05" +path = "static-publisher/static-content/file919.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_bash/01-first-script/index.html_1ec33c8e11f82ea0b2653ef2b8b7defd8052348a1c69667ec43c3f72520c9ab1" +path = "../build/minified/site/es/books/learning_bash/01-first-script/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_bash/01-first-script/index.html_br_a1883dee6246942f387fdd43b8423a88ca47487904c6fa2b79b47f769a839ac8" +path = "static-publisher/static-content/file920.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_bash/01-first-script/index.html_gzip_e4f8b72b2e684fc73b5a332af99682c004170dff9800aad764883eb6d96fdb0c" +path = "static-publisher/static-content/file920.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_bash/02-using-variables/index.html_e6e20e6590508439437a7836c93fcf46bff44a15a753f32e27f095bb6cb77980" +path = "../build/minified/site/es/books/learning_bash/02-using-variables/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_bash/02-using-variables/index.html_br_c027281936dfad385298788cfd5f4ab8ef6920cbf6b5dec5923fc1b84d59e069" +path = "static-publisher/static-content/file921.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_bash/02-using-variables/index.html_gzip_503a0f141452f62a0befaf97ded3b8e5c1fa3aeb57b8419e5bc0b01ff215a4fe" +path = "static-publisher/static-content/file921.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_bash/03-data-entry-and-manipulations/index.html_0d0cd5d6e51b071afabe821c23d04e901b46c76be9cfffcab40fd8cc979bfbab" +path = "../build/minified/site/es/books/learning_bash/03-data-entry-and-manipulations/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_bash/03-data-entry-and-manipulations/index.html_br_341197244820fbc678770a8cfcc242ab1350b34e92f06a6f8a088e54a07300b3" +path = "static-publisher/static-content/file922.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_bash/03-data-entry-and-manipulations/index.html_gzip_93f5ef2911607923851a46914c9c96ea923805ee21840ed21506c204f36d8123" +path = "static-publisher/static-content/file922.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_bash/04-check-your-knowledge/index.html_a16253a7e5a8d3b59061a44cdf1a4df18d95b9e8ac020dec9e56abbcb7d961f5" +path = "../build/minified/site/es/books/learning_bash/04-check-your-knowledge/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_bash/04-check-your-knowledge/index.html_br_0a9f4f14237d93b5066d14bdb10e9ae81ae76c5e09acd8c0889990a8502cf03e" +path = "static-publisher/static-content/file923.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_bash/04-check-your-knowledge/index.html_gzip_b8e16e88529cc03a8a5abb2f304af3919856febddd6d64f14365d5a3676d61b5" +path = "static-publisher/static-content/file923.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_bash/05-tests/index.html_5157f615322e63d683551a2d6ba0c4f77ef4adac10925d4b00b6f28252787160" +path = "../build/minified/site/es/books/learning_bash/05-tests/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_bash/05-tests/index.html_br_c44d70505ce4ba5c0b2362b4c4afbcd9039f57e5f307e2258a8a30c2be1cb3cf" +path = "static-publisher/static-content/file924.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_bash/05-tests/index.html_gzip_dda2f8a3db48fc218d16d1e3fc74d78801d097cbb56f15e937d68063a5785066" +path = "static-publisher/static-content/file924.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_bash/06-conditional-structures/index.html_c8ee3e16d46ed40f0f577e8fb35df4084486d5c39bd4e0b68fe584f54766c9a5" +path = "../build/minified/site/es/books/learning_bash/06-conditional-structures/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_bash/06-conditional-structures/index.html_br_48717c27a84132cbe1be1d37bd2ded60539edf7dd254ef8019f2a8581207337c" +path = "static-publisher/static-content/file925.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_bash/06-conditional-structures/index.html_gzip_10dccb271ce771667be43a1db3a1c0ce6e731a51161ca64d5fa267d3f125b3a4" +path = "static-publisher/static-content/file925.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_bash/07-loops/index.html_af4c67d759e122f257f11789b9b37e8c0961e425b0adddc5af8b41d5db2d156d" +path = "../build/minified/site/es/books/learning_bash/07-loops/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_bash/07-loops/index.html_br_20c390aba848d2ba215641067433980fcc29a8f13a9c917785c0dacc0d777795" +path = "static-publisher/static-content/file926.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_bash/07-loops/index.html_gzip_b17f8cf397488fe2d5b1d07fda3db7083a4477e726f33881c3ff71e4f5cc7a0f" +path = "static-publisher/static-content/file926.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_bash/08-check-your-knowledge/index.html_f7476ad4367937fd84a6a73e2568492294f09bdcf81eb27a701e3a881212eeaa" +path = "../build/minified/site/es/books/learning_bash/08-check-your-knowledge/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_bash/08-check-your-knowledge/index.html_br_febf644fe8407a1d432d4568a52fc9bd70d6d3fb73a05d710bd59b02b85ffd8d" +path = "static-publisher/static-content/file927.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_bash/08-check-your-knowledge/index.html_gzip_90143439e910b09857316e4382d7ee5a7b5b6cff29c8875cced13c8087cb4b91" +path = "static-publisher/static-content/file927.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_bash/appendix/02-variables-logs/index.html_2aa1b4f77ba26be475b14020a95f6a8ad8576e746513bbd6214e183a7f941285" +path = "../build/minified/site/es/books/learning_bash/appendix/02-variables-logs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_bash/appendix/02-variables-logs/index.html_br_acde407865601d23400ffc98b810fafeb701771b0e66a655d6764666b23507fd" +path = "static-publisher/static-content/file928.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_bash/appendix/02-variables-logs/index.html_gzip_e3f3570ddf17e7a6944af0f13af9c016f8855ad10bbed75d863037b450186c31" +path = "static-publisher/static-content/file928.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_rsync/01_rsync_overview/index.html_d5c68aa8f9a01bb765614b21ea6e42d47b247819a2033e53c47bcae80ab41037" +path = "../build/minified/site/es/books/learning_rsync/01_rsync_overview/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_rsync/01_rsync_overview/index.html_br_7d4c608b0e820abd6ea8b0a0b8b9707eba8eb8d2023366f9608f6eab20205b2f" +path = "static-publisher/static-content/file929.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_rsync/01_rsync_overview/index.html_gzip_5ab8ed2db7503a8677e3771d3f1ee4848b8e559b9843193daeafbf45679a377e" +path = "static-publisher/static-content/file929.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_rsync/02_rsync_demo01/index.html_3799b0537e59f89205853154a3eb8e38cb9537f27e83ae58aee11c95e78dd4e2" +path = "../build/minified/site/es/books/learning_rsync/02_rsync_demo01/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_rsync/02_rsync_demo01/index.html_br_a753a929ccecf933c1cdb1e17188ca9dac94e4c5b9400b8be7157d792f5e0feb" +path = "static-publisher/static-content/file930.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_rsync/02_rsync_demo01/index.html_gzip_c0d1748a31e01046a1f59efb315cae13c09693b671be7c9a535dce9a94736f58" +path = "static-publisher/static-content/file930.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_rsync/03_rsync_demo02/index.html_f0d3084e56fa0cbe14d58382842b52318ee5f1685050549373f3fadbafa7c8a5" +path = "../build/minified/site/es/books/learning_rsync/03_rsync_demo02/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_rsync/03_rsync_demo02/index.html_br_3c9536087050be6ba9378be230826ec8c8f4c700d9ad10d291620219320d43ec" +path = "static-publisher/static-content/file931.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_rsync/03_rsync_demo02/index.html_gzip_773e101bbbd5bc0c7709555e31c51f6be13035102e61ea85afa6176df6cb3d85" +path = "static-publisher/static-content/file931.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_rsync/04_rsync_configure/index.html_8e6d2cb39ebc58c76470b1baa4db4255ccccb70b411c48008c6b6c8b419159af" +path = "../build/minified/site/es/books/learning_rsync/04_rsync_configure/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_rsync/04_rsync_configure/index.html_br_05b81795b57cf979702f8573063b256291f079186de0637d7706daf5d8e3d26c" +path = "static-publisher/static-content/file932.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_rsync/04_rsync_configure/index.html_gzip_d6ca753c614abf443605e4bd484fcce6ee39f21369b3ddf4a8561110db0eb39e" +path = "static-publisher/static-content/file932.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_rsync/05_rsync_authentication-free_login/index.html_048f68efee9e853bb041e8439d9307c8e1d5fa1694f873b72e146745fe011007" +path = "../build/minified/site/es/books/learning_rsync/05_rsync_authentication-free_login/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_rsync/05_rsync_authentication-free_login/index.html_br_d1fa9f3dcab26d8a1bb7e3f71a3d2daaf49ad68b438d52ee1a4298ee44295b01" +path = "static-publisher/static-content/file933.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_rsync/05_rsync_authentication-free_login/index.html_gzip_ce4ecd2ea46b7d9bcc4e6ce812406ae41d319703c8b7b4a7e12c336c5352a431" +path = "static-publisher/static-content/file933.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_rsync/06_rsync_inotify/index.html_583674d822e3b96d4ff418ddea582671ce67e91d5b95db3d521df2106541d27a" +path = "../build/minified/site/es/books/learning_rsync/06_rsync_inotify/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_rsync/06_rsync_inotify/index.html_br_0cf5f0b522febe4961d324534db16635af1280d6827a591f4595ee986db9bc22" +path = "static-publisher/static-content/file934.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_rsync/06_rsync_inotify/index.html_gzip_7e035b3e2c9640e89f76cf9e4ec8e5e758191b75d0163c41d3a2e21b6d065e6a" +path = "static-publisher/static-content/file934.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_rsync/07_rsync_unison_use/index.html_549f2073044f955a07a337fdf02fd34e64685c6fc9c094d73033c1cc5832c949" +path = "../build/minified/site/es/books/learning_rsync/07_rsync_unison_use/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_rsync/07_rsync_unison_use/index.html_br_e84c1a0b3ab83cb33017204ee19f38c2a81bf794c612f1f9692741f7e2d221ed" +path = "static-publisher/static-content/file935.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/learning_rsync/07_rsync_unison_use/index.html_gzip_5248fb23c3851e9d1b1bf1522415682c307ea97a252d0412fba8be8aa3dc5acd" +path = "static-publisher/static-content/file935.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/licence/index.html_b74794081d50a8a0cdd9c50d426b38abc90945315786e485daea464d079f79dc" +path = "../build/minified/site/es/books/licence/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/licence/index.html_br_d4605a14789c51c71729652a86d71269bb989e6af32715615b6a897398e03d4c" +path = "static-publisher/static-content/file936.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/licence/index.html_gzip_6b8e8d1af68130995c7f734649c9d2d11f4bc91bd7e674d0a1bd66c43db4e575" +path = "static-publisher/static-content/file936.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/lxd_server/00-toc/index.html_a9614726b78d1728bc201c77da397f50ea41707adbba8d98ad8940c5ff1c4feb" +path = "../build/minified/site/es/books/lxd_server/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/lxd_server/00-toc/index.html_br_1ceb228f702f872808be6a655ec2d734f09a7914ed8781b4ba9e628aed041a63" +path = "static-publisher/static-content/file937.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/lxd_server/00-toc/index.html_gzip_98436e7a510690042167fb6563fde7bc701d3f7597ebd71a7e90b45807ae0e48" +path = "static-publisher/static-content/file937.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/lxd_server/01-install/index.html_3a7f1ca773362895c29d999aac820b81b421b3162262108a32d7324c52d7163a" +path = "../build/minified/site/es/books/lxd_server/01-install/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/lxd_server/01-install/index.html_br_d0e128fb950a48be3fec83d9039f96e290e4171b00e3b77f5d564be8006b19be" +path = "static-publisher/static-content/file938.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/lxd_server/01-install/index.html_gzip_6da1a3d3b996a2c810a8a07a6083c98f023d92755f2be65a28305468be9b3404" +path = "static-publisher/static-content/file938.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/lxd_server/02-zfs_setup/index.html_6c9b316907cbd6da5984926ddede3f45ac8c29167aa8454440f8023c5befe17c" +path = "../build/minified/site/es/books/lxd_server/02-zfs_setup/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/lxd_server/02-zfs_setup/index.html_br_3f39786d7a439caf830833fcc34373ba32617db5b766b0b000a84b193cd25495" +path = "static-publisher/static-content/file939.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/lxd_server/02-zfs_setup/index.html_gzip_785039953579444c990eead154ff16e97d2112717fcf8cbf5cf5e4b10a13ca79" +path = "static-publisher/static-content/file939.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/lxd_server/03-lxdinit/index.html_8083cee2b94edd63aebe55aa3017206c068399257adcfaf5e487ca2fb63588e7" +path = "../build/minified/site/es/books/lxd_server/03-lxdinit/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/lxd_server/03-lxdinit/index.html_br_e93f9520f36a0d36ae80f3edf88ca83f4701acaa0bff78fd9e39e08dde9fecc7" +path = "static-publisher/static-content/file940.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/lxd_server/03-lxdinit/index.html_gzip_e09d9c7520ca6650b9f686fbc06091100e3438d430eb0a2a3047c8a427249f34" +path = "static-publisher/static-content/file940.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/lxd_server/04-firewall/index.html_a2d3607e7d5437624a09003407c202769f5cdd8622a67809bb23927f9177a828" +path = "../build/minified/site/es/books/lxd_server/04-firewall/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/lxd_server/04-firewall/index.html_br_11c578f4e633fd2b9e889420d79da0dbd81090ff00583a48430a4425e41f6040" +path = "static-publisher/static-content/file941.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/lxd_server/04-firewall/index.html_gzip_4b33883ebc9792929a09f995eea4be36426c965a11286ea903f0b81eb4da7965" +path = "static-publisher/static-content/file941.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/lxd_server/05-lxd_images/index.html_ec83c520320e33f7377d2455b01897e72b3befd616e3ba5c7e5bf2ffc260e05a" +path = "../build/minified/site/es/books/lxd_server/05-lxd_images/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/lxd_server/05-lxd_images/index.html_br_ff15633c0a3e029be7c3acd38bcb9bc108bdf14d41db6d743c2837f2b8c0ec97" +path = "static-publisher/static-content/file942.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/lxd_server/05-lxd_images/index.html_gzip_8cee776c6cbd72763516f1c6ef9a6026de35ff4ab2f5dc0ef72d28064e54d4e4" +path = "static-publisher/static-content/file942.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/lxd_server/06-profiles/index.html_84327cf8ea94a69c1335f8ffbfcb45fd9402e6f3a196d45904530e9e151339c7" +path = "../build/minified/site/es/books/lxd_server/06-profiles/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/lxd_server/06-profiles/index.html_br_ba6465dd0279ff8ede7e92ff2ebf882a8dcbd6472de2dbd555ad0f1512fb3653" +path = "static-publisher/static-content/file943.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/lxd_server/06-profiles/index.html_gzip_dc46047df42144977ecde2c863c08d7328c8a59c26766addfb0bfe98b9e83612" +path = "static-publisher/static-content/file943.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/lxd_server/07-configurations/index.html_eb3e652a4510ada090d826722ce029a3d430eda66252e736e032358f34c63b56" +path = "../build/minified/site/es/books/lxd_server/07-configurations/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/lxd_server/07-configurations/index.html_br_32ff8c1b1c35783f5de0abd6702a82d0dfc7de392e406bc403eeaa37a718bb3e" +path = "static-publisher/static-content/file944.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/lxd_server/07-configurations/index.html_gzip_4d8f01a925a416e1e3bb1b02eec4629aa1428d9ab87d132753b588ae7749b5c3" +path = "static-publisher/static-content/file944.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/lxd_server/08-snapshots/index.html_455c0d0cab9a64a076512c218dc95728b164c7dac791f5dbc7d07bd54114345d" +path = "../build/minified/site/es/books/lxd_server/08-snapshots/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/lxd_server/08-snapshots/index.html_br_e95729396bf30e263275cf8620955150cb320b2bea591d3b3ef4bfa8fd37b71b" +path = "static-publisher/static-content/file945.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/lxd_server/08-snapshots/index.html_gzip_13ad12acb05d67a2aec27b0a28576ea84bdd05e5c616412ce60083bcdec384d0" +path = "static-publisher/static-content/file945.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/lxd_server/09-snapshot_server/index.html_a86ad8b058946bcb994fc6808ac672889ff51a4e7f4daa64b8d46219f0a14b33" +path = "../build/minified/site/es/books/lxd_server/09-snapshot_server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/lxd_server/09-snapshot_server/index.html_br_54c9c4304ac647d8dfe877402213981c103c33ce5ec9e1122e4139567e20f8aa" +path = "static-publisher/static-content/file946.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/lxd_server/09-snapshot_server/index.html_gzip_546bc5ec38e694d648d748ad1dcecf17d583ea6ce74879e1fd66070c5cbf5fa3" +path = "static-publisher/static-content/file946.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/lxd_server/10-automating/index.html_4f76aca913420573410ee38cb3ae405d4cad87677a73c65d7604d2f30766bb30" +path = "../build/minified/site/es/books/lxd_server/10-automating/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/lxd_server/10-automating/index.html_br_11ff0c0eedb5fd2693f2754dea257ac51729a6f37373a45138fd5f5d70de32db" +path = "static-publisher/static-content/file947.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/lxd_server/10-automating/index.html_gzip_36d37fa898bed4a360f8e22c7c3bc19c7a56eab6d8da757b40e4d34c2e2da0c9" +path = "static-publisher/static-content/file947.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/lxd_server/30-appendix_a/index.html_87e187e7ad294dca5950181dd6ffc9968083480fb9313d6d99bb3da60efadec1" +path = "../build/minified/site/es/books/lxd_server/30-appendix_a/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/lxd_server/30-appendix_a/index.html_br_91d8747ec1076ebf43055051c7a215c1b2dcd294555e6d39cec2a94e8a4b7bbf" +path = "static-publisher/static-content/file948.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/lxd_server/30-appendix_a/index.html_gzip_dfabbe2d0aff67cdd6f08a28f163ca6cea852aa5e0bae70b2cee202ddf36485e" +path = "static-publisher/static-content/file948.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/nvchad/additional_software/index.html_4d258aad94600fc963a2b542c433a9b68fa9862f66fa7cd81a767185f4f72890" +path = "../build/minified/site/es/books/nvchad/additional_software/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/nvchad/additional_software/index.html_br_c69fded955eddda656360fbd17982fefeebf3c27ca9120caa800937e8ab3a286" +path = "static-publisher/static-content/file949.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/nvchad/additional_software/index.html_gzip_fbddefa03c39fa6c65f35c5f75e581f694c3701ecc7183a19bd37a2e953fa1d5" +path = "static-publisher/static-content/file949.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/nvchad/index.html_d9a5da636224e4a1df2ef34937c9bb83bd6b2867d24c67ac457f9895f8d8a8fd" +path = "../build/minified/site/es/books/nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/nvchad/index.html_br_2c7d2e4a9b6b299ff0778393050c177edb9d1a711e4e65af3f839c07742f7afa" +path = "static-publisher/static-content/file950.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/nvchad/index.html_gzip_d323b59855be19cd24fe547ca3d7fe30e8a35b99b0cac805644f6be72cc69354" +path = "static-publisher/static-content/file950.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/nvchad/install_nvchad/index.html_926d784ed06351e6ac7b867c94a6ade68104d7bf0143ff7a9870fa85868756bc" +path = "../build/minified/site/es/books/nvchad/install_nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/nvchad/install_nvchad/index.html_br_9393762de7a1ef142165a0fdd49148740460bc62cb6fa50f38fb21039916037d" +path = "static-publisher/static-content/file951.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/nvchad/install_nvchad/index.html_gzip_4c471532e0d8fd0b2dec19270da9794fc515aa7037f0f4e4448702df5f8b8283" +path = "static-publisher/static-content/file951.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/nvchad/install_nvim/index.html_9bd8c89d45a58c91ecc385c1e1e33217e32dd57a8824b7f4e357f7140f94f548" +path = "../build/minified/site/es/books/nvchad/install_nvim/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/nvchad/install_nvim/index.html_br_ba90a529aa18f27770a8140cac05b3efbb98b029fb1e336ae84445c2a313f524" +path = "static-publisher/static-content/file952.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/nvchad/install_nvim/index.html_gzip_42be8384e02d93a4f5214f85fd71ecfe6e94eb1b2af1959993cc177327621546" +path = "static-publisher/static-content/file952.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/nvchad/marksman/index.html_e580b7a5aade6cdfa464006a20a3d5614c5df4b0ead39ac698a58a76cfb2958e" +path = "../build/minified/site/es/books/nvchad/marksman/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/nvchad/marksman/index.html_br_3fcb7d185bcc240f5af05ff408920599a4b12fc6bac49e37923806ba00d9793b" +path = "static-publisher/static-content/file953.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/nvchad/marksman/index.html_gzip_ca96844057ffda710b4b0d4f83628c1f50fedd50d7b8dc9679b9d39651d30563" +path = "static-publisher/static-content/file953.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/nvchad/nerd_fonts/index.html_b57da81ae1dbbd293d9d6da7bfc8748f8ee62cff6f225fb489a46651612965e1" +path = "../build/minified/site/es/books/nvchad/nerd_fonts/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/nvchad/nerd_fonts/index.html_br_906077ee90137c39e01dae2663d1bd9bef855bca565d0d44cc6c55b8ea609d4d" +path = "static-publisher/static-content/file954.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/nvchad/nerd_fonts/index.html_gzip_f70aca36d0c67d59dab5d04a337c652ab1142b5abe38fc4af0c1b8ffb04f44d2" +path = "static-publisher/static-content/file954.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/nvchad/nvchad_ui/builtin_plugins/index.html_577dc3bbb8a01e0144e14976996846f434448c19b240af47bf933c7b4facfa0a" +path = "../build/minified/site/es/books/nvchad/nvchad_ui/builtin_plugins/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/nvchad/nvchad_ui/builtin_plugins/index.html_br_ae1965a899756a9b2d5c5cbd8afc10ce14efd6e6a187b25522f5a16d8448c788" +path = "static-publisher/static-content/file955.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/nvchad/nvchad_ui/builtin_plugins/index.html_gzip_181539f97efdc010162abe311fe58ba84306362eed79a12d4462a89126e8274b" +path = "static-publisher/static-content/file955.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/nvchad/nvchad_ui/nvchad_ui/index.html_ae0078acaac61e95a103c92af934b7103a59fe0f1dc1b6263e1ddab822bc2370" +path = "../build/minified/site/es/books/nvchad/nvchad_ui/nvchad_ui/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/nvchad/nvchad_ui/nvchad_ui/index.html_br_fabfa6348865f084201ab2f74e2d39246b210c1f3031222823c129f0c8d9a76e" +path = "static-publisher/static-content/file956.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/nvchad/nvchad_ui/nvchad_ui/index.html_gzip_00afb7c2f3cce88b363b63dfeef018a9a892a433af6d4f3198ad14e4096a5a1a" +path = "static-publisher/static-content/file956.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/nvchad/nvchad_ui/nvimtree/index.html_cc696d3980a370797149ce1b6994f7093f7f3195a4ca290b00410fda9748dd9f" +path = "../build/minified/site/es/books/nvchad/nvchad_ui/nvimtree/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/nvchad/nvchad_ui/nvimtree/index.html_br_7f2a6812cb2162d93c9fffce53be5a74339d9c5a0c1f7cc6c4e4de76e52e6cf3" +path = "static-publisher/static-content/file957.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/nvchad/nvchad_ui/nvimtree/index.html_gzip_85f45fbd2042cce6d1b8cefe61febf7db849fe01084204a0e635ffedb9ce6be0" +path = "static-publisher/static-content/file957.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/nvchad/nvchad_ui/plugins_manager/index.html_d71ce06b2681bcc0f92c32df96b85d652b017c8cd026b9d4cc67fc67d3e03d50" +path = "../build/minified/site/es/books/nvchad/nvchad_ui/plugins_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/nvchad/nvchad_ui/plugins_manager/index.html_br_8e0742fa57f6d869427fe1e7cf911a601f81ba5a7eee99ccaa0386fe9f5238c2" +path = "static-publisher/static-content/file958.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/nvchad/nvchad_ui/plugins_manager/index.html_gzip_930ac86e001043f27ceddedc0aa846a3a902e2925298ae389c4aa043ec66e279" +path = "static-publisher/static-content/file958.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/nvchad/nvchad_ui/using_nvchad/index.html_d28d229d048448af5540ea87b61032b875224cef8cb59248faebb0e5a4f98e61" +path = "../build/minified/site/es/books/nvchad/nvchad_ui/using_nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/nvchad/nvchad_ui/using_nvchad/index.html_br_a4b7f9fb18796e846b156b45696f5bc6a4c1b952877b69a941e56c55568006cd" +path = "static-publisher/static-content/file959.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/nvchad/nvchad_ui/using_nvchad/index.html_gzip_3872ab1395f54989ef2d9643eeb75b37ff3270201752ae5f5c63296ee96ab0b7" +path = "static-publisher/static-content/file959.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/nvchad/plugins/index.html_cc02c0523678b9c1732a7f02f0fd9c92f7ee0f9d0788c314a8824296955099cc" +path = "../build/minified/site/es/books/nvchad/plugins/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/nvchad/plugins/index.html_br_e735fe33e6fbd71492b767bc2dfd2e4fbbf3512124f65be22922664a8c33fd87" +path = "static-publisher/static-content/file960.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/nvchad/plugins/index.html_gzip_3ec27c524cca41d2df74a8294324181396f28c5529071792d88aed11200f6261" +path = "static-publisher/static-content/file960.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/nvchad/plugins/md_preview/index.html_5fd67c981bf57d2e2946a00cefa300dfcda468f85e19a418137da7d936be774a" +path = "../build/minified/site/es/books/nvchad/plugins/md_preview/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/nvchad/plugins/md_preview/index.html_br_f82d174f7b5c3fc70848d11bfbd9e3b2ddf6469ebda5eab034cd5ce0b9f3bdd0" +path = "static-publisher/static-content/file961.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/nvchad/plugins/md_preview/index.html_gzip_f973307e0b5eb2db04190ceb0da5a8dce30e75f7f6f5dd3a7a52c78c4708ca83" +path = "static-publisher/static-content/file961.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/nvchad/plugins/projectmgr/index.html_be3cd9976cb4b531f002718b55ddf75a2e044a2e4ffcbdded53678105e07017f" +path = "../build/minified/site/es/books/nvchad/plugins/projectmgr/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/nvchad/plugins/projectmgr/index.html_br_30f7e084c6786cc38de1f9b2b6d3b40e50c09012e6612404cbb37eba7b86eb10" +path = "static-publisher/static-content/file962.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/nvchad/plugins/projectmgr/index.html_gzip_4826728a8baec347da2f6e73fda47291685be948acc0a23aea0120f83d9cdd5f" +path = "static-publisher/static-content/file962.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/nvchad/template_chadrc/index.html_9adc445dede5197497008bbc7e7d29650a188aa53da63e0ad7eb83b840f4e326" +path = "../build/minified/site/es/books/nvchad/template_chadrc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/nvchad/template_chadrc/index.html_br_d0ad6d7084fca11bc99532260397a0afe4825ee722ecf2f02f2ec3d42a4932d1" +path = "static-publisher/static-content/file963.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/nvchad/template_chadrc/index.html_gzip_da1fc5e7e52c78a7dd3794fca78f75d3e9bd615779b1bb086a19774158980f33" +path = "static-publisher/static-content/file963.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/nvchad/vale_nvchad/index.html_bddb724245670d0891b0f7cd858b6e070bb795d769e75be44429f15cd4091254" +path = "../build/minified/site/es/books/nvchad/vale_nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/nvchad/vale_nvchad/index.html_br_5558cb9f75fcc34eae87a3f9186f39c1064f8cc879a77a9fbf23d7a7a59dd3b1" +path = "static-publisher/static-content/file964.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/nvchad/vale_nvchad/index.html_gzip_a836d30d3ab3960907318d8d139acf0636a3837b2c838a5b182ab52aa580c534" +path = "static-publisher/static-content/file964.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html_bb81a6d5fec80cfd60a8eb3fbf64cf28ad4d0452d452a467cd9eb09441c7b412" +path = "../build/minified/site/es/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html_br_2d80b81f3f111725e311b87b19c16158d2836d2a2fe4acf497a9ef8b9e7b365e" +path = "static-publisher/static-content/file965.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html_gzip_65900513f92e879ae3c3b42401a51698a3904396ce799090a52fb947f49fcc5a" +path = "static-publisher/static-content/file965.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/sed_awk_grep/2_grep_command/index.html_9ca8bdbcec6dce019cb98db4891561d78b7ddfa6700278776ec41e3642ee97a8" +path = "../build/minified/site/es/books/sed_awk_grep/2_grep_command/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/sed_awk_grep/2_grep_command/index.html_br_ddb518550a53a62207f47349197df0ac8da03a8dc3edf89c00108ff0da60c999" +path = "static-publisher/static-content/file966.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/sed_awk_grep/2_grep_command/index.html_gzip_fd03f93df6fd6f7ac13b82b1f73f669e6dce7ae3b02311565b1e15793a42028a" +path = "static-publisher/static-content/file966.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/sed_awk_grep/3_sed_command/index.html_10d431a3d3d525bf5cf5bd4249793fecb2fa5f93f04276e045b7ee05b65f6df6" +path = "../build/minified/site/es/books/sed_awk_grep/3_sed_command/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/sed_awk_grep/3_sed_command/index.html_br_0498b8bae3dd97b1b3be03806feb013367f2e93800f1fba412ebb884afd93f50" +path = "static-publisher/static-content/file967.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/sed_awk_grep/3_sed_command/index.html_gzip_9d8014c1cb27021161780c2e5b1e3c3ca76670c3501808caa8d36415247039a2" +path = "static-publisher/static-content/file967.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/sed_awk_grep/4_awk_command/index.html_485f3fc049eca3dfcedc01904b9181afc2ac56ae5cf478fd44bcea277238ae1c" +path = "../build/minified/site/es/books/sed_awk_grep/4_awk_command/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/sed_awk_grep/4_awk_command/index.html_br_bd9f42d09e0acbe8d601004741ee67d8502d01df885b75b0d70856b1db525e0d" +path = "static-publisher/static-content/file968.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/sed_awk_grep/4_awk_command/index.html_gzip_24beeb3c94bc624a78da3e494fb52f04618557772c6057b2befae5fe4033b213" +path = "static-publisher/static-content/file968.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/sed_awk_grep/index.html_424519d043856a2132eda1029026e165b31bff2d5c2bfa27471feefd06c3956b" +path = "../build/minified/site/es/books/sed_awk_grep/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/sed_awk_grep/index.html_br_5f51f3e63825a742cc57ae7bfb9abc85ac720102d3803b83e799dcac2349360a" +path = "static-publisher/static-content/file969.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/books/sed_awk_grep/index.html_gzip_75485cd56aa3fda95b0af8fd470826546c9bdaa5bb4336e173fa239c0c6f2208" +path = "static-publisher/static-content/file969.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/containers/docker/index.html_12c538092e3ebcd1da1b2c9b7792090bce6cd403572c066847f4c45a94c13bed" +path = "../build/minified/site/es/gemstones/containers/docker/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/containers/docker/index.html_br_4c383fed56ca5fd83e34c958e767ae65ef5a66383b4cb222b4a7f8ecbc50bfe2" +path = "static-publisher/static-content/file970.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/containers/docker/index.html_gzip_15d08daddad08834a020d14ddfcb24ddfe025d0b8cc70d43d915ad69b7827cfc" +path = "static-publisher/static-content/file970.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/containers/podman/index.html_3fd81372bd5907acdb4e377856baedcc99aaa51128d4652a55617a3773da1dc2" +path = "../build/minified/site/es/gemstones/containers/podman/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/containers/podman/index.html_br_b8d10727cb0b606bb8d4db842335fac55b9194b8bdeeb52a361fb1d6ca349c9e" +path = "static-publisher/static-content/file971.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/containers/podman/index.html_gzip_6cee7f1119c59608aec9807c0552b078c1dd3a6506ece16b551e15622b42fd7c" +path = "static-publisher/static-content/file971.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/core/view_kernel_conf/index.html_0b5e1bf70dc305bd6b4dd7a23ea8f0444dcc16d0f2cef537a95923966c2d01b4" +path = "../build/minified/site/es/gemstones/core/view_kernel_conf/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/core/view_kernel_conf/index.html_br_91f9829ab146bdafa055286319445b2625788b81b6618c86f786ff3c5204b024" +path = "static-publisher/static-content/file972.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/core/view_kernel_conf/index.html_gzip_bb72e7e8e822236fec1de7048dd38e53bf3f82116d542466d126e8e90432ddf6" +path = "static-publisher/static-content/file972.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/dnf-swap/index.html_1b2e054e0cbd80ca090fd77b4acbcb0093143ce5b3ea9a2f91fbebeda1c17431" +path = "../build/minified/site/es/gemstones/dnf-swap/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/dnf-swap/index.html_br_f64ceda71cfb24d43d87a5dd7e53ea88d345ce1ead3ecc64db4fec60d82a0425" +path = "static-publisher/static-content/file973.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/dnf-swap/index.html_gzip_8d5d30f2e0dfa8ca4f89bf99adfea48ca4969eb56d0ac1ee04a9f7d4717c63e7" +path = "static-publisher/static-content/file973.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/gemstone_template/index.html_a7f3cef0273841f36f58deb9514fa2f63708101db9186e0c38824a3a412bb49b" +path = "../build/minified/site/es/gemstones/gemstone_template/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/gemstone_template/index.html_br_0b5421867796171e53cb6d4b66ab126378bbe4a0a8b51ccaf8f4bd5c6c328259" +path = "static-publisher/static-content/file974.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/gemstone_template/index.html_gzip_5cfaaae73eb435fb57d893b9cb7d090e1bbd8d274b7fffa8c8a9b11291987686" +path = "static-publisher/static-content/file974.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/git/00-gh_cli_installation/index.html_381ef9b6129f0e6d2a32a706c1e64329fa6e47cebc7e063f0586d93c220bbb2f" +path = "../build/minified/site/es/gemstones/git/00-gh_cli_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/git/00-gh_cli_installation/index.html_br_379eebfe755f1ec58444d23f490fbc47bc6006388bade7538cafa836e6bc79a2" +path = "static-publisher/static-content/file975.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/git/00-gh_cli_installation/index.html_gzip_67fcadb8afe9654a8db48af9e94f91a5096935f1f022b25e997431f02eb24984" +path = "static-publisher/static-content/file975.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/git/01-gh_cli_1st_pr/index.html_729632f98000018aa1af917690ec3114b4f277100c48b09dc39cd3010f0172ec" +path = "../build/minified/site/es/gemstones/git/01-gh_cli_1st_pr/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/git/01-gh_cli_1st_pr/index.html_br_7e2a8b4cbe91b16c440221e234bc884751baea13b54d2ef43c6d1b219c44aa72" +path = "static-publisher/static-content/file976.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/git/01-gh_cli_1st_pr/index.html_gzip_7170a93e3d6b3cc2a868f8ea0a335360ed36aa1969cab6b3e9ca8f8f54c15c3c" +path = "static-publisher/static-content/file976.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/git/02-gh_cli_edit_pr_title/index.html_3c70b79979a3bc86f483f32dfc9bfa38f8aa3eafdf980f3def79b1ac372114ee" +path = "../build/minified/site/es/gemstones/git/02-gh_cli_edit_pr_title/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/git/02-gh_cli_edit_pr_title/index.html_br_41b6b3484f4e9292d304eba975ae12d13acaceb53bca274cbc8cb4e8f18ceb04" +path = "static-publisher/static-content/file977.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/git/02-gh_cli_edit_pr_title/index.html_gzip_35202f787fc5715fbdfef2da1288c1a9399be381e27e1fbc96fa5bf5166e6db4" +path = "static-publisher/static-content/file977.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/git/02_github_web_edit_pr_title/index.html_f01085d7e3321adecc92531e2f5560f3305c3ae45ff30d4f2499bd7c0b0c7360" +path = "../build/minified/site/es/gemstones/git/02_github_web_edit_pr_title/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/git/02_github_web_edit_pr_title/index.html_br_f572b914264093941a97dbc8d5ce81fcf70107156fd974ea020d72a0d442ca8a" +path = "static-publisher/static-content/file978.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/git/02_github_web_edit_pr_title/index.html_gzip_157616e2f1d3a4ed237dd4afa2bb0d869f39aba4548375962b30374c135f929f" +path = "static-publisher/static-content/file978.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/git/feature_branch_workflow/index.html_109e15422a30000c0405398d2fe895433809a912f492fc9ce8f8ae21a87e1b43" +path = "../build/minified/site/es/gemstones/git/feature_branch_workflow/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/git/feature_branch_workflow/index.html_br_1cf3f2d441cb32d5447ac7302d90dfa190234afcc6f40a6f35d581fcf253191b" +path = "static-publisher/static-content/file979.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/git/feature_branch_workflow/index.html_gzip_ef6622a1a1de9d99e929a0b46a51e9681e4d0bb6268db2367e74cc6921cc5ec0" +path = "static-publisher/static-content/file979.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/git/fork_and_branch_workflow/index.html_dce6b3e73b1ad6dbad7068ea0666e3f0cd9de595929fc454621909cce645e1b2" +path = "../build/minified/site/es/gemstones/git/fork_and_branch_workflow/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/git/fork_and_branch_workflow/index.html_br_9df695263db8282ae5300bf94253e8273ce261ae12b18be5b99803ad26f75246" +path = "static-publisher/static-content/file980.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/git/fork_and_branch_workflow/index.html_gzip_517e493925aeb1a1b84405972fafead58e2dddda4dd6145d52a1e5964572fd15" +path = "static-publisher/static-content/file980.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/git/git_pull_vs_git_fetch/index.html_3651c12dc2a14658125e3ddae3f45f8998cc928090214943e244271e34f80929" +path = "../build/minified/site/es/gemstones/git/git_pull_vs_git_fetch/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/git/git_pull_vs_git_fetch/index.html_br_f2a602bccb361836b656fcf2aa825a1dad0eb59c1f35e3e164e05841ddde07e2" +path = "static-publisher/static-content/file981.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/git/git_pull_vs_git_fetch/index.html_gzip_649c918ecbc056fd91aa529af333e9b6fa09a61865ed6cc2933936bcda7823e3" +path = "static-publisher/static-content/file981.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/git/git_remote_add/index.html_361f3c399630a4c53a7856c632a4306322f6d702b1e6823c185ac58e41b040ca" +path = "../build/minified/site/es/gemstones/git/git_remote_add/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/git/git_remote_add/index.html_br_863f1ba17db79468b5d95309ee36a14128cc2e2367a1d65a3836d5a0229d9de5" +path = "static-publisher/static-content/file982.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/git/git_remote_add/index.html_gzip_599bbdd13e44da30cbdf78b93904ad5e8f667c9bb029fcfd1480b846efd897d5" +path = "static-publisher/static-content/file982.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/git/tracking_and_nontracking_branch/index.html_c74eeb5abbde657c8c98aaba730cdd00ade06d1f74e6d75b77d6e4a6af58ad6a" +path = "../build/minified/site/es/gemstones/git/tracking_and_nontracking_branch/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/git/tracking_and_nontracking_branch/index.html_br_02a27081ae83330bf038ddb2ba2200956e39b2806e9eaf5d1e2d38ec5590b2f5" +path = "static-publisher/static-content/file983.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/git/tracking_and_nontracking_branch/index.html_gzip_6550a609dd489a348022829afb5dff3c129632ec0b114409c2988041a9838547" +path = "static-publisher/static-content/file983.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/htop/index.html_c9d1db387eb5258068f8b4ee89d1a222695dce4e73b8e4656d8354a8ceb2c5e0" +path = "../build/minified/site/es/gemstones/htop/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/htop/index.html_br_7d144be688176fc813a342823f22518e92f828946718b3b14db3e79e2ab73b50" +path = "static-publisher/static-content/file984.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/htop/index.html_gzip_ab2861e35975cca9ee23bb773f21991fa83afc8790c111b684d9cac28ec12f13" +path = "static-publisher/static-content/file984.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/https_rsa_keygen/index.html_334a8040eb25ee626e5aa971bc37833d0d4fa46d0d956b931c5b7692be6d159b" +path = "../build/minified/site/es/gemstones/https_rsa_keygen/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/https_rsa_keygen/index.html_br_dab5b15d82e1439e65f97735379da5f9dd8679610929ee15efe227d1bab3f84c" +path = "static-publisher/static-content/file985.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/https_rsa_keygen/index.html_gzip_6423ce063b86a56afb0ce8f7f4ad3bd67e24683c6ca82c47a8eefc3e7ade05d9" +path = "static-publisher/static-content/file985.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/index.html_a084f11aef98cadf0d9c62c9ecf521e838ba3d15c2081f53a6ce570bc0b26fef" +path = "../build/minified/site/es/gemstones/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/index.html_br_e7c8edb936fc1ccf0cc25e4f18c0c11fe11f11b889490975ab1073df4fa2f8eb" +path = "static-publisher/static-content/file986.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/index.html_gzip_5fda7a82f787899e18ddb32d985551ef9f9f12cf29aa2fd8ba048318de05f30e" +path = "static-publisher/static-content/file986.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/markdown-demo-v2/index.html_194c008206cad40e891fa9ba40318975f7e270ed87c491d481f6bca3546d6fa1" +path = "../build/minified/site/es/gemstones/markdown-demo-v2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/markdown-demo-v2/index.html_br_2bbaae0f3744b1d725aa817e5b50c30ddb76af4f023263a9448ecd10f41c8d46" +path = "static-publisher/static-content/file987.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/markdown-demo-v2/index.html_gzip_2973f4ec2801d694f6ccdc14bf0c2f1565ba4cdb7969374a8f7c2d39eba5c22f" +path = "static-publisher/static-content/file987.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/network/RL9_network_manager/index.html_f4b97744e78811ad7b8a8fc2f25ed33e0146dbde41798df1efb776736c1a9c58" +path = "../build/minified/site/es/gemstones/network/RL9_network_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/network/RL9_network_manager/index.html_br_0bf85c4fd61b855687d91078cfcda1f96b20a8e896d21d63e330507de4b63ae6" +path = "static-publisher/static-content/file988.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/network/RL9_network_manager/index.html_gzip_a0f24d469561a2049c010cbf52badd250a3515e5740fa51317581297908a6655" +path = "static-publisher/static-content/file988.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/network/iftop/index.html_6f87bc65fb30e62dc8783c9943d72cb032f5d16effd357ec5efde3b59d459551" +path = "../build/minified/site/es/gemstones/network/iftop/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/network/iftop/index.html_br_15904ae3501e5377592085f9ed5439b56eb5547fe5a72988d34b4e2c67c7cb94" +path = "static-publisher/static-content/file989.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/network/iftop/index.html_gzip_90e75b14cf9e2b37d129fcf2e6434f15c81ea1463c3de72b3714e891c09f8353" +path = "static-publisher/static-content/file989.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/network/mtr/index.html_a0d3166d2ac1763cabe23a6a33ed7ed9dbd09634cac2e828ff7cc730d8a8c113" +path = "../build/minified/site/es/gemstones/network/mtr/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/network/mtr/index.html_br_48a29dbbe813284e7bf02a8c8f7f01302ec5d5107cae4b47637d7e29ef057d97" +path = "static-publisher/static-content/file990.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/network/mtr/index.html_gzip_c0abb19c31cf397f504ddd7884a1eb51065a5ccff6d9e2a80f4f396571708ece" +path = "static-publisher/static-content/file990.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/network/nload/index.html_d7c31bbf3fc8eea2bc2c389fd5477b3f40967db55b48ae91a800b0287e536d6a" +path = "../build/minified/site/es/gemstones/network/nload/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/network/nload/index.html_br_d941a853a701ec8ebb8794f261be9f32b5b17ac81d1526ea45db08579079a22a" +path = "static-publisher/static-content/file991.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/network/nload/index.html_gzip_7961bb89e770b7d9c51adc9bde7308b80b89e59ec6cc31bbd6c5c9608a2b764a" +path = "static-publisher/static-content/file991.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/network/nmcli/index.html_12c49ce20e28c1cbd63780e68c5f01a869089dc3b5f30c57ecc3690b249bfd78" +path = "../build/minified/site/es/gemstones/network/nmcli/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/network/nmcli/index.html_br_78105d570c36e1bc1fbb187e125dd8ff30c1954cc4caf292612d42ee0bf6ff69" +path = "static-publisher/static-content/file992.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/network/nmcli/index.html_gzip_b35a52f1ddd872bdacb833d173f6770db533b58573c1e8a62613363d1de0dde1" +path = "static-publisher/static-content/file992.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/network/nmtui/index.html_ef4e256e6324ecb8705e668201247276238ba4018ab619a9cbbec1327198e610" +path = "../build/minified/site/es/gemstones/network/nmtui/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/network/nmtui/index.html_br_3ad93b0790822cfcdb62f2d21c77951f339f8f309a073d8dd0c4d7c174f16a33" +path = "static-publisher/static-content/file993.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/network/nmtui/index.html_gzip_af352faa90e1520b2159fa4076232cc2e104282dda4d995f857f05c65ae86ccc" +path = "static-publisher/static-content/file993.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/perl_search_replace/index.html_8f3dd2aaa80183f6ca3d7101cce71ade15778c9817f2b7fc90924ac0a3366fd5" +path = "../build/minified/site/es/gemstones/perl_search_replace/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/perl_search_replace/index.html_br_fca908749d38f4a2c4c18d514673ab399d6fb30f6d59981a694304d79f970300" +path = "static-publisher/static-content/file994.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/perl_search_replace/index.html_gzip_fb986ade59f1acf6b50f281ff627831db5697c937c12edcf1f2b5a7e6687497d" +path = "static-publisher/static-content/file994.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/rpaste/index.html_b433e04a8140f8e4c8422f177262c376def89792e5bac081e35c8e1e3e67f923" +path = "../build/minified/site/es/gemstones/rpaste/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/rpaste/index.html_br_46768d7ded6ff9114bf45fb9799a6d86347261c4d69671294f613c6f2cfbb13f" +path = "static-publisher/static-content/file995.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/rpaste/index.html_gzip_01a454e97b52a83fc5cef048b2324517735ddf1337df63e54f1e01bd183aaa3f" +path = "static-publisher/static-content/file995.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/scripts/NoSleep/index.html_fd2880484bb02708eb303bf18497f706a6164664d779a7f5bdde0b03958b0dd6" +path = "../build/minified/site/es/gemstones/scripts/NoSleep/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/scripts/NoSleep/index.html_br_b20f27d3d9d37c13820955bcf05bf7cf46a6a577d2998dcfce4fe089e07c913a" +path = "static-publisher/static-content/file996.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/scripts/NoSleep/index.html_gzip_cc9eff39ae821a9e55d94136d03a6600989f60cc728d58ab22af4ad5592b5faf" +path = "static-publisher/static-content/file996.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/scripts/bash_stub/index.html_550f4e607e409048f14822e4efe7165cc82ab3717b833e3b320a8ace65bf6fa1" +path = "../build/minified/site/es/gemstones/scripts/bash_stub/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/scripts/bash_stub/index.html_br_890d849bc3501e283093d69aa56db2776b5a6b6495278972917e9be99e55a6ff" +path = "static-publisher/static-content/file997.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/scripts/bash_stub/index.html_gzip_6b256543f92bd735e127ce08f786f41ae07a7c51dc94b06fb32678d87388c10a" +path = "static-publisher/static-content/file997.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/sed_search_replace/index.html_fc4068ae839a38eaf65b260ad4c2be15ae8d83090d117579e549dd7aaf7b4256" +path = "../build/minified/site/es/gemstones/sed_search_replace/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/sed_search_replace/index.html_br_081cd6a740f5e02d1d35510e7292a5958f2b20db58e84d164f126f9acea37e41" +path = "static-publisher/static-content/file998.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/sed_search_replace/index.html_gzip_3981d4d8b0d9640c91892e6b4301b261dc7411b9d47a7ba697cfdadfe9a14318" +path = "static-publisher/static-content/file998.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/setup_local_repo/index.html_2cd99c97ed0fa9e8f5f91f7bddcdb3f7ef467aac6d859b9f4100f75cf072354b" +path = "../build/minified/site/es/gemstones/setup_local_repo/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/setup_local_repo/index.html_br_937f619a03b455536f672b834b14ce20f8d386fd3c93d013d98fe90783deba2f" +path = "static-publisher/static-content/file999.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/setup_local_repo/index.html_gzip_22c81811c91a876a3661076d4b5c378f20a7ea0e0c3f29f950ce81e4a1c79342" +path = "static-publisher/static-content/file999.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/string_color/index.html_5f8120334b73a243e7d6b50e8c6986a7617289d71cbb20df4d79eba4fdaeca40" +path = "../build/minified/site/es/gemstones/string_color/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/string_color/index.html_br_9324a219a9abbca7ade8eaa0de396801ad0f102f40368ff9c8a4f75ef44f8f8a" +path = "static-publisher/static-content/file1000.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/string_color/index.html_gzip_50c1ea60389e7a237d5c9de5472d7a8d63643e86c02c36cdcf3aa66d0157b83a" +path = "static-publisher/static-content/file1000.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/systemd_service_for_python_script/index.html_6c749196c434ff7d09faf95a897bc84a5a4571d8724d54ae816d74a457044770" +path = "../build/minified/site/es/gemstones/systemd_service_for_python_script/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/systemd_service_for_python_script/index.html_br_8f31cf3ed46fbbefadb94437ea1c2bd40b89afd6c12da4d956d4592e83f39b13" +path = "static-publisher/static-content/file1001.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/systemd_service_for_python_script/index.html_gzip_b4f59b66a35bd6327920521e39ddd94724d5569b441eb7e4c6a5a0256b89bae6" +path = "static-publisher/static-content/file1001.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/test_cpu_compat/index.html_765adca60132bd09979d5cfd9f8c71948a5ea5fcf84c286e6c3546f18b067b3e" +path = "../build/minified/site/es/gemstones/test_cpu_compat/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/test_cpu_compat/index.html_br_dbc05fcd1f6c530474deaa0bda17094fdb71bd5eac3c3537294df771c62befff" +path = "static-publisher/static-content/file1002.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/test_cpu_compat/index.html_gzip_65e2705e8f4b535e2a145a2ddfe83a17eb6b9038e6c5d96b4b1521cc511b7cd5" +path = "static-publisher/static-content/file1002.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/torsocks/index.html_8ed104e0a7c6e10b3886fb3b54bf2dcaa0aa2f88840584cc48ca042e256b4c1d" +path = "../build/minified/site/es/gemstones/torsocks/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/torsocks/index.html_br_d226f9f6ed428a9d1b444e6036c4dc91d67aa3d7b6beb3d1cde9619860480097" +path = "static-publisher/static-content/file1003.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/gemstones/torsocks/index.html_gzip_849b7cb4770a311db12e017c5296f8624d05f66db7e769316e043f00315b190e" +path = "static-publisher/static-content/file1003.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/8_6_installation/index.html_4e4410a0baafee17c1b9b8f91e6746c3e9593fede91b275c9c078adce5da5cff" +path = "../build/minified/site/es/guides/8_6_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/8_6_installation/index.html_br_b94dda2a358a2c10e14104ac2744e463915cfb983fc9cb726de3d09273b84a8d" +path = "static-publisher/static-content/file1004.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/8_6_installation/index.html_gzip_01d61f5e6989bbb3a0d9a2b8503cc6fdfeb07c3ec2b5a94d759fae7f586a975f" +path = "static-publisher/static-content/file1004.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/automation/anacron/index.html_1e46f819a3fab3f459f691328329a53fd1a57179fbcb3f6de0b76c3f13d0760f" +path = "../build/minified/site/es/guides/automation/anacron/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/automation/anacron/index.html_br_e476e8a1d6518c6adc960930564fd65a4ebaff8299d076c0f89b7cf07bf8fbfb" +path = "static-publisher/static-content/file1005.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/automation/anacron/index.html_gzip_b8b15e18c2a00634cf1a753114cf2dd0f52b5f80320b5169b752d1b85a53cbdc" +path = "static-publisher/static-content/file1005.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/automation/cron_jobs_howto/index.html_39394a4206cf4232dfae00c1e9e6c6e638aab996925f71e6bd13ee38bef46bb7" +path = "../build/minified/site/es/guides/automation/cron_jobs_howto/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/automation/cron_jobs_howto/index.html_br_f82a6d7a7804f11032ec2d7fc204fcabded3c5a94af34b05856b5e7fd27f7ea8" +path = "static-publisher/static-content/file1006.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/automation/cron_jobs_howto/index.html_gzip_b3243ff941c67539b928803368b774cc3de5f01eede1cacf8450d4f26afcc37c" +path = "static-publisher/static-content/file1006.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/automation/cronie/index.html_662172126d9034a92a99890a4ea2e4fe881a7acebbf7a5e719106c010d35c421" +path = "../build/minified/site/es/guides/automation/cronie/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/automation/cronie/index.html_br_6bc1384cf52e1a867f54c507fd9342b943c32c0990f7451da82b51b41f572ed5" +path = "static-publisher/static-content/file1007.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/automation/cronie/index.html_gzip_b4b0cffe4df1cf8f3094f73a93cb77d7278ab5db02a72ea47a778c207d93f549" +path = "static-publisher/static-content/file1007.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/automation/olivetin/index.html_4681e2b0c0b9b8592fa34b7aa01148d9f82bf1135f32937b89389d2b3eff00bc" +path = "../build/minified/site/es/guides/automation/olivetin/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/automation/olivetin/index.html_br_dd4d17eca8ee78f61a3996e7dcd0bcb5d781a4b50ec6f2446470d84a4760dfcf" +path = "static-publisher/static-content/file1008.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/automation/olivetin/index.html_gzip_bf161231aa5467221c8320be39b0d231fd6d788ed5f736e30b3a88aa599a2001" +path = "static-publisher/static-content/file1008.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/automation/templates-automation-packer-vsphere/index.html_2c7c77d27ded3486b217f8159dd48d7eb70ca5206c300bb2dc04ddf854bd1819" +path = "../build/minified/site/es/guides/automation/templates-automation-packer-vsphere/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/automation/templates-automation-packer-vsphere/index.html_br_a77cba4a6e2a99dcd49b7e928aa2ad90b9ab10e86c3a1c3eb1da22b45c4e3a80" +path = "static-publisher/static-content/file1009.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/automation/templates-automation-packer-vsphere/index.html_gzip_36ea6e3aada262ac2bb5e35630393ff233b8ca475f3a11daae97d1277cc1808c" +path = "static-publisher/static-content/file1009.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/backup/mirroring_lsyncd/index.html_92c5e80dd2204dcd3282898b378a0c5d653ad972c0c4aaa9653262a4a22dd43f" +path = "../build/minified/site/es/guides/backup/mirroring_lsyncd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/backup/mirroring_lsyncd/index.html_br_80e61b8ce503fda9611b29f5bf59aa6b31c52c3116b6fda782f059c1094615bf" +path = "static-publisher/static-content/file1010.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/backup/mirroring_lsyncd/index.html_gzip_494c3cf7734a653395b0111dec036450dd03250022b3268046df815d912ba007" +path = "static-publisher/static-content/file1010.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/backup/rsnapshot_backup/index.html_3d78fa356085060e99038d512ccc5b4c879b382a137853d90eee0f8db65c871c" +path = "../build/minified/site/es/guides/backup/rsnapshot_backup/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/backup/rsnapshot_backup/index.html_br_fb7b33fc427eb89317e103533b9e6567f9de69cd63cf09761ab12959c0fb8f5c" +path = "static-publisher/static-content/file1011.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/backup/rsnapshot_backup/index.html_gzip_16294ebf5e3f0160c5ed2effe5b18d3f1207e74eb71b5f3174131db21dc6c972" +path = "static-publisher/static-content/file1011.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/backup/rsync_ssh/index.html_eb0f76f393ba782752e2c83919d35f8a5793e8f1dfb762cb594821790d7dab16" +path = "../build/minified/site/es/guides/backup/rsync_ssh/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/backup/rsync_ssh/index.html_br_abb09ba91c5588cf55feddf3aaed5701b43ceb9b07799fe86860ee4899f8b5a7" +path = "static-publisher/static-content/file1012.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/backup/rsync_ssh/index.html_gzip_9b7bc37de8a7934dad37dabd5355c89c5ffd6efe421ef902f97bdf46ea1b9c40" +path = "static-publisher/static-content/file1012.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/cms/cloud_server_using_nextcloud/index.html_3b8c8744e95e50555b62c0e7d9582bf275bfd61798c86d623060123dd2f5beb5" +path = "../build/minified/site/es/guides/cms/cloud_server_using_nextcloud/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/cms/cloud_server_using_nextcloud/index.html_br_083feb558902f56c80d1cc77c05f9f0f1f3e8b43c3743961b2c2923ffc5eefed" +path = "static-publisher/static-content/file1013.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/cms/cloud_server_using_nextcloud/index.html_gzip_27b7c958c685d153ec4e94fc65c30a608119b97536f5cc3505e9202fbe5423c1" +path = "static-publisher/static-content/file1013.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/cms/dokuwiki_server/index.html_b607ffe029a6e38040301669a29cb0f88ac1d402a119179f29b0d4901526a6a9" +path = "../build/minified/site/es/guides/cms/dokuwiki_server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/cms/dokuwiki_server/index.html_br_a7826da953403ce5d9674daffb9e71bbe0f8e0c324850a4bc5d6a71bd859c476" +path = "static-publisher/static-content/file1014.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/cms/dokuwiki_server/index.html_gzip_f29c95acb67cb1fafe11522267465815ac4c945b1eee618421b9f7386f81a9f4" +path = "static-publisher/static-content/file1014.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/communications/asterisk_installation/index.html_0e9d3b9bc74dbf307ff931f6e0d4c09a92b988f0fd18926b5023b830c1a32498" +path = "../build/minified/site/es/guides/communications/asterisk_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/communications/asterisk_installation/index.html_br_ae594a25f52ca4fabdd88f08caee8188db8e54c18752b5b5bff6b6af06e5ab60" +path = "static-publisher/static-content/file1015.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/communications/asterisk_installation/index.html_gzip_2ccfdd24a8535d912222d286915a494bfaa3dc36e0b7badc68c38975c71b8e18" +path = "static-publisher/static-content/file1015.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/containers/lxd_web_servers/index.html_cc0c8c8350914a91e59644c1b0e292599026d59ed2918eb21190413f105df90a" +path = "../build/minified/site/es/guides/containers/lxd_web_servers/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/containers/lxd_web_servers/index.html_br_f45d71b6a203c6cfe7f5902f30bc99708232ddaefacfeba31a6bb16d6280c3fb" +path = "static-publisher/static-content/file1016.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/containers/lxd_web_servers/index.html_gzip_5aac45fd9bad1f2705e350026253c45394e9c4308fd816b27fe9479a9d559683" +path = "static-publisher/static-content/file1016.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/containers/podman-nextcloud/index.html_de4a212f018a986d819d78ae22ac0414100a62e954b6b41e1df261410fd26c51" +path = "../build/minified/site/es/guides/containers/podman-nextcloud/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/containers/podman-nextcloud/index.html_br_d6e77f4f7bbeba07315dce742d0a9832b00d1e557ac0abe3c610865a7142de37" +path = "static-publisher/static-content/file1017.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/containers/podman-nextcloud/index.html_gzip_8b728459c1c38862897233341e98cd87598233487f2511c4c5504dce36d6b8ae" +path = "static-publisher/static-content/file1017.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/containers/rancher_and_kubernetes/index.html_db2132106e8fee6b1020319b9110d2c7ad8e2a8f5e91084798c7f8000a9da246" +path = "../build/minified/site/es/guides/containers/rancher_and_kubernetes/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/containers/rancher_and_kubernetes/index.html_br_d4c0d680a33bdd87ddb74d4afd8e0c8079164fa16dde40fa37172c1e991d1af8" +path = "static-publisher/static-content/file1018.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/containers/rancher_and_kubernetes/index.html_gzip_e5f77f57dea4c90f30bc3db1893804bd521f8cb9e29892e5deee778bc95bd677" +path = "static-publisher/static-content/file1018.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/contribute/beginners/index.html_5da777427db4a0b8a56b978106d2b30649b0676741a3c7d537c120897ed5193a" +path = "../build/minified/site/es/guides/contribute/beginners/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/contribute/beginners/index.html_br_6a55c44a5c9d61ae23974819f7849c152e48128c7880af2326616bd061300e3a" +path = "static-publisher/static-content/file1019.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/contribute/beginners/index.html_gzip_ce4a6aa1d5f36c0efabf540680b1e96d567cdd0188189051d5c1baf176280f05" +path = "static-publisher/static-content/file1019.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/contribute/createnew/index.html_4efeb2fdb42b968103019219a35344f6b54ebcf18db79e57018bb32a293750a8" +path = "../build/minified/site/es/guides/contribute/createnew/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/contribute/createnew/index.html_br_a4d99ce47fc4cb4c785b3a4e6307fafa11b4780cdb7b122f007a83084088f94f" +path = "static-publisher/static-content/file1020.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/contribute/createnew/index.html_gzip_de256246a690d749dea74b8b557694e1393737df05f100b2486071dcd89dd8dc" +path = "static-publisher/static-content/file1020.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/contribute/index.html_b01465f7843c81b60fd8cf3f6b25fdb194bb1a6ecca82deecb786fb25b3f9044" +path = "../build/minified/site/es/guides/contribute/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/contribute/index.html_br_88bf26214eac49b80e5b530e9806a1b0294795a9e3ec05f97ecb5948738a82a8" +path = "static-publisher/static-content/file1021.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/contribute/index.html_gzip_838913a08a4e9b74982439778aeacf325f245051fcc7808f27d7587b46a0c7db" +path = "static-publisher/static-content/file1021.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/contribute/localdocs/index.html_610c3cfb812327a2f7d3ed0e68281149cb490c5a02e949d62bdd60303c1a76d0" +path = "../build/minified/site/es/guides/contribute/localdocs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/contribute/localdocs/index.html_br_eab9526a539c8177839971c564f65e265f4180c8957366ee847154d0ec90bea9" +path = "static-publisher/static-content/file1022.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/contribute/localdocs/index.html_gzip_5e3cf78af8f709ef7cbf3bb5da2f3fb58b0d66c8d6a52d61653db731653123d8" +path = "static-publisher/static-content/file1022.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/contribute/localdocs/local_docs/index.html_4a801735273079400e580518e755ea51301ce049e098b4f449109f758a6abdb5" +path = "../build/minified/site/es/guides/contribute/localdocs/local_docs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/contribute/localdocs/local_docs/index.html_br_f40bccbd589098be99f23a65cc1c3d091b43f384587025d9d8ea58ab215a32ec" +path = "static-publisher/static-content/file1023.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/contribute/localdocs/local_docs/index.html_gzip_168c149664f6be2451ed41c021448eadff38a71b060a50439982eb3e67f8b16e" +path = "static-publisher/static-content/file1023.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/contribute/localdocs/mkdocs_lsyncd/index.html_a46009a7fb50517e714fd597cc1abaed11f23574d8f1219a8401f47e08d2a4a6" +path = "../build/minified/site/es/guides/contribute/localdocs/mkdocs_lsyncd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/contribute/localdocs/mkdocs_lsyncd/index.html_br_f58873e1e504d37ca73523413592fd0f271d29b919c0400b2478774577bad799" +path = "static-publisher/static-content/file1024.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/contribute/localdocs/mkdocs_lsyncd/index.html_gzip_8049da6e526f513faa91a1bfbedd241157d9afd3372d506178f8574ea54dbf0d" +path = "static-publisher/static-content/file1024.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/contribute/localdocs/mkdocs_venv/index.html_7fd315b51d4f8fe35ff1b152d2c127f77576ce94083f87d24dc9afe19e788ca2" +path = "../build/minified/site/es/guides/contribute/localdocs/mkdocs_venv/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/contribute/localdocs/mkdocs_venv/index.html_br_77ad00d1e2a75f3e5c7f97490c920143ae1ffea16c35a8743c3cadcc86d34e8d" +path = "static-publisher/static-content/file1025.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/contribute/localdocs/mkdocs_venv/index.html_gzip_9650951d85b7561fde6189ca89e590361fa42fbd0879b1d4b55bbd14ee9ce2ef" +path = "static-publisher/static-content/file1025.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/contribute/localdocs/rockydocs_web_dev/index.html_b55db1859db7b0efb751077a09983b60fc1c3c887e5e300da16fb386f54e507a" +path = "../build/minified/site/es/guides/contribute/localdocs/rockydocs_web_dev/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/contribute/localdocs/rockydocs_web_dev/index.html_br_eab851c42109592e025d184863c488416d56bf8fb2926d8ce23d720994add59b" +path = "static-publisher/static-content/file1026.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/contribute/localdocs/rockydocs_web_dev/index.html_gzip_44350de144118c2194b7556cd47b1234fd4b9f368760d4c049fa22c57289758b" +path = "static-publisher/static-content/file1026.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/contribute/localdocs/rockydocs_webdev_v2/index.html_e18c1fe774c5c7db60ee4e9eca87aab416853867cf43f689c8c8e1ae9135d99e" +path = "../build/minified/site/es/guides/contribute/localdocs/rockydocs_webdev_v2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/contribute/localdocs/rockydocs_webdev_v2/index.html_br_e7a6a3ef5ca95973b4ad8533a968fc4645c6ef8c8602cfd2e569e4e53921caaf" +path = "static-publisher/static-content/file1027.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/contribute/localdocs/rockydocs_webdev_v2/index.html_gzip_b516aa684cacfb76d117124b10a82a7d95cfce44c76b13dd36f73dc03a43397a" +path = "static-publisher/static-content/file1027.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/contribute/navigation/index.html_f777f5413e08063c9dbfad1d648fd95fc19e4eaf7dbab37a5af06659723a541b" +path = "../build/minified/site/es/guides/contribute/navigation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/contribute/navigation/index.html_br_4b2e0f2abe50d8a4e153e5c2919174e2867bbfb66e1f36e2d57d023935b0ff44" +path = "static-publisher/static-content/file1028.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/contribute/navigation/index.html_gzip_b25c9b436553dc714f3f21dcfdab2c5ace33cc7ae18ecabbbc99e5eb2627f7d2" +path = "static-publisher/static-content/file1028.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/contribute/rockydocs_formatting/index.html_2931f7515d83b8a41d97b59996f7e489bdb26020c06a3ad8516c113f2abca955" +path = "../build/minified/site/es/guides/contribute/rockydocs_formatting/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/contribute/rockydocs_formatting/index.html_br_b7d24dc0d2a3ac53a9081ce349156c94b1ff48a8bc5d6ceeb940325323a518e3" +path = "static-publisher/static-content/file1029.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/contribute/rockydocs_formatting/index.html_gzip_4eb5252e8b9d460ce23e9ff8a7ebe73aa0dcf2ac38c2496336d3cbf53d5251cd" +path = "static-publisher/static-content/file1029.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/contribute/style_guide/index.html_de2183ac34fc2ccc1967d350d87b8ff76e758aad4e3f92831efe6915ddf60d6c" +path = "../build/minified/site/es/guides/contribute/style_guide/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/contribute/style_guide/index.html_br_1f6b45925dc2c8434be3964f58a3118204ff4ee524df11afa281cc7a42e7089b" +path = "static-publisher/static-content/file1030.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/contribute/style_guide/index.html_gzip_09425fc997ff8b4670bf729e7d056ab2f38984c05b2840bfb4417a7be1d8ca65" +path = "static-publisher/static-content/file1030.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/custom-linux-kernel/index.html_2c20d11dd12d88ae374887bc1046f6c864183ad50fc3192fd0721a59322e1b43" +path = "../build/minified/site/es/guides/custom-linux-kernel/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/custom-linux-kernel/index.html_br_df95e6a538673cf29b5074edb0c97b715aa8f50b04ec3c7de14b5c9fd9515b1a" +path = "static-publisher/static-content/file1031.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/custom-linux-kernel/index.html_gzip_4cb2af17bdf77b4a9f018900dda5f6941426c5834e717bb2ddff9234b0a875f0" +path = "static-publisher/static-content/file1031.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/database/database_mariadb-server/index.html_0d9c5fd01cfed6dbdfe99559938c0dccf301792bc0809b1867b0bc0bdccd1df6" +path = "../build/minified/site/es/guides/database/database_mariadb-server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/database/database_mariadb-server/index.html_br_99c04c14ef23ffbfbb4d59a7a4446dd665d3ceb0c0c52e8afe993255d1eab00e" +path = "static-publisher/static-content/file1032.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/database/database_mariadb-server/index.html_gzip_a86cfdb3d9af5e10a70ab4fd10bc93e2369351d85aad61b42fd786afea9dc4a1" +path = "static-publisher/static-content/file1032.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/desktop/kde_installation/index.html_874d765a27a96be4a2a22d675d9599a71e0ce390f006b56d9ff03f8c4823eee7" +path = "../build/minified/site/es/guides/desktop/kde_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/desktop/kde_installation/index.html_br_910b3aeacccd99b34eb9d001a7e8a4f185dd878fa83326c2ea62d47ad4253744" +path = "static-publisher/static-content/file1033.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/desktop/kde_installation/index.html_gzip_f2b9f0a2b835eaa62e3af962d8504fda91b31ec9b16ff1fca2b1828b41ac19a0" +path = "static-publisher/static-content/file1033.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/desktop/mate_installation/index.html_de0e98c9c6570daf1a6a38c0c24797b0fed66e1ddb7912b373d1d03815fd2e7b" +path = "../build/minified/site/es/guides/desktop/mate_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/desktop/mate_installation/index.html_br_1792f163ebe33d4822ed60963e7dbafabc1d2aa1602df2c7d452c190649d7308" +path = "static-publisher/static-content/file1034.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/desktop/mate_installation/index.html_gzip_2d363e9a6adc3a1b849c328fe7dc96590752ea62ba86936c962d6c169ecad74a" +path = "static-publisher/static-content/file1034.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/desktop/xfce_installation/index.html_d3fb83b3a361758c9b5e76d04a7d7a33f740cdee50a1a7d0e9a241ef1bfb1552" +path = "../build/minified/site/es/guides/desktop/xfce_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/desktop/xfce_installation/index.html_br_b3a591c6e9697c0c9f9e909ff32d41c1f4dbd9810f8ab733f94567a1f17ce401" +path = "static-publisher/static-content/file1035.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/desktop/xfce_installation/index.html_gzip_a98ad7a7271e87767912d52211b4b2e0da8d395246833cd4991060bb71355f0b" +path = "static-publisher/static-content/file1035.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/dns/private_dns_server_using_bind/index.html_f901ae59c8eea305d95f40127334bd691c1642eb8e9f10f4d85270cd2058edb8" +path = "../build/minified/site/es/guides/dns/private_dns_server_using_bind/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/dns/private_dns_server_using_bind/index.html_br_97fa8e286ba02502942a35673866bdfabc855d95ee8a2f92880364fb76b235da" +path = "static-publisher/static-content/file1036.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/dns/private_dns_server_using_bind/index.html_gzip_6c8ebed5d10d2cd32942302dd39e3ea9639e2d499e9fdaa10851c9ed7efbd7d3" +path = "static-publisher/static-content/file1036.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/editors/micro/index.html_c96795ce6cad9f58562e8a4ad8849259d152bd9b115ac8bcf93b213d0e72f0ef" +path = "../build/minified/site/es/guides/editors/micro/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/editors/micro/index.html_br_16352312ca8b6bc4eb4ee1376105f30312ae987a12513b6626e0c3b0c1ef75ac" +path = "static-publisher/static-content/file1037.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/editors/micro/index.html_gzip_2e1a28a3a92090ad757468104a04a437149d9aca7e5112a3fe95128800d974ce" +path = "static-publisher/static-content/file1037.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/email/01-email-system/index.html_26a181595b43f4ed0016d7cb6fa079d61dee54afc3d4267b42fd1828ddc8f77b" +path = "../build/minified/site/es/guides/email/01-email-system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/email/01-email-system/index.html_br_d25c6f1338c1842e7b6f131c3c6e971d8d6460a13508bb696a81bc734932f7e2" +path = "static-publisher/static-content/file1038.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/email/01-email-system/index.html_gzip_be833e0e02ca41c7700f6249984d34e41c2fd0652b2bedc534a9cb1912d6d0fc" +path = "static-publisher/static-content/file1038.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/email/02-basic-email-system/index.html_c2fe3f8dbff2c8c36ef5d402cdf28d678acd081eabc5ecca97e76264e100e615" +path = "../build/minified/site/es/guides/email/02-basic-email-system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/email/02-basic-email-system/index.html_br_950a8f1215ae1a81d8b9988458008558f1eeb9e57172d7b1204a348376494442" +path = "static-publisher/static-content/file1039.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/email/02-basic-email-system/index.html_gzip_861b42149316920a02fac0631fa1442d9b9ef6b76c3de66d2e641f2ed2198ddf" +path = "static-publisher/static-content/file1039.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/email/postfix_reporting/index.html_5583e82e4ec9a2dfaa34f266af9231017e5190dc4abf5ab1e336090597a58271" +path = "../build/minified/site/es/guides/email/postfix_reporting/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/email/postfix_reporting/index.html_br_2721a9f974090704d7c28dd566b78731fe2327d4b9da3b257ab8b8dccafd2b18" +path = "static-publisher/static-content/file1040.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/email/postfix_reporting/index.html_gzip_bd657621c6232f60c141c6c93251950d60f6b4436ebd1bee90ca569b5ae77c10" +path = "static-publisher/static-content/file1040.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/file_sharing/glusterfs/index.html_68c5ae9e99c90b2cca83bba8e1c58c74a523fdf018a73951d5d2ff967bf53ef2" +path = "../build/minified/site/es/guides/file_sharing/glusterfs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/file_sharing/glusterfs/index.html_br_030b85255f4f2b930323048ba5884206210aa3d44616a30600d87d67ec2c239f" +path = "static-publisher/static-content/file1041.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/file_sharing/glusterfs/index.html_gzip_31d8b509e90064b77d634866604fa02f3d4b8e03dc1e5e841bcc5e6c8db69b83" +path = "static-publisher/static-content/file1041.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/file_sharing/nfsserver/index.html_34566023d960380ec551b28ddfa721c05c1c2edd170c1236638f897591572a2c" +path = "../build/minified/site/es/guides/file_sharing/nfsserver/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/file_sharing/nfsserver/index.html_br_d3e64310e73bd785dbf88b60a84f0d3abe9b7d0ce6c58eca32ec364935c58aa0" +path = "static-publisher/static-content/file1042.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/file_sharing/nfsserver/index.html_gzip_f90af8bd453b96c8a598caa28165cc33c5deeef1afea5488d0e55031e6737d2a" +path = "static-publisher/static-content/file1042.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/file_sharing/secure_ftp_server_vsftpd/index.html_1bea67a3fa612750e460f10a2ddf344d15041d778af044da5134594da716975b" +path = "../build/minified/site/es/guides/file_sharing/secure_ftp_server_vsftpd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/file_sharing/secure_ftp_server_vsftpd/index.html_br_e911e7542ca0dd4aeb94dc994cb55dc28d3e2ad327b1cc65609db027e60ac4e4" +path = "static-publisher/static-content/file1043.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/file_sharing/secure_ftp_server_vsftpd/index.html_gzip_ff413c09909138d3392594715b4feb12e1c739f69ee2adf808d4cbe519e523ae" +path = "static-publisher/static-content/file1043.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/file_sharing/sftp/index.html_8aa07117f866027b37fd1fa560f4f98586b22f8f3e8e86c3d39f34bf64676f60" +path = "../build/minified/site/es/guides/file_sharing/sftp/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/file_sharing/sftp/index.html_br_4682af40a4789587ce8919e2474ecf22fbefc89950f594bd56992b726d9a7af6" +path = "static-publisher/static-content/file1044.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/file_sharing/sftp/index.html_gzip_4b95717dadc8cad1e37dbed15b7fd3db991c014895e0c74763dc4f3e4cdb0614" +path = "static-publisher/static-content/file1044.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/index.html_cd01116a6e0475e1ecfab1af4e5398877a93e0d5f692f4f41b985f5fe49bbba2" +path = "../build/minified/site/es/guides/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/index.html_br_04c9e7d5b233caa3d3b0def5e7c3495dceb3f992ef8b92361e5c2eb95561ca9d" +path = "static-publisher/static-content/file1045.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/index.html_gzip_c0f281506d565a06b9bffb571a16123aceab139b1fbc3e767f833a4636004287" +path = "static-publisher/static-content/file1045.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/installation/index.html_7f634d0d94d07d13384cd1c2339ed73c243538a052c5c6a5905a1377c2de4020" +path = "../build/minified/site/es/guides/installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/installation/index.html_br_b1cb3a61db5ff0115b751e066c2340a2d7ec888ba7910e062fd5eb41423ec614" +path = "static-publisher/static-content/file1046.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/installation/index.html_gzip_f3599a31bf50b843c1a11bfa80dc873fb860b871abc693a53893e838927311a5" +path = "static-publisher/static-content/file1046.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/interoperability/import_rocky_to_wsl/index.html_76bb004b27d7b8e85a1c1726859dd13961500c1b5b5f0765dbabe36add4602d4" +path = "../build/minified/site/es/guides/interoperability/import_rocky_to_wsl/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/interoperability/import_rocky_to_wsl/index.html_br_4d0c8b8def5b401819480101718a4f049114ad6d52a9ec9c790deb3856559ad9" +path = "static-publisher/static-content/file1047.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/interoperability/import_rocky_to_wsl/index.html_gzip_266f29660c2902c231e00587f6844491a76005332aab230614a5c5cb4b0e5fd0" +path = "static-publisher/static-content/file1047.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/migrate2rocky/index.html_0f58a2238362e947261c25469690277d8d42c4383d19054de499f326942c62e5" +path = "../build/minified/site/es/guides/migrate2rocky/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/migrate2rocky/index.html_br_d75f56e16249ec6e20d13e8acfd4e9c747ca8693dfe473be65ce67a62541ae86" +path = "static-publisher/static-content/file1048.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/migrate2rocky/index.html_gzip_5eaa35fdcffccd50d42814813ce9ebd9f7fbf636a803b0bc28a2db21ed29984a" +path = "static-publisher/static-content/file1048.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/mirror_management/add_mirror_manager/index.html_88e29b89c091303dafe5af8ca5cfae5d7737ed774bce2fa1c728f88cb98f5fc2" +path = "../build/minified/site/es/guides/mirror_management/add_mirror_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/mirror_management/add_mirror_manager/index.html_br_7863e79f3df1b55e8bf6dcf156c62a6bd9854c868071d5e0c378d9f33dc03a97" +path = "static-publisher/static-content/file1049.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/mirror_management/add_mirror_manager/index.html_gzip_6e60f395019c3c40d116cf887778d3631997ea23177c54c84b75ec225ad77ef0" +path = "static-publisher/static-content/file1049.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/network/basic_network_configuration/index.html_90ee002484ea6e71fb67719451b95c4b242ae0318d3633f06ede6be08bb5824c" +path = "../build/minified/site/es/guides/network/basic_network_configuration/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/network/basic_network_configuration/index.html_br_59a818f0ea2663bfe57034fe339efc55df9e6a100b81b356e060c02767f3b896" +path = "static-publisher/static-content/file1050.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/network/basic_network_configuration/index.html_gzip_02af0cc277d972969596b62a679abe938ca31d6133018b331b6797d1cf40dd5d" +path = "static-publisher/static-content/file1050.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/network/librenms_monitoring_server/index.html_61c78da047608b6810c16d444d7bbc4500c80295c31b28fb7aea74f074bbf8c3" +path = "../build/minified/site/es/guides/network/librenms_monitoring_server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/network/librenms_monitoring_server/index.html_br_74437752976b564df3dd95211c6db70e1d7b265d45a3d37e20ea79ac72b6d0b8" +path = "static-publisher/static-content/file1051.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/network/librenms_monitoring_server/index.html_gzip_2ae2bd48cd4cf5168dc9289caf6481969a2bf69f33e8641b7f3b211986458337" +path = "static-publisher/static-content/file1051.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/package_management/dnf_package_manager/index.html_5990b6412c732798a2137813fd9a758bdf6f772bae6304cf4bc3847c2077b1ac" +path = "../build/minified/site/es/guides/package_management/dnf_package_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/package_management/dnf_package_manager/index.html_br_8df1cd0cd23df90d2065c068a7f74c0588211cf85e1ef4193558b281b16bafc7" +path = "static-publisher/static-content/file1052.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/package_management/dnf_package_manager/index.html_gzip_90f23be905e93401eebacf3788450be0f4058824b05a8cebdb5d92fa4977ce9e" +path = "static-publisher/static-content/file1052.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/package_management/index.html_30e3ad53b4fe0f5595591d163a59268ad728836eb3d5ce9276de39c03d7245a9" +path = "../build/minified/site/es/guides/package_management/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/package_management/index.html_br_5742accb2c7a3d1fbea6e39aa7776e2231464e53e500c846c62ec00c183aaa25" +path = "static-publisher/static-content/file1053.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/package_management/index.html_gzip_5a7b1301145164f78ba984881ac01c2e3bc01d5d7e0b616332643efd43be5498" +path = "static-publisher/static-content/file1053.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/package_management/package_build_troubleshooting/index.html_4dfd6903159619171038d0116c219dcbb13c49db1332c88b8613354204dadcaa" +path = "../build/minified/site/es/guides/package_management/package_build_troubleshooting/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/package_management/package_build_troubleshooting/index.html_br_4ac27bd21920dabe172fc1e14a7377f5e094c56d6fc9ee3fd47b25073b9da4c8" +path = "static-publisher/static-content/file1054.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/package_management/package_build_troubleshooting/index.html_gzip_189c021f89b0c33953ef35bee13d3688a80b5c297f0cd8d6319ac40f03663e8b" +path = "static-publisher/static-content/file1054.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/package_management/package_debranding/index.html_27b29965ded93ca48ce352c1ff3a2e9ee71dd1d3ce6fafcd1d340a29ebace8cb" +path = "../build/minified/site/es/guides/package_management/package_debranding/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/package_management/package_debranding/index.html_br_05ff0e95795532e097523efa910dbf5b842ccfe5a844555d77a66c7b243d1cba" +path = "static-publisher/static-content/file1055.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/package_management/package_debranding/index.html_gzip_4adb6f595d85f698eb73f346f0788a771826e983c95acf1665ff9f3d4c59d1d0" +path = "static-publisher/static-content/file1055.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/package_management/package_dev_start/index.html_132e73ea6fb4004414955138843e6f46be865fb5db2dd08d052014392d736fd7" +path = "../build/minified/site/es/guides/package_management/package_dev_start/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/package_management/package_dev_start/index.html_br_a77572138dff5290d09a652d37895f651e23654ac9b73d0f721c3ba143063d0e" +path = "static-publisher/static-content/file1056.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/package_management/package_dev_start/index.html_gzip_c22eaed22b314ad34592a628e877402792127d6acbd841de2038158d89696e9d" +path = "static-publisher/static-content/file1056.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/package_management/package_signing/index.html_108a4237bff4729df8cb37456c0d681a1e1773831137e3fbf41e59b8cb823e06" +path = "../build/minified/site/es/guides/package_management/package_signing/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/package_management/package_signing/index.html_br_6dfc341af9860cb2d14215e0300dafd5d01e31c511f2bf163c7edc784420439b" +path = "static-publisher/static-content/file1057.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/package_management/package_signing/index.html_gzip_22ca589c7c86ad2cb902058890f0353aee19cfea5b09d4c2ef01195bf3a19ee6" +path = "static-publisher/static-content/file1057.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/proxies/haproxy_apache_lxd/index.html_55d38256be71ac6c7680b31ff4e096ab58d2dfad6f0ea7510f510d5d0f30d44c" +path = "../build/minified/site/es/guides/proxies/haproxy_apache_lxd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/proxies/haproxy_apache_lxd/index.html_br_0d247ab08bee63d861b6589993a0d1fe236b0956356497d53af4ae3c4ef93b3e" +path = "static-publisher/static-content/file1058.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/proxies/haproxy_apache_lxd/index.html_gzip_8ef500e63df1eec2381299f119232fdcf756beea8059a389d1ec5c403b707866" +path = "static-publisher/static-content/file1058.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/proxies/pound/index.html_d829d987753bc1f8c0460055982f3bfd241ff0fe224f29f7e3e98a803039ade0" +path = "../build/minified/site/es/guides/proxies/pound/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/proxies/pound/index.html_br_6e04f851dc3b8a53b48597f37ae0c4abf6be62c4e215e7c49b7788c999212898" +path = "static-publisher/static-content/file1059.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/proxies/pound/index.html_gzip_0f0a0a4be2128fba703f086f28b0cde6ce09b66554ddc9d279b6597d262614a4" +path = "static-publisher/static-content/file1059.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/proxies/tor_relay/index.html_f2a41d0b2118c23167f0779dc8196ce44a7072cb9f7424fd30154bf05fdcb4ed" +path = "../build/minified/site/es/guides/proxies/tor_relay/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/proxies/tor_relay/index.html_br_35169ca2a9033db8ff8f2b0867aea6482810bbb8292731fa23efd634cf08714e" +path = "static-publisher/static-content/file1060.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/proxies/tor_relay/index.html_gzip_27dc13436f876972f18934b58d1ae44bf0be54fbeb2e9008e634c6e0a98ac17e" +path = "static-publisher/static-content/file1060.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/security/authentication/active_directory_authentication/index.html_de54ab6b43ea4b4fd673575e25115e7038e023a720c139363d7a792e881a17bd" +path = "../build/minified/site/es/guides/security/authentication/active_directory_authentication/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/security/authentication/active_directory_authentication/index.html_br_131e3992f211728d987a3843bd9f01909b98ce6f39ee7d54794248791bda0323" +path = "static-publisher/static-content/file1061.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/security/authentication/active_directory_authentication/index.html_gzip_91e592d2b7a1728ebe2332dbfb1ec6d3724e1e6672c68803b3cc40849916d8d6" +path = "static-publisher/static-content/file1061.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/security/dnf_automatic/index.html_abdf996cefeb21490f7095c6d536a2a0aac076f80f4de21b0bfc1a23fc27f4d9" +path = "../build/minified/site/es/guides/security/dnf_automatic/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/security/dnf_automatic/index.html_br_49079ce8f620f7954755670fdbf2f3cef3288ba0cab7e0452afebf916f22d80b" +path = "static-publisher/static-content/file1062.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/security/dnf_automatic/index.html_gzip_f551695912fa1744a6b08489872033dd92ea8889894cae9d0bbea55c5bc8b7e5" +path = "static-publisher/static-content/file1062.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/security/enabling_iptables_firewall/index.html_c7ce55cbfda413dd87910c3610b7fbed23cabfdeef127180e5d8817d7034cff6" +path = "../build/minified/site/es/guides/security/enabling_iptables_firewall/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/security/enabling_iptables_firewall/index.html_br_f2420023fb571f272d0875e890a5fb1a6b1b9dbda32af4de689070ff27e6a352" +path = "static-publisher/static-content/file1063.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/security/enabling_iptables_firewall/index.html_gzip_d2be65999074cbf2cfbfc92e3fca3c22a70f7038262a5b66421ffb7e56d62aef" +path = "static-publisher/static-content/file1063.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/security/firewalld/index.html_df44c04f5d0a3087723765ba5480cc6a7a34d262eb044ae483e00d4bfc7a6e4c" +path = "../build/minified/site/es/guides/security/firewalld/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/security/firewalld/index.html_br_674db766af9d830c8b5b559c40996e765b8a31fd1d234f0badc46b2d11ac179c" +path = "static-publisher/static-content/file1064.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/security/firewalld/index.html_gzip_88ff28feac3903f9484b0bae1cc352a0a54d4241400f1f59268a48d3855db107" +path = "static-publisher/static-content/file1064.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/security/firewalld-beginners/index.html_2b414da2b703d8964103021280630829f1d1675d1162587685f780209277058e" +path = "../build/minified/site/es/guides/security/firewalld-beginners/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/security/firewalld-beginners/index.html_br_f7fda0ae20b41aec8afe2c4a75a27f3498fc5e60cb946a5898f1a73ca95dd3b6" +path = "static-publisher/static-content/file1065.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/security/firewalld-beginners/index.html_gzip_1b50563d3d918e57024816edd8562f65140e7bbd24bc9896867361288ae1a5f0" +path = "static-publisher/static-content/file1065.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/security/generating_ssl_keys_lets_encrypt/index.html_96b0d8c61eb159bce05546d2b29009e7e048fff9dcb419696cf4d0a09df9dcfc" +path = "../build/minified/site/es/guides/security/generating_ssl_keys_lets_encrypt/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/security/generating_ssl_keys_lets_encrypt/index.html_br_c46562081a86fb904b9c8f86eddc8f1f69181142d1bec6ae217283fea0fb07ac" +path = "static-publisher/static-content/file1066.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/security/generating_ssl_keys_lets_encrypt/index.html_gzip_93a3bc631740583d0a024baee19351a4a384ca1316020f67bc7d15e72433e68d" +path = "static-publisher/static-content/file1066.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/security/learning_selinux/index.html_be73c5af45fc091adfecda566348600a7c05a68f9098ec20f5415b6df5a9a253" +path = "../build/minified/site/es/guides/security/learning_selinux/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/security/learning_selinux/index.html_br_c0c10df8beaaff32b1a1e0545cd2b0da3d9e7b68a3da16b4db583deec53d1b2d" +path = "static-publisher/static-content/file1067.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/security/learning_selinux/index.html_gzip_e6f7fe5c3b06b3aabf46563a4c15df6292250f963464b4a44b2d3a3b3f04fd1b" +path = "static-publisher/static-content/file1067.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/security/pam/index.html_6d9e944f533b79f04bcd45d910fd876336508711f4014a4fd0b26a43d93d5be8" +path = "../build/minified/site/es/guides/security/pam/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/security/pam/index.html_br_914cac83d1192537633c2c202f19abb771c71acb50001df994c5b3794087f32a" +path = "static-publisher/static-content/file1068.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/security/pam/index.html_gzip_adc0ef338707392dd741965bb049c75f4c841b342b67c740fc4558d61a89263a" +path = "static-publisher/static-content/file1068.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/security/ssh_public_private_keys/index.html_b1da94285959c2fc094deaaca1380697163351af2eac09c11b31ffaeb01b2519" +path = "../build/minified/site/es/guides/security/ssh_public_private_keys/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/security/ssh_public_private_keys/index.html_br_2b8ac54526eeec99891c35df037109cf5eacea1b794ef00f051a204aa427cfdc" +path = "static-publisher/static-content/file1069.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/security/ssh_public_private_keys/index.html_gzip_22faaa6e1aeb3ed366cb35dae37e4ae85110cfa1a9dbff739ebd3e47cd56c9db" +path = "static-publisher/static-content/file1069.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/security/ssl_keys_https/index.html_6cad33608f0cc0574f2252d3e9bbc988f4fee468e3169f3a3b93a8ea78cc7664" +path = "../build/minified/site/es/guides/security/ssl_keys_https/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/security/ssl_keys_https/index.html_br_d566aa0efd5a630bfaf3141e2085a09d270a49c0c02fee5e22bafdc987f42bac" +path = "static-publisher/static-content/file1070.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/security/ssl_keys_https/index.html_gzip_3668f8e9b36d8f00c77e5ee6a8b741d8d1c3441a2035db87104679f7481e709e" +path = "static-publisher/static-content/file1070.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/security/tailscale_vpn/index.html_c4d994b08caaade1a4d4da36f88cfb84b579ea44ba7f597559b0f5698e04790b" +path = "../build/minified/site/es/guides/security/tailscale_vpn/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/security/tailscale_vpn/index.html_br_2aaabf8fe886aa57662b20424987bd046963a0212234462333097c7213af9ffb" +path = "static-publisher/static-content/file1071.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/security/tailscale_vpn/index.html_gzip_8bed78865e49722570245e0a5a96d2eabcb57c4c0f673df77feb62f4a50d80c3" +path = "static-publisher/static-content/file1071.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/virtualization/cockpit-machines/index.html_745dcec4775c87ee8f4d7d7c35a45fdc7aca9181e5929ddffb1aa55e745c2ffd" +path = "../build/minified/site/es/guides/virtualization/cockpit-machines/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/virtualization/cockpit-machines/index.html_br_1ef5cb0d17ac4cd685a9214c4e4fd061f0d85a2411f822400e30c8e00257bb6c" +path = "static-publisher/static-content/file1072.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/virtualization/cockpit-machines/index.html_gzip_6d9e6ae9f7cacdff737875238e0b2be628507a8b20f1c9391df348ad5c3e00a2" +path = "static-publisher/static-content/file1072.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/virtualization/vbox-rocky/index.html_4570e457fdcfb768f9ceb201551c109f4ae14e0469a008d790a6feb6ef8fd474" +path = "../build/minified/site/es/guides/virtualization/vbox-rocky/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/virtualization/vbox-rocky/index.html_br_87d29a7120d8245f7e87d6773223fb2437a734c859126a8704147f9abb2aa630" +path = "static-publisher/static-content/file1073.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/virtualization/vbox-rocky/index.html_gzip_dd8268c7dfcfc87abc5d5a2dcf0450f5e580056c386ce9ec5e12dcfe46de4a0f" +path = "static-publisher/static-content/file1073.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/virtualization/vmware_tools/index.html_fb4c913c4f26174e829bd484dec1d81b846797bfabe64def4a31f4a739febfd5" +path = "../build/minified/site/es/guides/virtualization/vmware_tools/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/virtualization/vmware_tools/index.html_br_cc37bf01fe453263c61d7bd70dcd5b3ddb0ac9ae95b2893250a4f2fc6ff27ecd" +path = "static-publisher/static-content/file1074.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/virtualization/vmware_tools/index.html_gzip_07b88defe4cf1b83228af1127365e40e15efaa0d21dc54d0c3361f4446cde97a" +path = "static-publisher/static-content/file1074.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/web/apache-sites-enabled/index.html_e84d909d38efb3a5f3e76bf8a63c8231b681585d3e11243e921b226ad91eef2b" +path = "../build/minified/site/es/guides/web/apache-sites-enabled/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/web/apache-sites-enabled/index.html_br_4a6ddee3a145f4564e1548fb68ef6afb952049f45bcee8bb2511900fc5f35b1b" +path = "static-publisher/static-content/file1075.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/web/apache-sites-enabled/index.html_gzip_1450afb0f3388e796f95cbf1e98bd83a612ac4258f40ce2f7553c0668fa45211" +path = "static-publisher/static-content/file1075.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/web/apache_hardened_webserver/index.html_67ed94bf3dafc84d3ca263cce7b501eb78dd1f77edbc60d84b5795a60b89ce37" +path = "../build/minified/site/es/guides/web/apache_hardened_webserver/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/web/apache_hardened_webserver/index.html_br_e3a68ac0221bf5c99f342e14da2f38959a8721f81c30a01f491b421fdb571168" +path = "static-publisher/static-content/file1076.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/web/apache_hardened_webserver/index.html_gzip_17b017b76215b3f1b76b52aa5eb4a3746068fcd87bc59567ce9217db3c200ef5" +path = "static-publisher/static-content/file1076.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/web/apache_hardened_webserver/modsecurity/index.html_f47a96a932eec9d61a229d063324d08068c5427b317eb41ea9bcffc261252f76" +path = "../build/minified/site/es/guides/web/apache_hardened_webserver/modsecurity/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/web/apache_hardened_webserver/modsecurity/index.html_br_5b277ee6338ce28a8210d75a1a3491c84c1ed2ce16b864d7febcb1972efdca2e" +path = "static-publisher/static-content/file1077.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/web/apache_hardened_webserver/modsecurity/index.html_gzip_e2a40d9fe544217bc91c3f893e3df107d148eaf6a9d193c9a7227c4ed6afeb26" +path = "static-publisher/static-content/file1077.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/web/apache_hardened_webserver/ossec-hids/index.html_27d2e0203ae41f7a0bfc1c1c6ae1eefd39471ba35eb7d90346d10fb1ff43dc3a" +path = "../build/minified/site/es/guides/web/apache_hardened_webserver/ossec-hids/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/web/apache_hardened_webserver/ossec-hids/index.html_br_53cf44b09e4aca4120b94a0240ca14b5638af0cb1b248664c654e166f2d59a25" +path = "static-publisher/static-content/file1078.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/web/apache_hardened_webserver/ossec-hids/index.html_gzip_6ae4927e466ebd0d8c94ff4e868c5bf4168fa0462aa94c5d6ff638a38f9282ea" +path = "static-publisher/static-content/file1078.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/web/apache_hardened_webserver/rkhunter/index.html_777dea8373b181a9f4c773776a721c6af14761dab63c64e07ba590128ad5d562" +path = "../build/minified/site/es/guides/web/apache_hardened_webserver/rkhunter/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/web/apache_hardened_webserver/rkhunter/index.html_br_44f062d98e6d444d71d26d9309339101ffb9973c36b78b1b3a9898005727353b" +path = "static-publisher/static-content/file1079.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/web/apache_hardened_webserver/rkhunter/index.html_gzip_17e1311f771c53bb1008a29521b76f1a1baa4cd79204757adab78c476ddd83dc" +path = "static-publisher/static-content/file1079.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/web/caddy/index.html_da1ae07bf13ba6a839f568d8ceb8dc600d3a5dfefd8fd3db049907c0b487ee85" +path = "../build/minified/site/es/guides/web/caddy/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/web/caddy/index.html_br_91d7ea10e6a5109318952aab1bc7469bb464e98ec764d25cc13e1df82c88aa64" +path = "static-publisher/static-content/file1080.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/web/caddy/index.html_gzip_51e32f19568666b8b7b96a372a245060f90decc6d214286b4833763639d14843" +path = "static-publisher/static-content/file1080.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/web/mod_SSL_apache/index.html_ed5c36974abc6d7085df56e4d09e4aa3012c07a7779e59ca61935949f3fb17d0" +path = "../build/minified/site/es/guides/web/mod_SSL_apache/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/web/mod_SSL_apache/index.html_br_9a6d4248eec54d6fc71202253edc61873cb59bcfae192197e75e6219ece8f7e1" +path = "static-publisher/static-content/file1081.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/web/mod_SSL_apache/index.html_gzip_91af7202cd7dacb8a05c0a2528cf3d13bab4af3bca67e6924938611fea096a39" +path = "static-publisher/static-content/file1081.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/web/nginx-mainline/index.html_f434d8e5a2b66435b3b52289c1274b5aa029061df933a1d6ebec1ae2e0557dca" +path = "../build/minified/site/es/guides/web/nginx-mainline/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/web/nginx-mainline/index.html_br_1225db484aac2b033fe5c6dc636ac0331621be3b368cfe74b9cb963fc6984f5a" +path = "static-publisher/static-content/file1082.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/web/nginx-mainline/index.html_gzip_bdd33f637c02d8d1aff6ee8c849f457b6a97d66bcfe8850fb292723d06352f91" +path = "static-publisher/static-content/file1082.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/web/nginx-multisite/index.html_96712c10c1b979d4fa79fdabc680df2556c9ad3a905470378812cd67a05c4f0d" +path = "../build/minified/site/es/guides/web/nginx-multisite/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/web/nginx-multisite/index.html_br_ef3aae438adac77169904636ee4d1eb4802bfbc7ff215c68e4b19f2191aee15c" +path = "static-publisher/static-content/file1083.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/web/nginx-multisite/index.html_gzip_226f84b9477cb7b3c9272705dcc62e839b60c809a9b7d7fd6e423ef104ad7e32" +path = "static-publisher/static-content/file1083.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/web/php/index.html_ba336950539f23773c881b54a5bab933032a40168d87e3f70f684153b412de41" +path = "../build/minified/site/es/guides/web/php/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/web/php/index.html_br_6a9a5c1059a82bfa4fefe4dcf4c9c42d5048069179d4c380e801e96afe52a74e" +path = "static-publisher/static-content/file1084.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/web/php/index.html_gzip_995f72d44e95603e8d7196e57093530f1bcf3d819969a58cefe4ca33f34fa050" +path = "static-publisher/static-content/file1084.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/web/tor_onion_service/index.html_e4fcf0060535862934494ac5eb36bdcc0ea70aeccd201a2dafaf9778a7dd3729" +path = "../build/minified/site/es/guides/web/tor_onion_service/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/web/tor_onion_service/index.html_br_842a2efff2e4353a6978864d78088f6419553b81d396a51b2974935d10f1516f" +path = "static-publisher/static-content/file1085.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/guides/web/tor_onion_service/index.html_gzip_160eff1cacf1056781fd3178cae6af74c933b93a11c88ee838dda065a8590434" +path = "static-publisher/static-content/file1085.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/index.html_85bf8b209949eda0863502ab1c2ef77350a408709936d75ab757a68e5b4577a0" +path = "../build/minified/site/es/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/index.html_br_f905d3339e414955a362551272ef034db465cc52528a9c2e16fbd6a0ff0aef88" +path = "static-publisher/static-content/file1086.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/index.html_gzip_90980cbe52cea9091e16e94c4f91dfbd8ac63e7f2cf44944f4faa727b0676780" +path = "static-publisher/static-content/file1086.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/labs/index.html_50a515e6b314d9b470a6a9c1aa7a75bda86fa50f287c5dc034433b906f4ba4e2" +path = "../build/minified/site/es/labs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/labs/index.html_br_40b332357e739d673f7c647fa3e91f4c8ef29d54032c69575188d7ce5fbdf79c" +path = "static-publisher/static-content/file1087.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/labs/index.html_gzip_8b14f7f4bb7f213639248154474bda84a5da2781bf634904c8d568ee3228b381" +path = "static-publisher/static-content/file1087.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/labs/networking/lab5-nfs/index.html_6bd6a93f1f89ba7f6e460c6d5635e925a0ddc1ec2856cb1df17cb2dc41ac0e50" +path = "../build/minified/site/es/labs/networking/lab5-nfs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/labs/networking/lab5-nfs/index.html_br_fb25477ef17ce1c47cdfc34045e1bca03744125fde417972f7a6986712ed3d34" +path = "static-publisher/static-content/file1088.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/labs/networking/lab5-nfs/index.html_gzip_f983dcaca6f6b639c939ec0697c83828c52cbf176a7ce2d20bb601dbe3b10ab2" +path = "static-publisher/static-content/file1088.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/labs/security/index.html_5378d7685c5a9575ef9ce86574058afaffac43ec73a5b80f114688de032f06b1" +path = "../build/minified/site/es/labs/security/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/labs/security/index.html_br_47e8788a59d0ad9ffa5e134a9f094f9d68ebb8219087d550667e59528d9b6f44" +path = "static-publisher/static-content/file1089.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/labs/security/index.html_gzip_7b3c303796b92666a9f54d61724f43a8a7604248036e012d2f31a80f4d3ff50b" +path = "static-publisher/static-content/file1089.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/labs/security/introduction/index.html_53e179431ace48cb4873b8ac0e8966cc5884657d09d21c208f71bb67a805f692" +path = "../build/minified/site/es/labs/security/introduction/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/labs/security/introduction/index.html_br_e4a0b076853afcc9ebea8e1e7ded1b73396743f09bbd08bea9cd6db73ef9e232" +path = "static-publisher/static-content/file1090.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/labs/security/introduction/index.html_gzip_6d070f88b1f555d0510c86152a5e6027615be1b34c6a77641d48546da2af0def" +path = "static-publisher/static-content/file1090.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/labs/security/lab3-auditing_the_system/index.html_30815171ec9c00acb6657f3f06277db9c7fbc9be300e6a8365fd0aea8ec6b357" +path = "../build/minified/site/es/labs/security/lab3-auditing_the_system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/labs/security/lab3-auditing_the_system/index.html_br_c633d82848ee5dcef69523bc30a9cc81ac59e27c7d48fcfb1d1eb686039193d1" +path = "static-publisher/static-content/file1091.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/labs/security/lab3-auditing_the_system/index.html_gzip_85014696924a3d0098df0829030c8f294f959f686dc4c7daeb4344d83e1f2264" +path = "static-publisher/static-content/file1091.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/labs/security/lab8-iptables/index.html_64406a4254ee805a687dce9ed7cad99778f0ab044aae72ffe5a901fc01b23ebd" +path = "../build/minified/site/es/labs/security/lab8-iptables/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/labs/security/lab8-iptables/index.html_br_dff974eda8afbf644168877b0221fd5a7e6f516fca01f573f9575aeba7f08443" +path = "static-publisher/static-content/file1092.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/labs/security/lab8-iptables/index.html_gzip_a14cb0a10a9be0ee20a36d19c0f7fef690cf7cf9481ad0bad3e5bf807c588589" +path = "static-publisher/static-content/file1092.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/labs/security/lab9-cryptography/index.html_5be4c54168b28e4a27d0bf2d1d972bd904169466481906b284c946e9e7201431" +path = "../build/minified/site/es/labs/security/lab9-cryptography/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/labs/security/lab9-cryptography/index.html_br_8391c8f556df5f9049b3fc6ae475eebcb1370f14e1d3b678be9da8678bb1b308" +path = "static-publisher/static-content/file1093.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/labs/security/lab9-cryptography/index.html_gzip_b71d3688a126a9743c44a93c46093d5e39c619f8d59b9475bd72ae605ded9f92" +path = "static-publisher/static-content/file1093.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/labs/systems_administration_I/lab3-system_utilities/index.html_2d5f39d402c6701a40d33752237faf409da1977c609ed22441f427ead6285eb1" +path = "../build/minified/site/es/labs/systems_administration_I/lab3-system_utilities/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/labs/systems_administration_I/lab3-system_utilities/index.html_br_86f7b7a080cdf775cfa230750f19971f307296b1753c85d7fc9a025963d34130" +path = "static-publisher/static-content/file1094.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/labs/systems_administration_I/lab3-system_utilities/index.html_gzip_ca779475f22e0e77441202dd31c6345c7fd534056dd3ef88bffed1f562b11230" +path = "static-publisher/static-content/file1094.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/labs/systems_administration_I/lab5-networking/index.html_cae0a125cb41acce129c7383bbd4a01d1684135ce1322c5d874f76161828221b" +path = "../build/minified/site/es/labs/systems_administration_I/lab5-networking/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/labs/systems_administration_I/lab5-networking/index.html_br_23a4fe46f966a0a29dca5e1793f77a82b1c39568feaa1d9512939b08990b5591" +path = "static-publisher/static-content/file1095.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/labs/systems_administration_I/lab5-networking/index.html_gzip_29cdd26338ca18ba4b0758e747f8d96b87ed346c952402aecdf6b0d244531806" +path = "static-publisher/static-content/file1095.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/labs/systems_administration_I/lab6-user_and_group_management/index.html_187310bf71d4932a582af82b129424c0eafcfc6be2528e9869f555ee9b5eda98" +path = "../build/minified/site/es/labs/systems_administration_I/lab6-user_and_group_management/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/labs/systems_administration_I/lab6-user_and_group_management/index.html_br_870cee20b2695167a5138d61e877a39c5fa33bcc30de17cae2e05562c870a9f4" +path = "static-publisher/static-content/file1096.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/labs/systems_administration_I/lab6-user_and_group_management/index.html_gzip_3b40910fa120368925365ae1921fe195a18e9f632b75289a2ed21fa0810f2fd6" +path = "static-publisher/static-content/file1096.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/labs/systems_administration_I/lab7-software_management/index.html_f41f49aab931038bb7b10d9794f211c954ca0951324599b37895773fe5c8e7cb" +path = "../build/minified/site/es/labs/systems_administration_I/lab7-software_management/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/labs/systems_administration_I/lab7-software_management/index.html_br_aacc136199959c7ad4e628b1d957662b11d0ec14ec1990d08cdf366657d95b2b" +path = "static-publisher/static-content/file1097.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/labs/systems_administration_I/lab7-software_management/index.html_gzip_720c9876ee89bcece4967510f938513805f351332496ec881a41675fb5762a78" +path = "static-publisher/static-content/file1097.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html_ab55c21b7f108e9de7dcdb1fe8b8b32eceece93acb89daa8a74034732d1593df" +path = "../build/minified/site/es/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html_br_fbed27bc588f3f82c239c92ad50c7810f1455968d0f6c0b50669f5fcd4259daf" +path = "static-publisher/static-content/file1098.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html_gzip_c7705d3d19c141188631e6e19247ba19cfc963bc1811162dbdf12dac687a286d" +path = "static-publisher/static-content/file1098.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/labs/systems_administration_II/lab3-bootup_and_startup/index.html_06ec6b8fd74bb287172f46e625c06c4bdd285b0d0ef05dabc8a3dfabae74e995" +path = "../build/minified/site/es/labs/systems_administration_II/lab3-bootup_and_startup/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/labs/systems_administration_II/lab3-bootup_and_startup/index.html_br_0ee813fd96c7beacc246d263f9f356f1657ca72cb617b94ec16ab0ed8af142fd" +path = "static-publisher/static-content/file1099.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/labs/systems_administration_II/lab3-bootup_and_startup/index.html_gzip_9d92a8dc6b476b0455d14de1bca3597dfbe5b77778e48f9d092d71e4b21cebe4" +path = "static-publisher/static-content/file1099.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html_4fe704cbe79ba3d391abc51d3dd3c112aba0ce3d77d90320c2bf67cbd316db6c" +path = "../build/minified/site/es/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html_br_882604a8310631a71cfeceb6f021af60be12d698adbc698cbcb762c162aa8a76" +path = "static-publisher/static-content/file1100.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html_gzip_70644a500ec2f14fc5a2d1b605827c2ce9fe4cc61d611d6e2b193d5977d39df3" +path = "static-publisher/static-content/file1100.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/labs/systems_administration_II/lab6-the_file_system/index.html_2af2f0a478cfe955ad6b6575c905e36ada43f1f84e069823e815844ed979088b" +path = "../build/minified/site/es/labs/systems_administration_II/lab6-the_file_system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/labs/systems_administration_II/lab6-the_file_system/index.html_br_f629c73f44ba2b51d1a2ad381519fc3625b5ebe86de39bddc119271cd91f49a0" +path = "static-publisher/static-content/file1101.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/labs/systems_administration_II/lab6-the_file_system/index.html_gzip_b5874aa3dd75e94632a556a4b613e5d4b886a70252e0fa7c3ba94ee588691624" +path = "static-publisher/static-content/file1101.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/labs/systems_administration_II/lab7-the_linux_kernel/index.html_fb604d4c3cdc27bea3d890dab60c4927b2d7c7c3f5042196c5928f55ab82af40" +path = "../build/minified/site/es/labs/systems_administration_II/lab7-the_linux_kernel/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/labs/systems_administration_II/lab7-the_linux_kernel/index.html_br_26245514012d2ce466de12e0f297f479c3a3b24d5baf732735d37ecd27371ac9" +path = "static-publisher/static-content/file1102.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/labs/systems_administration_II/lab7-the_linux_kernel/index.html_gzip_94f02b57fed92a543f3d1fbff27b0bca381a352c36ab4eec756e1a2568f9d999" +path = "static-publisher/static-content/file1102.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/release_notes/8-changelog/index.html_e2ec84739db3239b4853d7779c67308228e24c6b918a3c5b3e19f49796c2e9ad" +path = "../build/minified/site/es/release_notes/8-changelog/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/release_notes/8-changelog/index.html_br_9d9bf195252ed335f6d30938a23908781cc9970700fd2a015c6bc291e7520072" +path = "static-publisher/static-content/file1103.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/release_notes/8-changelog/index.html_gzip_21b30807d2fd0f9dc94c49f78b0a58ddb7ec6adb87d22d06f8e5b1bc4cd771bc" +path = "static-publisher/static-content/file1103.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/release_notes/8_4/index.html_a94bc3eb67eede7e6ad9fd999063e1e60a0d33f11f96a456cb8e06e99fda0e73" +path = "../build/minified/site/es/release_notes/8_4/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/release_notes/8_4/index.html_br_8824483e456a4105320ad1014e14a4368ccb454664e73f05c09a0aacea89c517" +path = "static-publisher/static-content/file1104.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/release_notes/8_4/index.html_gzip_fa05c6bb07cdee71a8ca15d97047004f5c83d2b27fe9b20e52235bb648d4b3a3" +path = "static-publisher/static-content/file1104.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/release_notes/8_5/index.html_efad56b3a6272eb19568346de3ca9dfbc83d767c259836228bbce7f689d6b6e5" +path = "../build/minified/site/es/release_notes/8_5/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/release_notes/8_5/index.html_br_46bfcf35f6131aa306805bcd8144f3b83cacf518aa76e5e2783da0216e75785b" +path = "static-publisher/static-content/file1105.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/release_notes/8_5/index.html_gzip_a66a63a6612b80bc6bd21d0a15114dda445fd8a23c1d369206239ac512373c0e" +path = "static-publisher/static-content/file1105.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/release_notes/8_6/index.html_88c38ad2c330e8a878fa19af6b136bc62903a7a0f56262ca1c88e3f74d1affe6" +path = "../build/minified/site/es/release_notes/8_6/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/release_notes/8_6/index.html_br_5d4cbc7ce3904704e71fe9863d0792181cc220a0ef397b0343c01654f06dee84" +path = "static-publisher/static-content/file1106.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/release_notes/8_6/index.html_gzip_96d9242b0f9389848983695931ea58f2cb28634420a9d1b08139fc8466105007" +path = "static-publisher/static-content/file1106.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/release_notes/8_7/index.html_9d745be3cdfcf44ad6a3413b98d8bece0c798e387fe324af52bcfbd096092c49" +path = "../build/minified/site/es/release_notes/8_7/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/release_notes/8_7/index.html_br_95b2a047c0316f80dd6cadbb949b0859f5baea28b856c2de3188f0a736451378" +path = "static-publisher/static-content/file1107.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/release_notes/8_7/index.html_gzip_81cadbb23fe0a136a6d7d26482768db41a5cb9e9325ffafa809711079fad6208" +path = "static-publisher/static-content/file1107.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/release_notes/8_8/index.html_5a5d2fe0a5d9445eb0c8a338f06950be7c84b84cd522ef2e3d18320a1e7e98ec" +path = "../build/minified/site/es/release_notes/8_8/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/release_notes/8_8/index.html_br_529a6afd360b6b8754035091e2ec92d74fb81d5a78d610d345bbd92e86c23971" +path = "static-publisher/static-content/file1108.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/release_notes/8_8/index.html_gzip_9d64089b0569449047c491a41306174be477d5a14c5a62d23d12f33580629550" +path = "static-publisher/static-content/file1108.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/release_notes/8_9/index.html_fb1bd10a5c49e4daaa7e3045bf2a32ba942b48f51b6ad47b39cdee3392c82159" +path = "../build/minified/site/es/release_notes/8_9/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/release_notes/8_9/index.html_br_358d473f7003c3c0ad805667d0ac3a57bb330c4a4b961a30216d4f89806ffdd5" +path = "static-publisher/static-content/file1109.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/release_notes/8_9/index.html_gzip_7708c6ed0bd37ec56234865eac5b8aa14078be2bc525f137a4161d43194812e4" +path = "static-publisher/static-content/file1109.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/release_notes/9_0/index.html_99ca12c5e4bcba05148bbd1f89fc6e95f211696bc4078f932bfbb601223fe9c5" +path = "../build/minified/site/es/release_notes/9_0/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/release_notes/9_0/index.html_br_9c920806c9b26bfe8006732a21f41a941b86ff8db705bb35a8da76032f98075f" +path = "static-publisher/static-content/file1110.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/release_notes/9_0/index.html_gzip_ca3f97078c596784fd14a056c7893ad33078f9a6592e4e0c2f9a82f4ca411cb2" +path = "static-publisher/static-content/file1110.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/release_notes/9_1/index.html_8b0595f06080f41dda7e741f55f2f7e89e06ee28ca8accceaccec7e54275724d" +path = "../build/minified/site/es/release_notes/9_1/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/release_notes/9_1/index.html_br_a002d36d2294fe3677d4d14c0ef9428eb5cb3c4954009fe46ba0254cbcb7b0ac" +path = "static-publisher/static-content/file1111.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/release_notes/9_1/index.html_gzip_788c2c43451c6f23b6ad2ee9abe333223fc76c409f82a19f93f9c19b4dcf10ba" +path = "static-publisher/static-content/file1111.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/release_notes/9_2/index.html_68220f4324c4f0671987ed2e782ab8ffa33c8906f2d0431726e0c8ee0b9c7115" +path = "../build/minified/site/es/release_notes/9_2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/release_notes/9_2/index.html_br_c79bb6b85aec99b6a9838ca6b14d0c151d073e57dab44cc89effb603891a9b14" +path = "static-publisher/static-content/file1112.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/release_notes/9_2/index.html_gzip_b0d8a90b2fba551658ae210d40f76f80ffef6e638f973cd633e82f1a00d0ffc4" +path = "static-publisher/static-content/file1112.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/release_notes/9_3/index.html_6a83c6ed91a68d63b39ca2107c519af11dc8b4272a282099baacf918fc0162dd" +path = "../build/minified/site/es/release_notes/9_3/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/release_notes/9_3/index.html_br_1a7db3e35915e211d005c226782331f4de1c1beb1f4f88642187e4218efaa48a" +path = "static-publisher/static-content/file1113.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/release_notes/9_3/index.html_gzip_d56e01b74d5b5301436afa4e736e53e4a4bb3d01adb546d4ae02fb65ee3388f4" +path = "static-publisher/static-content/file1113.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/release_notes/index.html_333d037badaecaf02e662b9630892d85f171d74d0e8edd5804222cfd8b32f27c" +path = "../build/minified/site/es/release_notes/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/release_notes/index.html_br_9646658a7c53d4f835acd8f8c49d9480d3999e151e78023ec0948b3a3ccde1ae" +path = "static-publisher/static-content/file1114.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/es/release_notes/index.html_gzip_ce7c9fef03215efbce04496f99d30e93bf9bc62b26020b17e5663fd3de70d593" +path = "static-publisher/static-content/file1114.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/admin_guide/00-toc/index.html_458e1a62c32a52fa4e60218be242b336f5a5d5542552943f2db609a7eafc8de9" +path = "../build/minified/site/fr/books/admin_guide/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/admin_guide/00-toc/index.html_br_89128c6e854e154e783f693639cd61a3411fae79ca85b13c6c41efaf200d345c" +path = "static-publisher/static-content/file1115.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/admin_guide/00-toc/index.html_gzip_d0a069fdd8e2f0a79d9b0dbad29461b966557dd4e5121fa8b65ae920a5c1c29d" +path = "static-publisher/static-content/file1115.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/admin_guide/01-presentation/index.html_083849a8bf36f5fb8bdbbd477db11e3808a680ce95d9d8b33b4bb978de0ee211" +path = "../build/minified/site/fr/books/admin_guide/01-presentation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/admin_guide/01-presentation/index.html_br_426b44f6d240fd28870eb1e1696b5bb7f58a4705a5e09a18e5e7ef023dcd2eaa" +path = "static-publisher/static-content/file1116.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/admin_guide/01-presentation/index.html_gzip_77a3b258a01e00e4bcfe4bd50af18f07a523c1f1b6a682fa3325a38a27b84e01" +path = "static-publisher/static-content/file1116.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/admin_guide/03-commands/index.html_992325ef25838ddadf7658a3f677b51db0bbc0ed46f72f4ef195b1df7a4323dc" +path = "../build/minified/site/fr/books/admin_guide/03-commands/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/admin_guide/03-commands/index.html_br_0b913e68e641bef74a7824887528cdd403bae4846bfc536127186eb78bce56ff" +path = "static-publisher/static-content/file1117.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/admin_guide/03-commands/index.html_gzip_798ad796f67108c3c8a65d95a72ab98957a798d5ad88c62e7991e711a7446d15" +path = "static-publisher/static-content/file1117.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/admin_guide/04-advanced-commands/index.html_f1df0c1cff83cf52d61099d60a4c1d690e3e32013eadb26d93ca672eec7cc2c1" +path = "../build/minified/site/fr/books/admin_guide/04-advanced-commands/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/admin_guide/04-advanced-commands/index.html_br_05ffad12648f75205e5a6c2612612d582b5c0a1f5ecf1760bdb4727e1a800d30" +path = "static-publisher/static-content/file1118.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/admin_guide/04-advanced-commands/index.html_gzip_e5a6deb99549ed710c5a920b9c93ab26788b5147cd7b1c7b51bcb669c82ab8db" +path = "static-publisher/static-content/file1118.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/admin_guide/05-vi/index.html_85c2eda7fba03b3d01c9e436875ecc348fc0f41b954d95d186861d3cf444c3e4" +path = "../build/minified/site/fr/books/admin_guide/05-vi/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/admin_guide/05-vi/index.html_br_2755b88df29b606c61f0e7e94e7215b93d470e7f00fe002a5bc30acc1e5310cf" +path = "static-publisher/static-content/file1119.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/admin_guide/05-vi/index.html_gzip_df1df6376c2298a0c7084fdd374faeef570d41faaf2531824557fa49949558ab" +path = "static-publisher/static-content/file1119.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/admin_guide/06-users/index.html_ec5e75a9e7cf849c96ee2661ec7734de0dafcf983e83af8c164378fd1b8a5894" +path = "../build/minified/site/fr/books/admin_guide/06-users/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/admin_guide/06-users/index.html_br_45ebe2d10557f272223e5b36c1ef6de69b68fcac66344e3ea55cbb0f0aa26758" +path = "static-publisher/static-content/file1120.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/admin_guide/06-users/index.html_gzip_8d649c3c512e53cfa95b05fb7e7df3ed767a44e23f870cab6dfc158679fe7ac4" +path = "static-publisher/static-content/file1120.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/admin_guide/07-file-systems/index.html_f7771d758b6818d45aa12f7af97e8c86629927d47753e72f35ff95d80f50a162" +path = "../build/minified/site/fr/books/admin_guide/07-file-systems/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/admin_guide/07-file-systems/index.html_br_e28bda3fe4e2273195245ab3a1a9de1529bfc0ae648207e35bd0575668875e66" +path = "static-publisher/static-content/file1121.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/admin_guide/07-file-systems/index.html_gzip_6e595c028898fa45082410658ff558b651db4b0bba993070087717872b751103" +path = "static-publisher/static-content/file1121.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/admin_guide/08-process/index.html_31f3784abdf2c510d9c253ec403fb020f3337caf50e36c10f5f6a3e4bba29259" +path = "../build/minified/site/fr/books/admin_guide/08-process/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/admin_guide/08-process/index.html_br_04111066f210d8f4914927789e36233ab7f903fd1312672d3e76e8be03f2e3e7" +path = "static-publisher/static-content/file1122.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/admin_guide/08-process/index.html_gzip_21429afd4140243939ce2cb09425fc6ca298d3b1509863da983d1cda515c3e2a" +path = "static-publisher/static-content/file1122.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/admin_guide/09-backups/index.html_356720cf1b0306dd5e6da988c86c5ea82b07fc6ae25f84d86d64366e47609125" +path = "../build/minified/site/fr/books/admin_guide/09-backups/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/admin_guide/09-backups/index.html_br_4a762aa877bb6060bc63b1c78f81ba48d96ba26069ef13fc31723576070d9aa0" +path = "static-publisher/static-content/file1123.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/admin_guide/09-backups/index.html_gzip_c727b48e0385f16da4c588e4da93c13f4f8a8ebeab84d95da2c61fafda6ad5f7" +path = "static-publisher/static-content/file1123.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/admin_guide/10-boot/index.html_ec9ddeccd3add800c9c288ac19525fbba0d8d75d6b8a92e6fa0023e0e92a814c" +path = "../build/minified/site/fr/books/admin_guide/10-boot/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/admin_guide/10-boot/index.html_br_101c7457735c4f581e79fa10effb8f4ec1d25978df6bd7351dc375b578751262" +path = "static-publisher/static-content/file1124.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/admin_guide/10-boot/index.html_gzip_0738e0d0b564cead24ca43d5a52c022769d61c495cf321664cebc70ac6870ae0" +path = "static-publisher/static-content/file1124.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/admin_guide/11-tasks/index.html_c33b6e6cbefba6c1a713d75f8fc606d3b6506f50d71a452120c1d7a3748ae121" +path = "../build/minified/site/fr/books/admin_guide/11-tasks/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/admin_guide/11-tasks/index.html_br_efeb36bdf8d1f022b873ca837422596cd80516ee71ba305590fb8f73adcf9b68" +path = "static-publisher/static-content/file1125.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/admin_guide/11-tasks/index.html_gzip_39abdba8c5175baf197301b37244d5f9fab954d0deda6063db611c502e2efa41" +path = "static-publisher/static-content/file1125.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/admin_guide/12-network/index.html_bde8110dff66fa105658e2223f00b0b6651dc302c77219c5071e2355936293b1" +path = "../build/minified/site/fr/books/admin_guide/12-network/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/admin_guide/12-network/index.html_br_dc34a60998f28d16035363d6808fd6fab1b03876b9389a23924de9e1db794bf5" +path = "static-publisher/static-content/file1126.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/admin_guide/12-network/index.html_gzip_d6d5fe1903a5ba405cb9730f90a6313e70f58881b7036a54a81592266763b850" +path = "static-publisher/static-content/file1126.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/admin_guide/13-softwares/index.html_26180a5c11e9fa5bc04f69bb53299aea2dcae46b37c9f249ec61e0fbeb439bf2" +path = "../build/minified/site/fr/books/admin_guide/13-softwares/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/admin_guide/13-softwares/index.html_br_91f01365a360183f9e7258bf98dbf23929399d91f1359b4107bf8f3fbee78acd" +path = "static-publisher/static-content/file1127.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/admin_guide/13-softwares/index.html_gzip_cbc042baade76b3dba59555b429996da4fe1cc41901a8db50b198aaa1f3e0d39" +path = "static-publisher/static-content/file1127.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/admin_guide/14-special-authority/index.html_e31f45cc059249a784c2d33a23e5e78a0d3a7718440a04234bbfba3462a95da2" +path = "../build/minified/site/fr/books/admin_guide/14-special-authority/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/admin_guide/14-special-authority/index.html_br_2b9a06ba1dc950fb76e5f93f2e4f7440f8de0e8c336cd39ba0e784b78525c089" +path = "static-publisher/static-content/file1128.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/admin_guide/14-special-authority/index.html_gzip_f9fa06c7649e8d035649ac762064324a9d775f5e0c2871c4bb5428ec350261fd" +path = "static-publisher/static-content/file1128.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/admin_guide/16-about-sytemd/index.html_3bc8d43d79b2d1bc88c27e89beb9d2ec64916007efc6762fa7df5a26216bbdaf" +path = "../build/minified/site/fr/books/admin_guide/16-about-sytemd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/admin_guide/16-about-sytemd/index.html_br_3cd4032be2380c552273192f175f70a8aaf0fda7a7ff28dd43c2d365af303825" +path = "static-publisher/static-content/file1129.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/admin_guide/16-about-sytemd/index.html_gzip_35e5c0c5313ff6973bb49003e2bc4f09722a80e005d42473750387d74bea97b7" +path = "static-publisher/static-content/file1129.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/bash_programming/01-Shell-overview/index.html_4b368d415c6c8423b6595721b1bf055a568c5c34e816375aae672c644df42e58" +path = "../build/minified/site/fr/books/bash_programming/01-Shell-overview/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/bash_programming/01-Shell-overview/index.html_br_1456177a6d0f269f75f12ab68a4e62a537ef7673f930e084151470dcf70dd9b1" +path = "static-publisher/static-content/file1130.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/bash_programming/01-Shell-overview/index.html_gzip_c7ed1bd8e06e058193a1354462a0aedf511cc42a0f1f1d0a3d7b9ff0dd97175d" +path = "static-publisher/static-content/file1130.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/disa_stig/disa_stig_part1/index.html_1bb250c190a75a6749219055c14f0e43e25c84a7500e8380ca1f251de91b8165" +path = "../build/minified/site/fr/books/disa_stig/disa_stig_part1/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/disa_stig/disa_stig_part1/index.html_br_4d9ba4dfdd718deec7b26bcdf3126030a82f6574189683e753e451310615ee05" +path = "static-publisher/static-content/file1131.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/disa_stig/disa_stig_part1/index.html_gzip_70dfe46a70120e44aa6ef6bfc1a9a55517b981ea77e7ca9296237c4c500688fc" +path = "static-publisher/static-content/file1131.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/disa_stig/disa_stig_part2/index.html_c795f50f1c0f3082c75c3a0dfba896921391d675c7c99c0232ea21917e217c94" +path = "../build/minified/site/fr/books/disa_stig/disa_stig_part2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/disa_stig/disa_stig_part2/index.html_br_0a5f662475d96cec13559863b4b270b40a6fd18a4c17466ce802ebb4d99e5aba" +path = "static-publisher/static-content/file1132.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/disa_stig/disa_stig_part2/index.html_gzip_9f1f08fb8ce68e51e20cb8a4daedbcffee7a8466674042c97d4fa8c919331665" +path = "static-publisher/static-content/file1132.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/disa_stig/disa_stig_part3/index.html_e986205dda32bd69703cd773961cf18f6168c30ff0e634d265e7816e836fa60d" +path = "../build/minified/site/fr/books/disa_stig/disa_stig_part3/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/disa_stig/disa_stig_part3/index.html_br_11f191388e96676dfbfd9b03ce022e22de1be1aa4b2b48376c2a9061aff6e0ce" +path = "static-publisher/static-content/file1133.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/disa_stig/disa_stig_part3/index.html_gzip_9628323a4b4634fcaa5b2718d5c0b3fad6248c39247407461b53c7b2aa885168" +path = "static-publisher/static-content/file1133.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/index.html_3bbd062b4a14cf60b3417a811ca8de03fb35e1e2f9a76942bd873c674d67f941" +path = "../build/minified/site/fr/books/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/index.html_br_fc5e19ecb5678b76714589ce7152caa083406e509109818ff28d46bc192ab7fb" +path = "static-publisher/static-content/file1134.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/index.html_gzip_d87ef37f9d1a8d5df8f51ccbea1b3d240fbf27f1894d1570e12701ee8a44fcec" +path = "static-publisher/static-content/file1134.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_ansible/00-toc/index.html_089b406d3f214642a08411a542168d96060264593e80344083169a41a13e7bae" +path = "../build/minified/site/fr/books/learning_ansible/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_ansible/00-toc/index.html_br_460bd1d641ce09b12f918ba83df024f3a8ef46ba644e4b000b4b6311e58ea676" +path = "static-publisher/static-content/file1135.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_ansible/00-toc/index.html_gzip_975a13317a90a37fe05054193edab201bb12e66634fcf1192151d4084721d147" +path = "static-publisher/static-content/file1135.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_ansible/01-basic/index.html_6ff9c41d626ba0be69923ce20f5eb14387cd0efac1a2b11d99e343fe83ebcd28" +path = "../build/minified/site/fr/books/learning_ansible/01-basic/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_ansible/01-basic/index.html_br_5f39581803059f848057c0877f196721d774caf634c92a60fdb667369a04249c" +path = "static-publisher/static-content/file1136.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_ansible/01-basic/index.html_gzip_0d7f4694be1efcd62cde09998d06f996128ca4d3c7c945180e05506fd9177157" +path = "static-publisher/static-content/file1136.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_ansible/02-advanced/index.html_cbb181828f9aeef2272a337dd4bf97fe5a11c9c55ecab7a3f39070c234240860" +path = "../build/minified/site/fr/books/learning_ansible/02-advanced/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_ansible/02-advanced/index.html_br_ec41c973e9801e67d7b21792af42cd1f5e18a7f1e7a00c30ca9a428eb8abdcb8" +path = "static-publisher/static-content/file1137.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_ansible/02-advanced/index.html_gzip_b41aee5a6cc54b6980d50817897618c0e34a02bf280f1d534baae8770da1724f" +path = "static-publisher/static-content/file1137.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_ansible/03-working-with-files/index.html_92b947431c2bdeff14720d7d50a116530fee746c5b86b292ef39e84b4231edb9" +path = "../build/minified/site/fr/books/learning_ansible/03-working-with-files/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_ansible/03-working-with-files/index.html_br_a545cea6128d0834bd6f9ff3dc0937bd1dccce0f15e413a72e1244c444537aa4" +path = "static-publisher/static-content/file1138.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_ansible/03-working-with-files/index.html_gzip_c977f381fbde82a58b6d84e0e1d151185e394c99a49c10d6e69b81b732f31034" +path = "static-publisher/static-content/file1138.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_ansible/04-ansible-galaxy/index.html_136ac60b1e703c030a148140b8e2b956b328fe8ce1ee16ac1888b031c6c128ed" +path = "../build/minified/site/fr/books/learning_ansible/04-ansible-galaxy/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_ansible/04-ansible-galaxy/index.html_br_cd2ed1b241f136c2dad98fd662c63f1c2f438c6a99f35c7dc4d7e81df915143e" +path = "static-publisher/static-content/file1139.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_ansible/04-ansible-galaxy/index.html_gzip_f90536e776d9f35de019adb4d36e0b49f110693b68d7194858c2a8f45a256f13" +path = "static-publisher/static-content/file1139.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_ansible/05-deployments/index.html_50fec3995951056fac74093d19a14aeb4d0dd384689712917816900dd76aff71" +path = "../build/minified/site/fr/books/learning_ansible/05-deployments/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_ansible/05-deployments/index.html_br_4716ecce6acbb2a5d4be4942239e979511abc6fae5586c64f4692d967856b067" +path = "static-publisher/static-content/file1140.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_ansible/05-deployments/index.html_gzip_8a325d50c95542fc9819cdc3c608f19396aa47526a3958302fe5bca49269ee0c" +path = "static-publisher/static-content/file1140.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_ansible/06-large-scale-infrastructure/index.html_cb12da2c2278e27187099cae4741123c7903291e526a750aa70465dcfb921f78" +path = "../build/minified/site/fr/books/learning_ansible/06-large-scale-infrastructure/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_ansible/06-large-scale-infrastructure/index.html_br_88ac2518171e47c1c96bc88fae2f80d8808b34b2d9e5bea7252cf1fb0c2bd72b" +path = "static-publisher/static-content/file1141.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_ansible/06-large-scale-infrastructure/index.html_gzip_da0c44c0da9361b736fef35a5a48e09f55df269e600451bf636fc8cfb7ae5791" +path = "static-publisher/static-content/file1141.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_ansible/07-working-with-filters/index.html_4543ac1cf444cd024fd9b1deeddee33adf67e1a51c7a15037ba36362039f5643" +path = "../build/minified/site/fr/books/learning_ansible/07-working-with-filters/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_ansible/07-working-with-filters/index.html_br_dbc395fa1bb30866f0188d08c5cb85c2d332ff5ccdd0c6063474ee6ea107e7fb" +path = "static-publisher/static-content/file1142.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_ansible/07-working-with-filters/index.html_gzip_c0cf9514404cee9d6d83d4b42b04d027f4f847476614ac4340da7a8de3f5d3f0" +path = "static-publisher/static-content/file1142.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_ansible/08-management-server-optimizations/index.html_6edcc053c183b57cc14877a503111a51589104f43fafbf2cdc0ee59612124fc8" +path = "../build/minified/site/fr/books/learning_ansible/08-management-server-optimizations/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_ansible/08-management-server-optimizations/index.html_br_7bdc246188736280fcc774fcca2dd7c23ecc9f7872b18059e9d5e776ed3e784e" +path = "static-publisher/static-content/file1143.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_ansible/08-management-server-optimizations/index.html_gzip_7cf9d4c23ca87e0a792dbcd31c3c38d984b5ec945c1b5fd00c387d7034b161da" +path = "static-publisher/static-content/file1143.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_bash/00-toc/index.html_e835db7121204c3ffa210def00c4d895218fad9cae952284885a67e609dadf3c" +path = "../build/minified/site/fr/books/learning_bash/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_bash/00-toc/index.html_br_bce2af171e33c118aa49ba33f5f156b8265344881fca583927bfd47bc952a0cf" +path = "static-publisher/static-content/file1144.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_bash/00-toc/index.html_gzip_79880f38c18c01a93be8147878c628c2c76027a66c48eca352415e9824e9f422" +path = "static-publisher/static-content/file1144.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_bash/01-first-script/index.html_0f2ee8ec8de3794a520757323e4e55b45eefbd1151776cb1224abe6e979dfcd3" +path = "../build/minified/site/fr/books/learning_bash/01-first-script/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_bash/01-first-script/index.html_br_b5aa777117153b41b902cff6c885817c430fc8681d0eabb47703f5085889fe21" +path = "static-publisher/static-content/file1145.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_bash/01-first-script/index.html_gzip_31b581db31e2e8f0b5c70d17a48587edd5790ca3ccb442e2f46f8b4032df9d81" +path = "static-publisher/static-content/file1145.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_bash/02-using-variables/index.html_c226ecde4c2341c51f926c9a507256c03523a40ab0cecb3a4f1f036070ac1a81" +path = "../build/minified/site/fr/books/learning_bash/02-using-variables/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_bash/02-using-variables/index.html_br_08595cb2ab9ec5807d66fc6f9ac22829d893aaadb2fd97955d75c3c910e31bc5" +path = "static-publisher/static-content/file1146.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_bash/02-using-variables/index.html_gzip_2a7e31ee3597b7d71ab82eddc82b174b086b6d0a8cdf03e1c55920e12335155d" +path = "static-publisher/static-content/file1146.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_bash/03-data-entry-and-manipulations/index.html_5d9dbf3ef1a8eb3044767c8379e605ddbf534b7b4def6b3b3fb92f335c9854f8" +path = "../build/minified/site/fr/books/learning_bash/03-data-entry-and-manipulations/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_bash/03-data-entry-and-manipulations/index.html_br_c838358c80a5fa58e1cb30dd3bd5673e21a11168dfaacf17b522624159b129cf" +path = "static-publisher/static-content/file1147.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_bash/03-data-entry-and-manipulations/index.html_gzip_3f8913cef067852e2e2cc9f216df9637ac941fcf744c67aadc83b5406f73c3b0" +path = "static-publisher/static-content/file1147.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_bash/04-check-your-knowledge/index.html_e8dae2f36196f2183ec92608f59e095c444e60c7d60ee7daa45a1cbbcc0382f1" +path = "../build/minified/site/fr/books/learning_bash/04-check-your-knowledge/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_bash/04-check-your-knowledge/index.html_br_f1e0b46d6a8c7e01d2b47ea735e556be92951a70a3dcb0bb7f32e2e6fa72598a" +path = "static-publisher/static-content/file1148.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_bash/04-check-your-knowledge/index.html_gzip_a190dad50f0a16b68a174ce7a00f66acc6684e05c0abc35d41145328ca982359" +path = "static-publisher/static-content/file1148.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_bash/05-tests/index.html_c4e9a842820212c5e5c74ba883c3afdd47a17f166609febcbeb510042ed88bc5" +path = "../build/minified/site/fr/books/learning_bash/05-tests/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_bash/05-tests/index.html_br_ae6899b06fa6368f916a1fa6699d6662ff6696812a1fe244e86bf02e2eed76f4" +path = "static-publisher/static-content/file1149.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_bash/05-tests/index.html_gzip_a6de5bb22fb251eca17197e77340ac582419b4bff321d1815624d3f1d75010bb" +path = "static-publisher/static-content/file1149.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_bash/06-conditional-structures/index.html_80ed72fe6b5c98bde0e6abede1447b012fa1ad4f23b6e2e16b6cb0b8ec869e0a" +path = "../build/minified/site/fr/books/learning_bash/06-conditional-structures/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_bash/06-conditional-structures/index.html_br_b7d7524370c0de489a03ae33bd7677d959f766567c5fe1d75f8b309ec390c620" +path = "static-publisher/static-content/file1150.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_bash/06-conditional-structures/index.html_gzip_47e36cf2c534186c5f428a43d2c309dc30f430a73b74f02764e49aa2f0fb9964" +path = "static-publisher/static-content/file1150.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_bash/07-loops/index.html_002cf72be16163f0a7d5bd26cdffb920a28924e3abb74b63587aaaf062705285" +path = "../build/minified/site/fr/books/learning_bash/07-loops/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_bash/07-loops/index.html_br_385f55b7d33cb640c2059d146ae13596c5ef381cec0807e770e019ebba2a6fb3" +path = "static-publisher/static-content/file1151.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_bash/07-loops/index.html_gzip_7df9a9a7543833df8f547e5f7360f51772a9f0771858156811f4ffca09ad3159" +path = "static-publisher/static-content/file1151.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_bash/08-check-your-knowledge/index.html_aa7a005911b11b8f5ec8ecb082a71d9c1deb8123ffc4578b990e3630cf69daee" +path = "../build/minified/site/fr/books/learning_bash/08-check-your-knowledge/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_bash/08-check-your-knowledge/index.html_br_dfb81900789f15865fb3472dd084cf6b1194a39791cf6c4b1b7808cfd1bac21e" +path = "static-publisher/static-content/file1152.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_bash/08-check-your-knowledge/index.html_gzip_6a06a85b70edd1da0f05e4d2b9700cad815b4a1e39e9dadfe4ae947a664b2cf3" +path = "static-publisher/static-content/file1152.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_bash/appendix/02-variables-logs/index.html_f2e590effa0c8b95f0ec9c6ebad9593fcb1922e68ea04a878e724f8e44bee4b6" +path = "../build/minified/site/fr/books/learning_bash/appendix/02-variables-logs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_bash/appendix/02-variables-logs/index.html_br_03fe87688ed5ae6ef71759d11d19308b01a6f99a8b35296d68fabbfe3992daee" +path = "static-publisher/static-content/file1153.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_bash/appendix/02-variables-logs/index.html_gzip_2745d17c1f6431d5487bb3e4e24960d6e912482ec7b2bd8f8efd8f33c07d31e8" +path = "static-publisher/static-content/file1153.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_rsync/01_rsync_overview/index.html_889a6dd32713aec00ed714cb5d4b77fbfcab0ca6ac8a3f0a9e959d643711ea2e" +path = "../build/minified/site/fr/books/learning_rsync/01_rsync_overview/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_rsync/01_rsync_overview/index.html_br_d1eb8516bdfe6cab05bda71c19fddc91276341ced883e80b978b76ba9060b484" +path = "static-publisher/static-content/file1154.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_rsync/01_rsync_overview/index.html_gzip_fa5a7364b8069f163c01e9ebd7b1c9f98be6cc3b92053e8c0decb0523a112033" +path = "static-publisher/static-content/file1154.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_rsync/02_rsync_demo01/index.html_568a3a57d949e62619326cb41a1cdd77f90f28c3ffe1e88b0a19625ba59b9302" +path = "../build/minified/site/fr/books/learning_rsync/02_rsync_demo01/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_rsync/02_rsync_demo01/index.html_br_2f6f1529aecf079030a1e47c86b72f43af7fbf16f245e77507360c997dcea8ee" +path = "static-publisher/static-content/file1155.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_rsync/02_rsync_demo01/index.html_gzip_cf6a3f6285bb7a4b260d5cf0a393c4a5176ab9c0ccf75c380e7346abf1b38b0b" +path = "static-publisher/static-content/file1155.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_rsync/03_rsync_demo02/index.html_0454cfaa5a707b40745894f7db0ce7e5dc37bac435af0d36b7625dce6ad1f379" +path = "../build/minified/site/fr/books/learning_rsync/03_rsync_demo02/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_rsync/03_rsync_demo02/index.html_br_11f37b9973c57684837b9d7af3392b2c499590c3cc0a96de53f2d481acfc1811" +path = "static-publisher/static-content/file1156.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_rsync/03_rsync_demo02/index.html_gzip_fe5b870793470478fbd0c4737a13f570f74fe1d8354034c84e75e5539ccec75d" +path = "static-publisher/static-content/file1156.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_rsync/04_rsync_configure/index.html_7c9470fd0a106be4eea4cd806b4aeb6aaec2154a6138145c728be75a4b4978f9" +path = "../build/minified/site/fr/books/learning_rsync/04_rsync_configure/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_rsync/04_rsync_configure/index.html_br_f9cae02b5625c44a240f3bdfef295ba6232fb47f6ed3f6b81ef8d3cd61afb69c" +path = "static-publisher/static-content/file1157.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_rsync/04_rsync_configure/index.html_gzip_658cd2adda7a789c72ba2f9f917a5a83f8feacdb05f9434dd0cd6ef71e5c7d62" +path = "static-publisher/static-content/file1157.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_rsync/05_rsync_authentication-free_login/index.html_a51c5cad616174fdee9dd4da9559f5196ce1edfd44b716aa5a5ce15c0dc222ae" +path = "../build/minified/site/fr/books/learning_rsync/05_rsync_authentication-free_login/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_rsync/05_rsync_authentication-free_login/index.html_br_35e99cdb24aab6e2da426fd78feff18bfc74f11d6faf6f4745e24efc593b7335" +path = "static-publisher/static-content/file1158.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_rsync/05_rsync_authentication-free_login/index.html_gzip_082cd255605beeb63bb11f5d1bb682381bb66bf4eb9cb493f6dcaa366f0631b6" +path = "static-publisher/static-content/file1158.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_rsync/06_rsync_inotify/index.html_3f0bda9e4ec0ce50535999a1318ef55d5716cac15be193c129e00f725689ce60" +path = "../build/minified/site/fr/books/learning_rsync/06_rsync_inotify/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_rsync/06_rsync_inotify/index.html_br_5a069dbc8931428894b5bcc27d92d31800c6156d7e0a7948142028641574bf9f" +path = "static-publisher/static-content/file1159.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_rsync/06_rsync_inotify/index.html_gzip_1d1c37a6d38a9d6ef09d82073865e0cfa179a7217ec6837e14653cfb6c561cf9" +path = "static-publisher/static-content/file1159.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_rsync/07_rsync_unison_use/index.html_3caec7fbe89b1f72f5217af0512e4741d29588e68a70912dd1706d9fef2f054f" +path = "../build/minified/site/fr/books/learning_rsync/07_rsync_unison_use/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_rsync/07_rsync_unison_use/index.html_br_1dc20a85b8de2fc5c3835154004c537622d6fed1f179c3350acb704581331f5d" +path = "static-publisher/static-content/file1160.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/learning_rsync/07_rsync_unison_use/index.html_gzip_33c2adc09f478d2e2de7d6161a8743934bd96d9c7ec10c6eaa89eb8f597fbd87" +path = "static-publisher/static-content/file1160.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/licence/index.html_b28d8ccc224c042f283f45f24502b744fcb09a4147303eb82a02284bdbc26885" +path = "../build/minified/site/fr/books/licence/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/licence/index.html_br_81a57685ba9486097e0908131ef6b5c896d8674fc51b70cbf47fd606a00d1553" +path = "static-publisher/static-content/file1161.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/licence/index.html_gzip_9564fa126e86597779eb3bfa4333a6594e6bb1522ca4ecdbcf0a9354ea528870" +path = "static-publisher/static-content/file1161.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/lxd_server/00-toc/index.html_c5b01871a581f6914e1db8b4e83fbf95ffcfcc355e5fd8583017a642f5288bb0" +path = "../build/minified/site/fr/books/lxd_server/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/lxd_server/00-toc/index.html_br_6130ea27f4b066f8141e14144365d445ea2b722c1deffdf38d783162b9feda8c" +path = "static-publisher/static-content/file1162.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/lxd_server/00-toc/index.html_gzip_ad2e8a37d9a5b588d333d49a6110dc50824c3c20c891c1c8d3974b5216e8c3aa" +path = "static-publisher/static-content/file1162.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/lxd_server/01-install/index.html_cb6489b6262ad914901937e2bd85fceef708fb21aa674dc2e59bb8ea6ad93ab9" +path = "../build/minified/site/fr/books/lxd_server/01-install/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/lxd_server/01-install/index.html_br_ac600ea3ab8e7a524dd5b16bfcb40121569d5a89dac5f113c273239143bb0858" +path = "static-publisher/static-content/file1163.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/lxd_server/01-install/index.html_gzip_89f65173d7764fdacbfe9550d3495df306196e227b8945b6d560fd1f539e8874" +path = "static-publisher/static-content/file1163.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/lxd_server/02-zfs_setup/index.html_7c1f758a17f409198dba8402303b5a3a9ceb6cd02fe5f5fc6cb86c3cbed4ec93" +path = "../build/minified/site/fr/books/lxd_server/02-zfs_setup/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/lxd_server/02-zfs_setup/index.html_br_52011bf0aaead79f81408db91eccdd9df6dd3c54dc61b94b33097ad88b2f5d3c" +path = "static-publisher/static-content/file1164.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/lxd_server/02-zfs_setup/index.html_gzip_db97018af8cd31b7ba28df38e9bcdd3ee20221918771be1bba7b47b3be4fa825" +path = "static-publisher/static-content/file1164.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/lxd_server/03-lxdinit/index.html_96e086b4d1195205e6c6087045b2f52ec15685d9f5ac1baea81d93c2e9092cee" +path = "../build/minified/site/fr/books/lxd_server/03-lxdinit/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/lxd_server/03-lxdinit/index.html_br_2396494002b64f0eb0ccc081a2ba7ff3451b999c6136ab5a9ef4e412b6d85f3a" +path = "static-publisher/static-content/file1165.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/lxd_server/03-lxdinit/index.html_gzip_e5430d0616aee5fdd8ed735fef5ad2ce42c2b8be33b647e6342228ed240c8544" +path = "static-publisher/static-content/file1165.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/lxd_server/04-firewall/index.html_3a58828068789a8bb2df7c75b4c3b4418ebc06ca6bdd74aee669c5e60fdc6c2b" +path = "../build/minified/site/fr/books/lxd_server/04-firewall/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/lxd_server/04-firewall/index.html_br_6416f2731a175771e968336c479acbe7b7fed708435fc90bb73e696c0df14d6c" +path = "static-publisher/static-content/file1166.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/lxd_server/04-firewall/index.html_gzip_915b0de470f6b581ce7877b0b70b4d121c337ffc34aab28e1d2dd1bdc47ded5a" +path = "static-publisher/static-content/file1166.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/lxd_server/05-lxd_images/index.html_8a6350ae07cbfad2a05100cd3b809b449250ca8887379def60613503cbc5d522" +path = "../build/minified/site/fr/books/lxd_server/05-lxd_images/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/lxd_server/05-lxd_images/index.html_br_2aadf6cb93abeaca62d6a290d7e4089829924ee178b8293fdffb4473b8c1a964" +path = "static-publisher/static-content/file1167.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/lxd_server/05-lxd_images/index.html_gzip_1d70e406868d287d4c9f206e93a5816fde41965de9a58f1c032c83eaa1b511be" +path = "static-publisher/static-content/file1167.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/lxd_server/06-profiles/index.html_8f05c6c9dd98838dd7ab54153b7914b3814cca78a25a45ec908052bb40e9b262" +path = "../build/minified/site/fr/books/lxd_server/06-profiles/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/lxd_server/06-profiles/index.html_br_f6817431d894526d9721d2b03ddd808f73d553a69c4f02f0faec189bb0cafcbf" +path = "static-publisher/static-content/file1168.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/lxd_server/06-profiles/index.html_gzip_1a79c50bd40d91e90e650916c68456534a5c5fb8ab8e6815de247d1de9eb60ce" +path = "static-publisher/static-content/file1168.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/lxd_server/07-configurations/index.html_3e0414dd2d4c56bd279bdea338c4536ac46ae3aca49361aa8bf2ada2a7eb9fa7" +path = "../build/minified/site/fr/books/lxd_server/07-configurations/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/lxd_server/07-configurations/index.html_br_8afffe93484a4afdd73a2864675ead33d91734b2faf85dfcbba5704f2c8e5265" +path = "static-publisher/static-content/file1169.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/lxd_server/07-configurations/index.html_gzip_00c69431a005e2faf4f324e78031d86b172404af4a51860ddc2ff57902d0498f" +path = "static-publisher/static-content/file1169.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/lxd_server/08-snapshots/index.html_d50673f0986e6cf1f382363d7408420c46744edf1d00205fe8ac631006727252" +path = "../build/minified/site/fr/books/lxd_server/08-snapshots/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/lxd_server/08-snapshots/index.html_br_c08718f427b226457afd743d2152ea5d7772719b7569792e435167f92358d473" +path = "static-publisher/static-content/file1170.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/lxd_server/08-snapshots/index.html_gzip_491d51d3b3a6bd520b6a058cd88a813d53621def394b610421d954c36cb772df" +path = "static-publisher/static-content/file1170.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/lxd_server/09-snapshot_server/index.html_46835e3e26b1383f90db49c616cb8c72fb4647c86127ec179849fa2373bb5ff3" +path = "../build/minified/site/fr/books/lxd_server/09-snapshot_server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/lxd_server/09-snapshot_server/index.html_br_5bd731c9ea34f42b03b5a00ef26149aa3f901fe535723eb6913e0187b82c1250" +path = "static-publisher/static-content/file1171.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/lxd_server/09-snapshot_server/index.html_gzip_ec8e9bc4658b4200d84d005f5ad78de074063a8bc6d4e15df60b412783ceff35" +path = "static-publisher/static-content/file1171.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/lxd_server/10-automating/index.html_612d5ca4d8f565681692cee0ed9c91f20a52b093611e2dc10786be70e74dbc91" +path = "../build/minified/site/fr/books/lxd_server/10-automating/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/lxd_server/10-automating/index.html_br_46b76dc46c5a64eae33dc75d31aa76722b48f5a23f4d7c8ed05a351a5557863e" +path = "static-publisher/static-content/file1172.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/lxd_server/10-automating/index.html_gzip_0a62eee78858027b3bab8dad3bbc41a511ce2f93971591dbf39acfff4fa3b377" +path = "static-publisher/static-content/file1172.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/lxd_server/30-appendix_a/index.html_711191a4bbcd4b096aee53b9c0feaea3987176919fb0a3da5fecbefb17b7d21d" +path = "../build/minified/site/fr/books/lxd_server/30-appendix_a/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/lxd_server/30-appendix_a/index.html_br_fabd24a9f25070f0da89c76af025b390cc083ea3147c6fa7977d9c1774c4969c" +path = "static-publisher/static-content/file1173.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/lxd_server/30-appendix_a/index.html_gzip_7212153287ab90f72b3116ac9cb67e7d40a792f3a1f9dd7b02304b2c00fd7f68" +path = "static-publisher/static-content/file1173.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/nvchad/additional_software/index.html_af459c3d69b40290f80a4595754359f246472aca66ec691271ffba860f960ab5" +path = "../build/minified/site/fr/books/nvchad/additional_software/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/nvchad/additional_software/index.html_br_40b15905e93e00e9280063c95a0fe05f3e390cc0ad35207cc4af1e5afc1d5505" +path = "static-publisher/static-content/file1174.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/nvchad/additional_software/index.html_gzip_437cb9b6cb42770b502b442d05f5435e916dffcbbf344d46128daa3295b2bcf7" +path = "static-publisher/static-content/file1174.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/nvchad/index.html_627d2d008e384c42ce44af85fef656942c29df32a1bf8b3ef74c13f1da3ec2bf" +path = "../build/minified/site/fr/books/nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/nvchad/index.html_br_4aee78205f6ae69e0c5cf8c0cfea9e0e7c28e9c6de87dabc90c9728826847900" +path = "static-publisher/static-content/file1175.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/nvchad/index.html_gzip_2d243e016ce0be0c5efdfa7c967e1aa9cdbd085005871a26a9927e152031b777" +path = "static-publisher/static-content/file1175.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/nvchad/install_nvchad/index.html_629605d2a33a4d32e53b683a975dea45108779cef2439e4e3abdab1cb9e97040" +path = "../build/minified/site/fr/books/nvchad/install_nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/nvchad/install_nvchad/index.html_br_ce1a82a431bfdccc4fd84c7d9a7f6f47964badf4a7d9b7eebf3ddbe99a3ec2a0" +path = "static-publisher/static-content/file1176.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/nvchad/install_nvchad/index.html_gzip_2073b02cb3e6ba5dc8b122821767f9bffba22ec7c4ea4f8ae192806777a29e09" +path = "static-publisher/static-content/file1176.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/nvchad/install_nvim/index.html_eb7de7b0c72bcd588258c7ffd600ef2c27b198ac4dc86d42d333d8f30ba6b3fe" +path = "../build/minified/site/fr/books/nvchad/install_nvim/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/nvchad/install_nvim/index.html_br_ad595956525c8306b4ac19b1de0bc286f272e4f077f7b3f5ca814e5401060933" +path = "static-publisher/static-content/file1177.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/nvchad/install_nvim/index.html_gzip_87d616c5f08544997d4793c9017e0b66e1b50e6759f6602c61b4b2c8f0535ddc" +path = "static-publisher/static-content/file1177.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/nvchad/marksman/index.html_47345281b6b197d1e6d31c16fd5485cfcdf11aed489f8a5f277ab9dfe225da8a" +path = "../build/minified/site/fr/books/nvchad/marksman/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/nvchad/marksman/index.html_br_6eae7af6aeffb55f335c002bf2c90d88c1032aba9cf1f13281d27fd026997148" +path = "static-publisher/static-content/file1178.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/nvchad/marksman/index.html_gzip_8e7714869229259d6ad286f8606be638f321f8cc60f0fbe937e3d67a26e79e80" +path = "static-publisher/static-content/file1178.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/nvchad/nerd_fonts/index.html_3fc20ce6d342d9c3cb2af1628f825b678d359d21c2c53a686fa2d36f17e5e906" +path = "../build/minified/site/fr/books/nvchad/nerd_fonts/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/nvchad/nerd_fonts/index.html_br_08967673cd5bece79f7bd417591feb843e20d41a39739f4359e888fe8b11c822" +path = "static-publisher/static-content/file1179.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/nvchad/nerd_fonts/index.html_gzip_c2838dc6ca4331a6b6a6c898e04d96b73c95087e3539c6ddbc6a0a2d6970c079" +path = "static-publisher/static-content/file1179.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/nvchad/nvchad_ui/builtin_plugins/index.html_c1b185cb39e11bf96f7fa4f8182186013d97c0ebb0dff8ca873cc71148a70b47" +path = "../build/minified/site/fr/books/nvchad/nvchad_ui/builtin_plugins/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/nvchad/nvchad_ui/builtin_plugins/index.html_br_133d9661a7c96b8da66fd5d91415c657b0f2965a51affcb0cd5778c028142ed1" +path = "static-publisher/static-content/file1180.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/nvchad/nvchad_ui/builtin_plugins/index.html_gzip_724153870a6497907292b16c47c6a3dc6885b0449d17b4e437b05c9af15132f8" +path = "static-publisher/static-content/file1180.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/nvchad/nvchad_ui/nvchad_ui/index.html_f6fc4dfa0845463692cb8a9bee7546ad222dfdd04e47e27aae76fed0233e39d2" +path = "../build/minified/site/fr/books/nvchad/nvchad_ui/nvchad_ui/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/nvchad/nvchad_ui/nvchad_ui/index.html_br_649461ee998b7417d29715682e3bd2ede6f8cae7dd2799ad7bc269f1ce95edb1" +path = "static-publisher/static-content/file1181.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/nvchad/nvchad_ui/nvchad_ui/index.html_gzip_53af6e16fcc33b0baca3d132e3fc835fbc73049a4d6f95dad2df103f563da9ea" +path = "static-publisher/static-content/file1181.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/nvchad/nvchad_ui/nvimtree/index.html_db2e03e3836e39e7d776bb1109da7d21036e835313fbf5444d953e6255a782a4" +path = "../build/minified/site/fr/books/nvchad/nvchad_ui/nvimtree/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/nvchad/nvchad_ui/nvimtree/index.html_br_81cfbf6cbd064063188c28a6ace8464740e766935f18bd951ca8050d13113750" +path = "static-publisher/static-content/file1182.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/nvchad/nvchad_ui/nvimtree/index.html_gzip_a7150ec273cca0d8015dc764f7c19a20276f4d3a64360ca7d91a9b0252625653" +path = "static-publisher/static-content/file1182.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/nvchad/nvchad_ui/plugins_manager/index.html_3c224019189928dc3666a5e4c35195bf2904747f094c7df19a4a85a8a127a189" +path = "../build/minified/site/fr/books/nvchad/nvchad_ui/plugins_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/nvchad/nvchad_ui/plugins_manager/index.html_br_7856052552b38f9b1ee332cca5e2956d1e003316ae0bc99be1f7b6e880085b42" +path = "static-publisher/static-content/file1183.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/nvchad/nvchad_ui/plugins_manager/index.html_gzip_925a1c0691aa84186ebc1c65f83193ca27c62496bfdfcf224532ecbcef81d7a2" +path = "static-publisher/static-content/file1183.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/nvchad/nvchad_ui/using_nvchad/index.html_1ca2d2454d98ac7185493abc82766b16ff36993fe8ce2232f2d2e34847c6df94" +path = "../build/minified/site/fr/books/nvchad/nvchad_ui/using_nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/nvchad/nvchad_ui/using_nvchad/index.html_br_1b9aaab468b6f8c102ad4fe1fd36a261cb1fbd3f3e7143a06c0e649c1ed873d2" +path = "static-publisher/static-content/file1184.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/nvchad/nvchad_ui/using_nvchad/index.html_gzip_317243b5bbec0cf7c5ea23beb77495c58bce3cbf08c5b99eee93a8bd369ca5a0" +path = "static-publisher/static-content/file1184.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/nvchad/plugins/index.html_692d9a68d9839c40c34b9ff05c42d31bef1b4ebfe0f6f4453763858621a06b19" +path = "../build/minified/site/fr/books/nvchad/plugins/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/nvchad/plugins/index.html_br_46987d5c067a62526e312b111d1a52ab0537cf7df9403d3ec3ab71c344dab400" +path = "static-publisher/static-content/file1185.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/nvchad/plugins/index.html_gzip_d3f70a60af4e56a5cb39c7c7f547c01af4a8e9eea9657ce56af45010fe30159f" +path = "static-publisher/static-content/file1185.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/nvchad/plugins/md_preview/index.html_5955d2405fd5d7f016d8cbf5d9ed7f61bbec9b2e283cf742c4bb72a46377e87e" +path = "../build/minified/site/fr/books/nvchad/plugins/md_preview/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/nvchad/plugins/md_preview/index.html_br_3e5c9583fe3d18efe21e5627e2b4aa00339aadde22f2fabce4b950c9848307f7" +path = "static-publisher/static-content/file1186.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/nvchad/plugins/md_preview/index.html_gzip_eed486f1d540a8ad15fac704ba58752f7bec45d9cbc8e8e158b501cde06c21c6" +path = "static-publisher/static-content/file1186.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/nvchad/plugins/projectmgr/index.html_bf920ce42b0f8fb07a91ddbc163a72b5c4a0775c336bf71f2ac92fd3ee792cdb" +path = "../build/minified/site/fr/books/nvchad/plugins/projectmgr/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/nvchad/plugins/projectmgr/index.html_br_affad8232d344cb63faeca5327ff94e2620d4a46ca63ebb6fead1fb589af14f7" +path = "static-publisher/static-content/file1187.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/nvchad/plugins/projectmgr/index.html_gzip_c1bbb7089d76ebea5f507036b4c2a567d1f4501f1352b3187a6488a3c2dd3516" +path = "static-publisher/static-content/file1187.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/nvchad/template_chadrc/index.html_bf4f334c8bec20ca409af472bd74c7dec818579ec59a0880dab8ba6a075581bb" +path = "../build/minified/site/fr/books/nvchad/template_chadrc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/nvchad/template_chadrc/index.html_br_ed3ba8a8ec6eac51d07535c3d25f1b687787c7df53ce27182e92ddad8d9443f4" +path = "static-publisher/static-content/file1188.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/nvchad/template_chadrc/index.html_gzip_56dcd0cacacabca0d72e7749710ddcd36ec685639373207fcdd382bdc2dde070" +path = "static-publisher/static-content/file1188.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/nvchad/vale_nvchad/index.html_214f0f6a2c1c34ef9bea0b89b64c9d54cc58731c54c6d546d91e3726f4da1ceb" +path = "../build/minified/site/fr/books/nvchad/vale_nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/nvchad/vale_nvchad/index.html_br_37538b4a7b166df0942b1fb3d1c5bd33670dbcd90f4e4962dd052292c619a826" +path = "static-publisher/static-content/file1189.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/nvchad/vale_nvchad/index.html_gzip_c1e4e619f4173b29b051d5799e166fca12fd71f60db52b0694174478903ec9ae" +path = "static-publisher/static-content/file1189.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html_a2745c39d91b20e90f43c173d47219b75f929cdb4efb662e923187991984c038" +path = "../build/minified/site/fr/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html_br_4d3b28351711b98f6495df9e030f9d052630647e5eea70d5b0d0e6b3f47bf852" +path = "static-publisher/static-content/file1190.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html_gzip_957b3fcb0c45b438aafd7f26cc0f006a1c38f04c3a751af642f78b482f8f0789" +path = "static-publisher/static-content/file1190.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/sed_awk_grep/2_grep_command/index.html_f173862a58a1e1fa60d8cce3f76dce626fbfc1e360d8eacfa37a7d0786e43823" +path = "../build/minified/site/fr/books/sed_awk_grep/2_grep_command/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/sed_awk_grep/2_grep_command/index.html_br_3fddfc7701ca75d3f89e6e15c6281b113388b8a2d5edd025cd1d40b29acc36f1" +path = "static-publisher/static-content/file1191.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/sed_awk_grep/2_grep_command/index.html_gzip_b8e0443ee68da6c6e39ecc1c261b762a36587a0bee07c6cf9621baadc72aa1d1" +path = "static-publisher/static-content/file1191.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/sed_awk_grep/3_sed_command/index.html_f0570ee470d4f1d546244780b47901f4cf910b4b66b06747cf595917b286160b" +path = "../build/minified/site/fr/books/sed_awk_grep/3_sed_command/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/sed_awk_grep/3_sed_command/index.html_br_3b6b713186c73b3d8918f1e92441e573cea25ec8ebfb7b5c26d2c4df1bfe9872" +path = "static-publisher/static-content/file1192.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/sed_awk_grep/3_sed_command/index.html_gzip_e74498b84afb5658c0689f8aa46ea80ffa3506d3fc48dda7313f2e1839e34236" +path = "static-publisher/static-content/file1192.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/sed_awk_grep/4_awk_command/index.html_aa520d0ad03dc05573659cd250537fddc3837552237abf3807923911b90bfe04" +path = "../build/minified/site/fr/books/sed_awk_grep/4_awk_command/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/sed_awk_grep/4_awk_command/index.html_br_04b3530c0ececd3b330da57d4351d610b38ca94c371a3e3a069a488322ae3508" +path = "static-publisher/static-content/file1193.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/sed_awk_grep/4_awk_command/index.html_gzip_2819abd7b155a5790f812f814ea5a413e0961b29fcf9b6778f62e01503bc2595" +path = "static-publisher/static-content/file1193.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/sed_awk_grep/index.html_8251496ca6141c600f0e458cb536dcd2bc4cca4b5eaeb39687d2730e637472d8" +path = "../build/minified/site/fr/books/sed_awk_grep/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/sed_awk_grep/index.html_br_bd51c3b5620413a562be951a2b74821aec41f82d177cd5b80396e683c8af9761" +path = "static-publisher/static-content/file1194.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/books/sed_awk_grep/index.html_gzip_a683d334196b845cc1939deaa03bbace8331c94e97d7142f81a6a6c8ab6ac42f" +path = "static-publisher/static-content/file1194.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/containers/docker/index.html_c66a2102c0be315134305559d086090b59b7f0ec2ca43dab6e3de3efe3ee3d9a" +path = "../build/minified/site/fr/gemstones/containers/docker/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/containers/docker/index.html_br_ed430d7780b2ccc9697ecdd43e2f54f6c95f252af502e1bdf28ce09fa72199ae" +path = "static-publisher/static-content/file1195.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/containers/docker/index.html_gzip_8a7905c705f9385bda992287dd58e3d6f7438125135e06c6e3120dd88b9f0d00" +path = "static-publisher/static-content/file1195.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/containers/podman/index.html_873510f65e7fc638c9533e9ee7288499cda07847f076615034d2df77735de5f8" +path = "../build/minified/site/fr/gemstones/containers/podman/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/containers/podman/index.html_br_ed19e417df202ed2910c8bfcb53f0b95e779210b53a26368dda7bf72914b9e4c" +path = "static-publisher/static-content/file1196.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/containers/podman/index.html_gzip_3f0f73ee3cec0d513ec3ea717a1a40143b0b5cdd6bffc36d189ec6d21a28360b" +path = "static-publisher/static-content/file1196.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/core/view_kernel_conf/index.html_cd8b128ad5c81fc6579e16f8486554277770d9a15f7bd7b59d0a96b018ee51c2" +path = "../build/minified/site/fr/gemstones/core/view_kernel_conf/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/core/view_kernel_conf/index.html_br_5d27be71c72b0cd2d61c0d1133e26153298f515ed63a334fc251210c7c513d55" +path = "static-publisher/static-content/file1197.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/core/view_kernel_conf/index.html_gzip_cf3697805bea293aaaa6bd187722edd15efdf1182d3396b6abb3a9a407c724e1" +path = "static-publisher/static-content/file1197.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/dnf-swap/index.html_6019cef537d08ab6abe7d467a2053d7a914ad4be0eba037532fbf6d0b170f16c" +path = "../build/minified/site/fr/gemstones/dnf-swap/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/dnf-swap/index.html_br_e0fedb1ce2e3a5a4a4b9dafb64091a1b7fd9a10338a1275ac1221eef78f99d3b" +path = "static-publisher/static-content/file1198.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/dnf-swap/index.html_gzip_64bb9ba7b827774fac636b719be4ef0bbacc1185ff1b1beecce038b889e610f3" +path = "static-publisher/static-content/file1198.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/gemstone_template/index.html_86ed1ea9dad87086b08fe4e77db39164894379d491f341968b3e06b504a61774" +path = "../build/minified/site/fr/gemstones/gemstone_template/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/gemstone_template/index.html_br_a9f9833ac9658f1a8a42dff8b2e708b4f1b0a38f76ef01c893e02e345b9b81be" +path = "static-publisher/static-content/file1199.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/gemstone_template/index.html_gzip_f6aa1861e250d1966a12dbd41c8ef9b59ed8a2655855917fa5bf412300b1d008" +path = "static-publisher/static-content/file1199.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/git/00-gh_cli_installation/index.html_6f94d645a877be53bb51ea733fb42d2b4382812f847d224542c595ad0fa70ffc" +path = "../build/minified/site/fr/gemstones/git/00-gh_cli_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/git/00-gh_cli_installation/index.html_br_21d0a24baf846ec713334846dedfe4cae5c3786bd24382e6bdbe37453668f8c6" +path = "static-publisher/static-content/file1200.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/git/00-gh_cli_installation/index.html_gzip_2ac0a2410e56069193f348a88a56b9ad2ce9a0d44bd6bcd10d770179f9319ff7" +path = "static-publisher/static-content/file1200.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/git/01-gh_cli_1st_pr/index.html_1f43a10278021d48dae7a457d3d39e8894094bd1b9234be42ec5a883c334bb37" +path = "../build/minified/site/fr/gemstones/git/01-gh_cli_1st_pr/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/git/01-gh_cli_1st_pr/index.html_br_b94502db9fd4a06b19db439ede0b5c7461cbd0a23c43705541680c5554ad2883" +path = "static-publisher/static-content/file1201.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/git/01-gh_cli_1st_pr/index.html_gzip_359db603c8c54a5126a92c8e1e0d7c9dc42fc91f025862b26f42c920f5bcda38" +path = "static-publisher/static-content/file1201.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/git/02-gh_cli_edit_pr_title/index.html_7e819358f554f158fd00529938b95d9147ed1212f0c052deb312c0756dbe2c61" +path = "../build/minified/site/fr/gemstones/git/02-gh_cli_edit_pr_title/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/git/02-gh_cli_edit_pr_title/index.html_br_c1bd33addb5774f8da9a20ec2aa6f99b2f88e9bd01fa0ad515bc647f62d435bf" +path = "static-publisher/static-content/file1202.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/git/02-gh_cli_edit_pr_title/index.html_gzip_fcb4a6f9ae41808a00fd20561b5d69286107d2bf526d84ff16e9fd9037eae73f" +path = "static-publisher/static-content/file1202.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/git/02_github_web_edit_pr_title/index.html_289313184ec1c8bcd270617f4cd9824e97307d9a8657b98217051dc8037893f7" +path = "../build/minified/site/fr/gemstones/git/02_github_web_edit_pr_title/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/git/02_github_web_edit_pr_title/index.html_br_118d29baafdacf264215d6d78f0c0672383764dc046849724890aaceb2e49733" +path = "static-publisher/static-content/file1203.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/git/02_github_web_edit_pr_title/index.html_gzip_9ac4c89456656d2b976826c9cd04a15294ae33f556c2bf8cfeb37b0d0170fbb2" +path = "static-publisher/static-content/file1203.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/git/feature_branch_workflow/index.html_747f89ed258f1d8a2e1fc0a2a184435922a78702c25a572b80ab5b4ccbe1e971" +path = "../build/minified/site/fr/gemstones/git/feature_branch_workflow/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/git/feature_branch_workflow/index.html_br_bb472e7becdf4029a97d2e511c1d4b4ea00c57571689f8af00e2fd1b1bd09205" +path = "static-publisher/static-content/file1204.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/git/feature_branch_workflow/index.html_gzip_7542e1b03b73de7f4e49513a150df173be33c83017a9cb48916557abb41e681b" +path = "static-publisher/static-content/file1204.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/git/fork_and_branch_workflow/index.html_0edb7a37492065348b6e837a21e8db3f8a90b1dc0fc08ad85420e08653148b5f" +path = "../build/minified/site/fr/gemstones/git/fork_and_branch_workflow/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/git/fork_and_branch_workflow/index.html_br_302f3dd026425ec8c9e834a0abefc70039920e5c953417937592d3a99662449d" +path = "static-publisher/static-content/file1205.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/git/fork_and_branch_workflow/index.html_gzip_8506175613f385969ece82e5210af07ef7c565d1966a1d964f8c4236f6811cc9" +path = "static-publisher/static-content/file1205.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/git/git_pull_vs_git_fetch/index.html_3f0a2f830552af4f2895c20ae3ddb40ba22dba6244c36f60cc9861727a4b1b4e" +path = "../build/minified/site/fr/gemstones/git/git_pull_vs_git_fetch/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/git/git_pull_vs_git_fetch/index.html_br_3de1fd099643aa912f45b0f1926d6510970525d9b6d96da1655b320e202ea742" +path = "static-publisher/static-content/file1206.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/git/git_pull_vs_git_fetch/index.html_gzip_30687e44a1377d91ebc9e49aa55b96cda66022d7916d3abda93eea3ab53126ff" +path = "static-publisher/static-content/file1206.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/git/git_remote_add/index.html_800651221c128457f7e6229f00147728bcb854d8134daf67ce8ca1f0620d3dc6" +path = "../build/minified/site/fr/gemstones/git/git_remote_add/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/git/git_remote_add/index.html_br_cee1536558981f8f613d2a96d77a853956414ef195f391714d27ec50d0bd8f43" +path = "static-publisher/static-content/file1207.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/git/git_remote_add/index.html_gzip_be44a283c2fefb8a95d123af8e161a5f5d3c1312cc8457515614b07d8a07ff73" +path = "static-publisher/static-content/file1207.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/git/tracking_and_nontracking_branch/index.html_d8639006b18da91052096825e6f865f02c4148ac45e1523808fcdd9f2a2004b9" +path = "../build/minified/site/fr/gemstones/git/tracking_and_nontracking_branch/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/git/tracking_and_nontracking_branch/index.html_br_ee785fbca341958e83850178dc2b719f378443492dfa0606c291f7df9eeb6b58" +path = "static-publisher/static-content/file1208.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/git/tracking_and_nontracking_branch/index.html_gzip_0db341c71f5859815b6e2b656248a5291fa2c903d3fe1fb7471305902713a74a" +path = "static-publisher/static-content/file1208.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/htop/index.html_99e5f3f702fe67cfd4b875c1a30db912a765480247a6edb5385705d7f10c9913" +path = "../build/minified/site/fr/gemstones/htop/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/htop/index.html_br_7c87e032184579bea44b78e8fcdfbe96886b76666f5b387ec195c6cb44d9da23" +path = "static-publisher/static-content/file1209.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/htop/index.html_gzip_2d8166eca42c3755a2076423e28401a31c672ddfd0932b498137eb4ac04f2ccf" +path = "static-publisher/static-content/file1209.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/https_rsa_keygen/index.html_34a593639508a8cc1c7426a7f617a070e6ada1960301e2e9fd35631cdd502080" +path = "../build/minified/site/fr/gemstones/https_rsa_keygen/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/https_rsa_keygen/index.html_br_b6edfbc6d8d6081d60149041be22a5fcc23722bccab32852f3eee70010654d8f" +path = "static-publisher/static-content/file1210.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/https_rsa_keygen/index.html_gzip_0fb736e325d5881a0bced3594558bf4986b1b15019900c298484c50ca6771c74" +path = "static-publisher/static-content/file1210.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/index.html_44ac6bdbcfb1d78d626f02e4822ba0adf4e35755e4f90404807b4a6fbd782669" +path = "../build/minified/site/fr/gemstones/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/index.html_br_3e60c8531b892dd43a859d905c5e1616bed0f2728494c0edbecc072686d0e9b4" +path = "static-publisher/static-content/file1211.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/index.html_gzip_01ad2d07e7101ca6cf50c63052a1781a97bb5c92e256a2f0643db1d4737a2f06" +path = "static-publisher/static-content/file1211.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/markdown-demo-v2/index.html_0bec46463e393fb129bf0102ef5c12dae06e9205677e1c6f787fc99dd3189e72" +path = "../build/minified/site/fr/gemstones/markdown-demo-v2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/markdown-demo-v2/index.html_br_77b6fe08566568d1e987c99874397d7947cc7af80c2413d4a684c7226a261b10" +path = "static-publisher/static-content/file1212.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/markdown-demo-v2/index.html_gzip_f32bc8d39b0545a46e49d45d6bc9858e7576e682fde60c574299e31dc4af7f4a" +path = "static-publisher/static-content/file1212.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/network/RL9_network_manager/index.html_d76431f6eddbb5c75f8656c4d8205f7980c2b71b1ccaa0792f7c1f5f892d3cad" +path = "../build/minified/site/fr/gemstones/network/RL9_network_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/network/RL9_network_manager/index.html_br_d85d3f2c260dd848a7956cd7541728c1a5f4b0d72188cba893c7ce5bd918348c" +path = "static-publisher/static-content/file1213.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/network/RL9_network_manager/index.html_gzip_6e29f573835272629008c950802b4cc8d2474297d4e0555b936b89490e17632a" +path = "static-publisher/static-content/file1213.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/network/iftop/index.html_684f2ce3181fb625eb15a6d3cc931c94e385313fb39a5d243535650254242123" +path = "../build/minified/site/fr/gemstones/network/iftop/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/network/iftop/index.html_br_13ad4c03b7ce4e6dd4e821b486e802e4c247a2ee73de3c7b78dad11ce8da9cb8" +path = "static-publisher/static-content/file1214.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/network/iftop/index.html_gzip_1f4ae0a700ea7d454802995585659253178216f41385cbe5a0f35d3fd5d76161" +path = "static-publisher/static-content/file1214.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/network/mtr/index.html_b05fbffa4a98120d30ae7e030136c05351e558e411e22e8ab2bd682fbcd0939c" +path = "../build/minified/site/fr/gemstones/network/mtr/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/network/mtr/index.html_br_a4e3bd3322ff64637e3cf1b804ae0fec44f1c80725f17d2be5ffbb5955f37a97" +path = "static-publisher/static-content/file1215.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/network/mtr/index.html_gzip_0bd3ab7926f0cafdd7dae1385ec4cef591524e524ea61ab6b3cb1c07aef9784f" +path = "static-publisher/static-content/file1215.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/network/nload/index.html_9a3c7dc2f9c2d7e982608c0962be417251f9b5cc86ce3349e28beb9a5d4cdc53" +path = "../build/minified/site/fr/gemstones/network/nload/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/network/nload/index.html_br_05acce3f13b011796931bd366456006f2e5a36b434461dc21a8f801213c3678b" +path = "static-publisher/static-content/file1216.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/network/nload/index.html_gzip_c24e84f06f0529ef5fd77690135da6934f3abee0263bbc620a880dd242784ed0" +path = "static-publisher/static-content/file1216.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/network/nmcli/index.html_46762a4e56bdfefbe91f6869af7e62725a03a318f2ce3f52d78f3bcb7b929142" +path = "../build/minified/site/fr/gemstones/network/nmcli/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/network/nmcli/index.html_br_1424a107c2e4c5829908b3fb47b138aa46f0cc7e59a725ca64ebe57a0ff8a72e" +path = "static-publisher/static-content/file1217.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/network/nmcli/index.html_gzip_3e7f04a318b986a0e7522a620244e4e4762b65ad9f98e7008ea51ca1fd3af928" +path = "static-publisher/static-content/file1217.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/network/nmtui/index.html_f2e01bc326b9578563dbeb23306319047bce811b0f579d0fd95bc8a4c2dc7dcf" +path = "../build/minified/site/fr/gemstones/network/nmtui/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/network/nmtui/index.html_br_094734deb1253d2c19cdef19f818a37ac2954338bd38d29abbe83e8f69bfd3e5" +path = "static-publisher/static-content/file1218.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/network/nmtui/index.html_gzip_b652da56747f51b7f323a7c2d3203a4f02b064465da25fd5b1ca0831391ade91" +path = "static-publisher/static-content/file1218.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/perl_search_replace/index.html_9dbd02c3bb7e23966ddf9d869aee9ebd8e94f0462e93606843ff6034c2f3ed7d" +path = "../build/minified/site/fr/gemstones/perl_search_replace/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/perl_search_replace/index.html_br_dfa51271c709ab10023fb2dc9a900a85ed2cbacd68177b9f7ede1129042a8d80" +path = "static-publisher/static-content/file1219.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/perl_search_replace/index.html_gzip_9652a09bcc37bb80f436060ee618c35e17941fbc7abe1bfbdf484b422bfb04b3" +path = "static-publisher/static-content/file1219.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/rpaste/index.html_fc4a76b6ea1919c5f023aabbf9fa41b6b32e1574ceda6e33d0389ea9088d8f8a" +path = "../build/minified/site/fr/gemstones/rpaste/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/rpaste/index.html_br_d9da56204c52e583f8359fbd654e8ce4b3e341fec3d7c707fe0a83a0d1768d50" +path = "static-publisher/static-content/file1220.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/rpaste/index.html_gzip_1817ee79aada20906883b1c6255e4dae17c8109460ed97df60ed71d97d5cb189" +path = "static-publisher/static-content/file1220.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/scripts/NoSleep/index.html_c9711cdff7d1f24739f234541e5d26e63538d3e48137dc90db17acb769616dda" +path = "../build/minified/site/fr/gemstones/scripts/NoSleep/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/scripts/NoSleep/index.html_br_8a684017ed9ad7d230abbb07b13fbb15cad06382163a5526bed3eebf29929fec" +path = "static-publisher/static-content/file1221.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/scripts/NoSleep/index.html_gzip_6fa9067d38fb2824c80c5b9100efaf87c9ddbedd7950f169595973997f7956e3" +path = "static-publisher/static-content/file1221.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/scripts/bash_stub/index.html_7257fa113a609b3497656039c5ef5d302a4d2564c13b4a362ec0b4eb9cc33c1f" +path = "../build/minified/site/fr/gemstones/scripts/bash_stub/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/scripts/bash_stub/index.html_br_087ceb555997babee94029befc3ce65b67f3b52fdb02ec2f981012df4aa0fe3b" +path = "static-publisher/static-content/file1222.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/scripts/bash_stub/index.html_gzip_963ed49363858c0dcd230ce87519e8dbbc893b40f5d6b1a2c359592301b58189" +path = "static-publisher/static-content/file1222.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/sed_search_replace/index.html_01c4166a875570329c15584c78acf49d89482566a8c110254d078a15175d8655" +path = "../build/minified/site/fr/gemstones/sed_search_replace/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/sed_search_replace/index.html_br_5ed23035fa3105422f1b65f895dc91ec27578c063c6c5b465fa687c9306d86e8" +path = "static-publisher/static-content/file1223.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/sed_search_replace/index.html_gzip_5ebb7dcb3ebf038468c698e1f88bbee94bc03538c886d652d67e6a2f8464b94d" +path = "static-publisher/static-content/file1223.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/setup_local_repo/index.html_be17e9ec2db68675cc43a89edafc6ea25c748f23d97dc926b5d01ba82a5485fa" +path = "../build/minified/site/fr/gemstones/setup_local_repo/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/setup_local_repo/index.html_br_260e3aad59e958a83b3e3bbf29da935d79a1f18eca79c82fa82eb8cd7ec97594" +path = "static-publisher/static-content/file1224.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/setup_local_repo/index.html_gzip_e07a4e663b88e64a8fd8ec46935170f11cb20a7fcceebedc5f0c9f9f723158b8" +path = "static-publisher/static-content/file1224.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/string_color/index.html_118c97ca770cc4f1ed8e7e4e57b0e31a8cffda90a62ad0b52d393d28777224e0" +path = "../build/minified/site/fr/gemstones/string_color/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/string_color/index.html_br_eb8e3edd2420aae9027b9626d51e7d4211b1bf2fc2ed62a138b573f50cdd0aee" +path = "static-publisher/static-content/file1225.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/string_color/index.html_gzip_f9a2eb71625aa85449474ded0e1d8e07a3e5f859678c165ff6804918d8f141f6" +path = "static-publisher/static-content/file1225.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/systemd_service_for_python_script/index.html_64e530da586efbf39395f44c5a406e8a1de322d68479641331a53bf1dae15c8e" +path = "../build/minified/site/fr/gemstones/systemd_service_for_python_script/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/systemd_service_for_python_script/index.html_br_87a4471256c9f31fff793ac8fee43bdf6c8f8d4746d8ccbcadcc62a31f265a16" +path = "static-publisher/static-content/file1226.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/systemd_service_for_python_script/index.html_gzip_7dc2dd4d1b50fae8b8781027001f571675feb0ff6e54fc432360bca08da8c46c" +path = "static-publisher/static-content/file1226.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/test_cpu_compat/index.html_994c897b42c0015c147b7165307ce70d211c161fbde25ed82e2bf04fb89d5200" +path = "../build/minified/site/fr/gemstones/test_cpu_compat/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/test_cpu_compat/index.html_br_8c5437c865783fe7735211aabedb333af1aa729a880b9a86b08b8cdeb4937a60" +path = "static-publisher/static-content/file1227.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/test_cpu_compat/index.html_gzip_6f52c9a55f0305c439ac854e0ef9007d8480ecf325b4db0494fbfb2bfc65b224" +path = "static-publisher/static-content/file1227.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/torsocks/index.html_38830f8104b82a4e391894ea1c6f6b7842d378ec36046052c811dd9069b74ed9" +path = "../build/minified/site/fr/gemstones/torsocks/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/torsocks/index.html_br_99e96a91fa3e8724279256ce05b0a0ba063cb888b21d4dfaf0207c59e0c6c311" +path = "static-publisher/static-content/file1228.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/gemstones/torsocks/index.html_gzip_51aa43473b296fa93585ebc1243259725cc121a638ac6ff4524bc8669d57e49b" +path = "static-publisher/static-content/file1228.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/8_6_installation/index.html_3c82fdf3b9013e0ff303398ed7808dc4166fdfdcbb1f8be7a1c9d392245f5de0" +path = "../build/minified/site/fr/guides/8_6_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/8_6_installation/index.html_br_4b42e008130f2fd4659790c44777f7fcba4217de3cede7777f8ee262ab549825" +path = "static-publisher/static-content/file1229.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/8_6_installation/index.html_gzip_6d9ecea7b0862afbd87c9b1b65973eb62cdae28a49071174b08449d3738b50fc" +path = "static-publisher/static-content/file1229.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/automation/anacron/index.html_a78e814c1d5d025b83f16f5bf76f144771f0e974c74821df497f451a76cef41b" +path = "../build/minified/site/fr/guides/automation/anacron/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/automation/anacron/index.html_br_683facdf8b7cc128836418314b3d184d19c8f8650df376bdf0f0b9421e7bfdcb" +path = "static-publisher/static-content/file1230.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/automation/anacron/index.html_gzip_bfd801923b0497b7ea9d4dbddb8b4bc8399c3e70d586022fe287cc2659838337" +path = "static-publisher/static-content/file1230.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/automation/cron_jobs_howto/index.html_ce0cb45de0e8793fb7c43260a52399a284b3fede4f6edd78d09d9f7458cd78fc" +path = "../build/minified/site/fr/guides/automation/cron_jobs_howto/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/automation/cron_jobs_howto/index.html_br_d030919e303bc86624a1030f1e52eb492f05c3fd1410b0ebaf59db10fa329ea7" +path = "static-publisher/static-content/file1231.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/automation/cron_jobs_howto/index.html_gzip_db14ff0a88b2d085ea79b746015d27d3d9bee23656ef29c04514d5ed1f5c68a9" +path = "static-publisher/static-content/file1231.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/automation/cronie/index.html_c1ed85ad9d9d84a158e5ed89ec95ee0addb42485b46589c5092527a5bcadf638" +path = "../build/minified/site/fr/guides/automation/cronie/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/automation/cronie/index.html_br_317072c6d6b16d45bbe5e5d0a16595ee5b5c0d75d6d291727c6efe8b603d5d82" +path = "static-publisher/static-content/file1232.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/automation/cronie/index.html_gzip_c6d602eb63565a65bd776ccb00fbc12a6e9520a08a359f24bc3c1201b93ed7ed" +path = "static-publisher/static-content/file1232.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/automation/olivetin/index.html_f37a603aee68c623c1d439c940e62a963962eb1a5af0bf956385ddb8605413e3" +path = "../build/minified/site/fr/guides/automation/olivetin/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/automation/olivetin/index.html_br_f4a411176c4ea0fd3f465fcabe36ac0fcf7031b96deaec664f20a992902a7c3b" +path = "static-publisher/static-content/file1233.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/automation/olivetin/index.html_gzip_086fdc6eb05208716280b0dbf6c6e68fad03032e9531c876f1cffc01efe13960" +path = "static-publisher/static-content/file1233.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/automation/templates-automation-packer-vsphere/index.html_7a00f6901cbaac0b2b39fdaa9ec3740e36352a868131ec4ff3ef3c6a7427611f" +path = "../build/minified/site/fr/guides/automation/templates-automation-packer-vsphere/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/automation/templates-automation-packer-vsphere/index.html_br_c32475c01940121e960c572c6b0ba5a80c7131edc0e90af343c5e34e662413be" +path = "static-publisher/static-content/file1234.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/automation/templates-automation-packer-vsphere/index.html_gzip_3b85cb199eed5d6b11e6a0e3735d395ad11f10048b9e0e7945210682e7310b2c" +path = "static-publisher/static-content/file1234.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/backup/mirroring_lsyncd/index.html_daab9824035890d4e683c3552d2eb4fb8e0a6453b8bd52f818b5e83bad548479" +path = "../build/minified/site/fr/guides/backup/mirroring_lsyncd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/backup/mirroring_lsyncd/index.html_br_bb3f89040623e4716baf03bf9c62434a92af7bbcd2cd2de4679e9b351794d036" +path = "static-publisher/static-content/file1235.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/backup/mirroring_lsyncd/index.html_gzip_5016b9c7e87d63d5c4b7609257d5620515498a83eee7e6c90092cba1b1d2ba18" +path = "static-publisher/static-content/file1235.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/backup/rsnapshot_backup/index.html_ee82982f02e6de0f35885837cd6f855bb20aed8f6b79bdbbfa4303bee95ea3bb" +path = "../build/minified/site/fr/guides/backup/rsnapshot_backup/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/backup/rsnapshot_backup/index.html_br_2fc2d6538e89408fdcdec2aa48db5f1f6ef768372f11244d31b9cdee5ded2e93" +path = "static-publisher/static-content/file1236.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/backup/rsnapshot_backup/index.html_gzip_7fa8aea50dade695285e9c5c2b238b61c20f36de459adb0b68e2f6c81413fa84" +path = "static-publisher/static-content/file1236.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/backup/rsync_ssh/index.html_8f9d57ddf04ceb3c1c26557740593bc0afd66e320005b6f50a327d5e3f0fe6cc" +path = "../build/minified/site/fr/guides/backup/rsync_ssh/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/backup/rsync_ssh/index.html_br_1d7db33b19158ba6cb33703afa3e2bd28c518ad181a7c2539848f165e87306ec" +path = "static-publisher/static-content/file1237.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/backup/rsync_ssh/index.html_gzip_7c0372b4ae1f01027e3edf7b2e410ebf623afb035f58a8033695cd281ecc2d8e" +path = "static-publisher/static-content/file1237.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/cms/cloud_server_using_nextcloud/index.html_f97f075ee08098357cadfe2f9c6b32c6656449253748def2dbbc22ce36e880cb" +path = "../build/minified/site/fr/guides/cms/cloud_server_using_nextcloud/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/cms/cloud_server_using_nextcloud/index.html_br_069d938231ee0364108ff483cf8897e57972bff512afbc1792f70564180d4454" +path = "static-publisher/static-content/file1238.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/cms/cloud_server_using_nextcloud/index.html_gzip_6584d37a725f4b311ea25eead6a705d50f0fb1232dc8b836763ae5a36de925cb" +path = "static-publisher/static-content/file1238.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/cms/dokuwiki_server/index.html_8b2db4eaab14fd6550c70c41c71a887413207b12d92b545ec0c236ec07eb7f73" +path = "../build/minified/site/fr/guides/cms/dokuwiki_server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/cms/dokuwiki_server/index.html_br_73bcf01cd1b6ef3ad34364fe2ae68a66641ec3baef8cb4b3868358fe2e5748cb" +path = "static-publisher/static-content/file1239.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/cms/dokuwiki_server/index.html_gzip_b63520770a197decd4b9d7bb7bdbd56b6c5792c90ad7e6a1cb681bf5039e7365" +path = "static-publisher/static-content/file1239.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/communications/asterisk_installation/index.html_4246979b6ce56c5cc3f071dc0e02c403c8e96e218dc8d052a9dd9d524ce5b573" +path = "../build/minified/site/fr/guides/communications/asterisk_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/communications/asterisk_installation/index.html_br_e7152968d1f3fb668b48eb5a62b05361d25f4976c94df751620363e1b2b19e1d" +path = "static-publisher/static-content/file1240.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/communications/asterisk_installation/index.html_gzip_da36ca6d5bc05264483c1736ac4eeaba9ffab4a80fe937dc9f1ed34ff41e381a" +path = "static-publisher/static-content/file1240.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/containers/lxd_web_servers/index.html_12c1b04d501eeb885401d2a219a8f525bdc97b9d91eb8a6a068d6320f8c1ffd6" +path = "../build/minified/site/fr/guides/containers/lxd_web_servers/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/containers/lxd_web_servers/index.html_br_b0d5996244a7ba2612fc84e9ddbc613462014fd053c80e8f1a249768d4a2d11f" +path = "static-publisher/static-content/file1241.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/containers/lxd_web_servers/index.html_gzip_3208111ea5cc940fffd267abe7484fde0a999225d061ecc8f88a49fe6c358b6e" +path = "static-publisher/static-content/file1241.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/containers/podman-nextcloud/index.html_d41905c48a85928b41a18bd09b677e0ee34444f2bc60e62d21afc05f9f3fb821" +path = "../build/minified/site/fr/guides/containers/podman-nextcloud/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/containers/podman-nextcloud/index.html_br_c25c2cbbc43c400561e3a095d64d33009f82862caa1c62c04792b13cc4846694" +path = "static-publisher/static-content/file1242.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/containers/podman-nextcloud/index.html_gzip_f7584e9099a0571c549e76c1672cc11e1513eb7c7457ab1552f33788bca7c410" +path = "static-publisher/static-content/file1242.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/containers/rancher_and_kubernetes/index.html_a0c99dc6e163abda439553b86de81c6940f3dabdd2820ba3efb364a12da7259b" +path = "../build/minified/site/fr/guides/containers/rancher_and_kubernetes/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/containers/rancher_and_kubernetes/index.html_br_b0452e1f8c57c742616075226068863c39551ca711e83d44f36374eafacdea26" +path = "static-publisher/static-content/file1243.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/containers/rancher_and_kubernetes/index.html_gzip_b38d6a203e35703b888afbbe7108d0d3dc3f50e0ed81e48e1bd45c853a959ab4" +path = "static-publisher/static-content/file1243.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/contribute/beginners/index.html_e064c7fdc68d895a457e9222ac12ae5d014156a9713b26c2d40017abc9712124" +path = "../build/minified/site/fr/guides/contribute/beginners/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/contribute/beginners/index.html_br_e47fccd94d8425894a4be0ffb4eabb805658fa1e085e2f9c5ff90984e6ff8507" +path = "static-publisher/static-content/file1244.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/contribute/beginners/index.html_gzip_867a6d90986f457a5aedf43d1719feca9c94927e9071fce5ac0e80ee538798b3" +path = "static-publisher/static-content/file1244.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/contribute/createnew/index.html_67715f13e48a740c7a7fc517475a7b3803e900bea05e65f8ef907a8a3613c2f2" +path = "../build/minified/site/fr/guides/contribute/createnew/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/contribute/createnew/index.html_br_2cca7a107b9d6b272d472e2bff62678ea30348eecce14bdc6a98c05f85dc64bc" +path = "static-publisher/static-content/file1245.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/contribute/createnew/index.html_gzip_287aec0b077f528e5f58e423de688472b928ca71193714aab4ce488f79d7d0fa" +path = "static-publisher/static-content/file1245.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/contribute/index.html_4473ac0372b0052a8218fc95b905b04ceb41952e9cddd227c255923130a89a3e" +path = "../build/minified/site/fr/guides/contribute/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/contribute/index.html_br_d5491636f16b3b705b2c350773fa3561093a3ca3c0445c399c7becff2d5716ca" +path = "static-publisher/static-content/file1246.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/contribute/index.html_gzip_a6c77135daa56a0f4759e9b9ac372ea41b844d1ef4ec0ead841bb48863682187" +path = "static-publisher/static-content/file1246.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/contribute/localdocs/index.html_84608ea533041e9635be42f05e637952b46cdef1224677d9f7a634472cf51347" +path = "../build/minified/site/fr/guides/contribute/localdocs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/contribute/localdocs/index.html_br_cf145d8de4333f574b918b161efced8641ccb8a659a8918c588e0a33b831080c" +path = "static-publisher/static-content/file1247.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/contribute/localdocs/index.html_gzip_e9a8291ba50e63b59fd3cb04a78921d1b13ac735b2b4d24bb8793721e3f1cf59" +path = "static-publisher/static-content/file1247.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/contribute/localdocs/local_docs/index.html_2cf50d49f69998bfd15e1bb1f4532ad9749115dc3489e84d08bff56b01b20209" +path = "../build/minified/site/fr/guides/contribute/localdocs/local_docs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/contribute/localdocs/local_docs/index.html_br_fd16aa5697163e122c75fc8e3a89caf88edcf646b4b5ebf9b217de9c0128a162" +path = "static-publisher/static-content/file1248.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/contribute/localdocs/local_docs/index.html_gzip_bc88f8e59ccd68532618d654f14071ce212d2a19ad5918e5697aa085d09faf8b" +path = "static-publisher/static-content/file1248.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/contribute/localdocs/mkdocs_lsyncd/index.html_2a5fc661c2ea8e2cc82f2c11213f3a91319b5859a85536c55c40abec42bff4d5" +path = "../build/minified/site/fr/guides/contribute/localdocs/mkdocs_lsyncd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/contribute/localdocs/mkdocs_lsyncd/index.html_br_c8646019c201a8920df70d6e931b36acd3461e7f0390aee1edc386fe594e91d1" +path = "static-publisher/static-content/file1249.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/contribute/localdocs/mkdocs_lsyncd/index.html_gzip_57e1b0cb25c7a234d8202bebde8b351f87ddd071a361babf83e35209a02f6224" +path = "static-publisher/static-content/file1249.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/contribute/localdocs/mkdocs_venv/index.html_f9a67793b6ec179693965ca21be93b172d01918033a85b969b5b7571964b450e" +path = "../build/minified/site/fr/guides/contribute/localdocs/mkdocs_venv/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/contribute/localdocs/mkdocs_venv/index.html_br_8ea5a013ebfc1d1953c37613dfaecaa2686eb565d0a612f0ad3f41c9ef175fe1" +path = "static-publisher/static-content/file1250.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/contribute/localdocs/mkdocs_venv/index.html_gzip_43575342818090e1a6fff7a40be0bab1af49b9fba53fad534873f9fef54327b0" +path = "static-publisher/static-content/file1250.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/contribute/localdocs/rockydocs_web_dev/index.html_b0c676991f5841ff46e0ca212defccdc4309534e932662841fffc4f4f15fedfd" +path = "../build/minified/site/fr/guides/contribute/localdocs/rockydocs_web_dev/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/contribute/localdocs/rockydocs_web_dev/index.html_br_836269af09817bda95fd4dce48626ba5a8f373cd1febc422f25d492ced894f5c" +path = "static-publisher/static-content/file1251.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/contribute/localdocs/rockydocs_web_dev/index.html_gzip_cc1ba08125646361dc63166fdd0d577e2a2e7ff804621eb7d8ec42ada08c3f15" +path = "static-publisher/static-content/file1251.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/contribute/localdocs/rockydocs_webdev_v2/index.html_e0eb621430835464c9ef4937a783596401e597cf8b9cbd7af3bf97aa44850962" +path = "../build/minified/site/fr/guides/contribute/localdocs/rockydocs_webdev_v2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/contribute/localdocs/rockydocs_webdev_v2/index.html_br_af5cab928171685480b3d2ea7d190e9c332a6bb94fada10167a289f7053434e5" +path = "static-publisher/static-content/file1252.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/contribute/localdocs/rockydocs_webdev_v2/index.html_gzip_dc9cd7a569bc37bb7dccf691cdb3909e1a13fcc00f561c52286596e18b867971" +path = "static-publisher/static-content/file1252.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/contribute/navigation/index.html_8acef05bcb8b856249cf607c9a084cad448832e97993a19998ab7efa2d22e90f" +path = "../build/minified/site/fr/guides/contribute/navigation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/contribute/navigation/index.html_br_af45103f8953d67f69fe895b50ddafb47aa12a21d9a2cb3691b5cefbedab7774" +path = "static-publisher/static-content/file1253.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/contribute/navigation/index.html_gzip_8a9496d1f2616f731e7a3bdaf20c762a21876cd6bdeb40fc14bd5f02d7d522fa" +path = "static-publisher/static-content/file1253.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/contribute/rockydocs_formatting/index.html_a2dd33e14302432b6e33329cf33cb2c6bd925a861e2d49de277821ad59957abf" +path = "../build/minified/site/fr/guides/contribute/rockydocs_formatting/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/contribute/rockydocs_formatting/index.html_br_3e2e59d5e6480a747c64c6eba6211bde70170a94529c50101b86e9a2fba32847" +path = "static-publisher/static-content/file1254.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/contribute/rockydocs_formatting/index.html_gzip_d9192f0b5d837d6fe1c217126b695707842a5558a209432d2e0d31e5634466f4" +path = "static-publisher/static-content/file1254.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/contribute/style_guide/index.html_150a183d0e2414112465450953d14009c1da02aece4e2b483e947a37420862d0" +path = "../build/minified/site/fr/guides/contribute/style_guide/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/contribute/style_guide/index.html_br_b77cfa08c66ad029dec5cc4f5b9f465a340652001ba6d3ab64d2cb8a9580e365" +path = "static-publisher/static-content/file1255.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/contribute/style_guide/index.html_gzip_f3afcc52bd0e60438ad3fd020774e595e5ff796858c045b05aa60d5771283190" +path = "static-publisher/static-content/file1255.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/custom-linux-kernel/index.html_849f67283c167bc34b658a27d6897cd6e353a3568f5e6054d0ec935c383a2738" +path = "../build/minified/site/fr/guides/custom-linux-kernel/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/custom-linux-kernel/index.html_br_506fa5d92e4f16edce21e1e5882b96d99df8c1b2c839c53fe442eb35ef78edb5" +path = "static-publisher/static-content/file1256.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/custom-linux-kernel/index.html_gzip_272eb0017de886ab2042bf16d542411d72a433868c1bf2f917c6074a1a5dfc85" +path = "static-publisher/static-content/file1256.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/database/database_mariadb-server/index.html_377f84763fe48eeded1a636869d24e48a883917cbe03dbdf4109a401a6a64882" +path = "../build/minified/site/fr/guides/database/database_mariadb-server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/database/database_mariadb-server/index.html_br_be7ca44691c263105597d93e8350c3178beb527f8fc389d68cd21e6d7d7c739d" +path = "static-publisher/static-content/file1257.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/database/database_mariadb-server/index.html_gzip_e833bec8a7c26fc782fb728d9b4d829229a7767b2decdfa22b44911bc27f9f27" +path = "static-publisher/static-content/file1257.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/desktop/kde_installation/index.html_a45835d33a3af162c1027e7a0ae7f204f43e38e5e9b0d59414f1b7b8b4b460b8" +path = "../build/minified/site/fr/guides/desktop/kde_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/desktop/kde_installation/index.html_br_3b73a3e1d02098c183f3fc3d6d90283b6a7e6b6047487351772201a141886ac1" +path = "static-publisher/static-content/file1258.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/desktop/kde_installation/index.html_gzip_953763cf8bda51e704b1f856ddc2fa3f72f59d20bcc7f093b94d91014b558f16" +path = "static-publisher/static-content/file1258.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/desktop/mate_installation/index.html_2dd82784a0fd4269018b8ae7c0b17a99effd010b05e96209633edcf300b0b7c5" +path = "../build/minified/site/fr/guides/desktop/mate_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/desktop/mate_installation/index.html_br_1f1ae934e3103d0eeb310aa84d5ba960585fc5e2fb77d1575b41cbd43865a82a" +path = "static-publisher/static-content/file1259.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/desktop/mate_installation/index.html_gzip_ab3b51295c718b9a702c8499ba9c8f2f4bd8b796dd7928fc4b4c9029b50cc35c" +path = "static-publisher/static-content/file1259.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/desktop/xfce_installation/index.html_77d72041eeab1ced8873d0e1d2c676886360589797c578e6ab24fd625f16eae8" +path = "../build/minified/site/fr/guides/desktop/xfce_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/desktop/xfce_installation/index.html_br_682093adde7151aef5a0086d85e57ae3567087b1348b4dfe605b08473f95dc29" +path = "static-publisher/static-content/file1260.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/desktop/xfce_installation/index.html_gzip_7b6e7462c970b727f2fe31367470abceff2f53a1b9e6ed1fdd4eed626b500a0b" +path = "static-publisher/static-content/file1260.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/dns/private_dns_server_using_bind/index.html_99bd73babbbb7810fea6f9ed4d5bf4ac0b401c86a0943c127c032e5285dc56c0" +path = "../build/minified/site/fr/guides/dns/private_dns_server_using_bind/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/dns/private_dns_server_using_bind/index.html_br_17aae74668fd83d0a08618b7e3389d986108811c84382eaddc00b648b7f0c4db" +path = "static-publisher/static-content/file1261.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/dns/private_dns_server_using_bind/index.html_gzip_388073628f3e3cca2c3224e34e6f4d4436c54260976f7b41cebe6d6057e8c1f5" +path = "static-publisher/static-content/file1261.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/editors/micro/index.html_a629e71b09dc46b57f76e4b458704a2957976e08664eb4afc4b2d8ee901d92fe" +path = "../build/minified/site/fr/guides/editors/micro/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/editors/micro/index.html_br_d981667ffc1c8b2a06d6a01e4648c6b183888c17aa9285013df084f1cf447d04" +path = "static-publisher/static-content/file1262.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/editors/micro/index.html_gzip_7220918be719af62d43f1321bbd29509979cca2847e1b24da5196af5873b910c" +path = "static-publisher/static-content/file1262.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/email/01-email-system/index.html_5ba1228adb8c2302d75d1b1e1ea7ee81599030ec9dfee8fb1c8aaf2395798d78" +path = "../build/minified/site/fr/guides/email/01-email-system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/email/01-email-system/index.html_br_42a2b98b32a2e8eb8634288070f99de109e4f6565ffde55181b6ee8d5f4f4df1" +path = "static-publisher/static-content/file1263.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/email/01-email-system/index.html_gzip_fe552e5b018cc08a7a907de2878e026ddce8bfa3646ac953d067bcf80f92890f" +path = "static-publisher/static-content/file1263.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/email/02-basic-email-system/index.html_b5799120c6a84333b61d4f07d84befb09cdb317512a4afafaf8f80e5f793f6e1" +path = "../build/minified/site/fr/guides/email/02-basic-email-system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/email/02-basic-email-system/index.html_br_9edfd75a8afc48c2906e17a0979d72344a9789542541e9dc5058cfe917827eaa" +path = "static-publisher/static-content/file1264.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/email/02-basic-email-system/index.html_gzip_504bfa75112c7c791da2d339eb1ac7f83271bc72814525fa9c4e7b4fc59339c2" +path = "static-publisher/static-content/file1264.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/email/postfix_reporting/index.html_7875f067fe38f0476854e89e6451cf8626a38e2df49b7426dad39f2f8bbf40e1" +path = "../build/minified/site/fr/guides/email/postfix_reporting/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/email/postfix_reporting/index.html_br_94ba385d4f78bd441ce0862090f4635e0f964b51013be9e686a7234d1ae2abf8" +path = "static-publisher/static-content/file1265.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/email/postfix_reporting/index.html_gzip_2877b3bccca40198af1dc018a6bb8e5d6069894d358392d86763ef9149a803d7" +path = "static-publisher/static-content/file1265.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/file_sharing/glusterfs/index.html_87f89a838cc09f31fba99b8afee607823ac782e4082db8b2a4287ac6201c73be" +path = "../build/minified/site/fr/guides/file_sharing/glusterfs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/file_sharing/glusterfs/index.html_br_b4ccc4dbfdc70344ae661e0a4c3e670b18fcbd3ace530b85b0cdbe1ac0dee03f" +path = "static-publisher/static-content/file1266.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/file_sharing/glusterfs/index.html_gzip_277dc77306bff2f92fd6dbdcfbaeeb896972430bcae0b40552d44bb4ac8a4844" +path = "static-publisher/static-content/file1266.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/file_sharing/nfsserver/index.html_7a957c89dd4d650820c59fc9d3b2f0aa18064a86d1a8d416e0e0255faa3e904c" +path = "../build/minified/site/fr/guides/file_sharing/nfsserver/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/file_sharing/nfsserver/index.html_br_2d4940a78805e26809fc9f64c829f08941a37f0932638407d69faf5557ae1906" +path = "static-publisher/static-content/file1267.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/file_sharing/nfsserver/index.html_gzip_cfa9414c654e2c0241aa19e0b48388465be3d8d2ba81db85f07586594e80d9cd" +path = "static-publisher/static-content/file1267.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/file_sharing/secure_ftp_server_vsftpd/index.html_f35acf099edff06f6a7796553ab7b3b94e5b66a016ad75c7266d534e229b4f34" +path = "../build/minified/site/fr/guides/file_sharing/secure_ftp_server_vsftpd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/file_sharing/secure_ftp_server_vsftpd/index.html_br_955fce7c83c2d9bebee4a8dd5d9d131924e59aae5b5ce69cb709915cb0d8ee63" +path = "static-publisher/static-content/file1268.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/file_sharing/secure_ftp_server_vsftpd/index.html_gzip_27fa4045c8dc9b1167e55a67a5e394c37ef15b2d772dc44e9786352f8e84adcd" +path = "static-publisher/static-content/file1268.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/file_sharing/sftp/index.html_e55f0602d6743353adcb33e0d68b93a9795fadde8f502dac8bc7a5e0f5db6be5" +path = "../build/minified/site/fr/guides/file_sharing/sftp/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/file_sharing/sftp/index.html_br_97b409a739eb11783ee9f51ad3cf9eaa46f48287b529408a5011a06456c67345" +path = "static-publisher/static-content/file1269.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/file_sharing/sftp/index.html_gzip_4e6eef3eeb98014c2474fa19b920659fbb69ee890bb67224dc77d9d936b5d619" +path = "static-publisher/static-content/file1269.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/index.html_0e7a77b0a1cce21fb866e1285dd35e79e4e93286d03568da35b97ef5d92d2e04" +path = "../build/minified/site/fr/guides/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/index.html_br_a4af5ee02d57cb052fb3d29486f2bd3856fe37b804d1b740d90e02dab5d9c24f" +path = "static-publisher/static-content/file1270.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/index.html_gzip_dc9a9441a9c8630b982dfe06f612a60334909b072ac66dea24705a2b8187e119" +path = "static-publisher/static-content/file1270.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/installation/index.html_7c47e41bf497c90eaf56793c401ba9b2cb470bd42fb565ade48645bc894630bb" +path = "../build/minified/site/fr/guides/installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/installation/index.html_br_e743d03bdcafae03d945f114d4f9b83ad1a5581afc0374acbd98f20fa1fdd54d" +path = "static-publisher/static-content/file1271.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/installation/index.html_gzip_ce7a7fd3ac5b873ba623738cc8af0d37061869932b451a57880272f549c78453" +path = "static-publisher/static-content/file1271.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/interoperability/import_rocky_to_wsl/index.html_31bcbeeec3702b10ffb6ed9d9709b0693aa5a70a74031de1fde963a19b3f1c31" +path = "../build/minified/site/fr/guides/interoperability/import_rocky_to_wsl/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/interoperability/import_rocky_to_wsl/index.html_br_b2192c9d3b219646df4a6dd9c06ec9922660572f831bb9e8d18c5614fa5799b8" +path = "static-publisher/static-content/file1272.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/interoperability/import_rocky_to_wsl/index.html_gzip_fa678d35ce0f921f1e0b0840f39fc05a3651ba58292a7dc6f4a43ab6ff89b860" +path = "static-publisher/static-content/file1272.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/migrate2rocky/index.html_8ce5a310debb9ecb92aeaaf057fe5a3b9277a2dc140368e539620f3f1130d514" +path = "../build/minified/site/fr/guides/migrate2rocky/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/migrate2rocky/index.html_br_d4841b2397ea71695cd3e6e2cd1205d1f40105b79606e4aecf851990a3261687" +path = "static-publisher/static-content/file1273.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/migrate2rocky/index.html_gzip_b228daa899a35bde02869759ff87fc4c08b6a1c71385a3b60d9ceda3e5792e1f" +path = "static-publisher/static-content/file1273.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/mirror_management/add_mirror_manager/index.html_ffee286211c03f1e9f4cffd41c87a3c4ab99c1524d15176d817ef26665f57613" +path = "../build/minified/site/fr/guides/mirror_management/add_mirror_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/mirror_management/add_mirror_manager/index.html_br_85a712447620877ffc07d3be7c9c42ea280d252c9fc62ad6626598f154c310f2" +path = "static-publisher/static-content/file1274.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/mirror_management/add_mirror_manager/index.html_gzip_1e723c60ab96c01862e2bdfdb3895aba4c90507c6edc80a7360c745e3121eb75" +path = "static-publisher/static-content/file1274.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/network/basic_network_configuration/index.html_55f2384d1337b44e992f2e659e960a5dee3a2651c12fae0b5011a264208f91be" +path = "../build/minified/site/fr/guides/network/basic_network_configuration/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/network/basic_network_configuration/index.html_br_aaac594c26e14542da2f5aef8304490ed14b0198a57a3b5b777284e6659ee4f5" +path = "static-publisher/static-content/file1275.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/network/basic_network_configuration/index.html_gzip_8c657528b0de2bfc37c4c996489717b6c20b7fc5054a765ecde4248a5ac4206a" +path = "static-publisher/static-content/file1275.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/network/librenms_monitoring_server/index.html_a4c22e500d482d46ca8ef8425768a3df6f4a9674571fe4f39f0e08ad0057cbdd" +path = "../build/minified/site/fr/guides/network/librenms_monitoring_server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/network/librenms_monitoring_server/index.html_br_e0c0e089ffd9a8b9c69213e5a97ee398d971e4c8809e6e272b2b71b975f8d118" +path = "static-publisher/static-content/file1276.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/network/librenms_monitoring_server/index.html_gzip_a16e0360c632d4a1bddb1eda28fa9a69fe7e588b22384211424bba0dcb2ee8c8" +path = "static-publisher/static-content/file1276.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/package_management/dnf_package_manager/index.html_9e6b432bd867c525c11d82857c16a7577245e4cb66d0d3abb10bfcf89ce3cd5d" +path = "../build/minified/site/fr/guides/package_management/dnf_package_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/package_management/dnf_package_manager/index.html_br_e25944eb08848f6a8e8636607ec0bb7b30dbe783cb2bcfda521ba4451eaddc71" +path = "static-publisher/static-content/file1277.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/package_management/dnf_package_manager/index.html_gzip_6c6fb2fc2c37bdde26d59eaa948a34e7e42f77c2ae6a42aaf70899c7a03f5e3d" +path = "static-publisher/static-content/file1277.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/package_management/index.html_968f276fe561ae887b955f08fcfc0cbbbde04af7e19144662deaa01d9a776bbb" +path = "../build/minified/site/fr/guides/package_management/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/package_management/index.html_br_6eb0ca09faabcf542828fe06cf15d67dc0e36d0a63ec57a120ca0acbce48297c" +path = "static-publisher/static-content/file1278.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/package_management/index.html_gzip_d04502bf7e1c92acd2d6aea6c29fce861c562706268821c2bd122d1bfc449a48" +path = "static-publisher/static-content/file1278.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/package_management/package_build_troubleshooting/index.html_0c3a02254d6e86bfd794271218bd1eafccfe28b186a5ad65951fbcec03a9eafd" +path = "../build/minified/site/fr/guides/package_management/package_build_troubleshooting/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/package_management/package_build_troubleshooting/index.html_br_fd95199efca336c655b48e0388dc70fc5207c8c718bed06d9e3cff60934e3baf" +path = "static-publisher/static-content/file1279.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/package_management/package_build_troubleshooting/index.html_gzip_d9018e444085f2bc7ec1ddcbc66367249600b60e99041871ad90e982a812936b" +path = "static-publisher/static-content/file1279.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/package_management/package_debranding/index.html_9caac3651cfed4422d7d0aef3693918d844f7bf75da2c53b84b48db1c4709a4c" +path = "../build/minified/site/fr/guides/package_management/package_debranding/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/package_management/package_debranding/index.html_br_9a2006eb45f8950add5305b1f94482b92ae9de2a192bc03ac46e868117804c16" +path = "static-publisher/static-content/file1280.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/package_management/package_debranding/index.html_gzip_726e8f6284d076bbf42dcd3c4e0110f84b95610d960ab51946a35156a7baac2e" +path = "static-publisher/static-content/file1280.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/package_management/package_dev_start/index.html_d9176befdfa0109db3e8383d3e5cfa05f2799c6f265c694d7046cb33b8962886" +path = "../build/minified/site/fr/guides/package_management/package_dev_start/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/package_management/package_dev_start/index.html_br_3bfb937ea2f96cf72ff3c96e0bb02178c55acaf0686458ee984fc34f328bb1a2" +path = "static-publisher/static-content/file1281.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/package_management/package_dev_start/index.html_gzip_a3ab53bb526ff12d90d793edf2c4e67739be6a0820ef05fa98564371c4556791" +path = "static-publisher/static-content/file1281.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/package_management/package_signing/index.html_78fbc3cdd8314c623e6731cf83a763965de8283ca091254546bdeb62d7182e57" +path = "../build/minified/site/fr/guides/package_management/package_signing/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/package_management/package_signing/index.html_br_b505baccb0dcc715f26e3ddb9d74cda3c5bf78c5256860457cb97f1932ff48f9" +path = "static-publisher/static-content/file1282.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/package_management/package_signing/index.html_gzip_0bece130e5d0920544a38438f05dd0e6003b77cb1353f8749826c4ffbe75804e" +path = "static-publisher/static-content/file1282.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/proxies/haproxy_apache_lxd/index.html_6b304201e153204900338731e9995037687e9d66b1e6c7d59f2967c855caad3d" +path = "../build/minified/site/fr/guides/proxies/haproxy_apache_lxd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/proxies/haproxy_apache_lxd/index.html_br_6ddb26c42b66a05417b7d8a876e0f78901186ba1a19b688c1332afaf500d018f" +path = "static-publisher/static-content/file1283.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/proxies/haproxy_apache_lxd/index.html_gzip_bf576369a0860a102064fccf5972c7d3bcc819e79a7b83724337ca548d7d398b" +path = "static-publisher/static-content/file1283.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/proxies/pound/index.html_c57760e524c18463bb35190b6624e7c830da4bae5a7e2574b8b9efddfc33b8d0" +path = "../build/minified/site/fr/guides/proxies/pound/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/proxies/pound/index.html_br_73f45ce98fb2f557261058c7a1999647a1d1f7a8a22a047eab756706dcb20722" +path = "static-publisher/static-content/file1284.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/proxies/pound/index.html_gzip_659588374d64d84c7e44e489d340554fd25e9d5f22f2808b92446c0f6ad9b1a3" +path = "static-publisher/static-content/file1284.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/proxies/tor_relay/index.html_2d6ab31f700c54f99a6a9bbe1011b6c96dd150333822fea33bc77909b82879af" +path = "../build/minified/site/fr/guides/proxies/tor_relay/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/proxies/tor_relay/index.html_br_8fbfe201a344b8cb55a66935a2046028a84d1caffb7db9971b17bea54f42b595" +path = "static-publisher/static-content/file1285.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/proxies/tor_relay/index.html_gzip_49418b91e33a47e41f2d33f2e4b162a18f7e1543f7a9af699d1911e73b8072ab" +path = "static-publisher/static-content/file1285.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/security/authentication/active_directory_authentication/index.html_54d3641e42e14e5b23d47444da8dc33dfe5874958dfef1931b0ebf41c2fff8e3" +path = "../build/minified/site/fr/guides/security/authentication/active_directory_authentication/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/security/authentication/active_directory_authentication/index.html_br_8d3b46e672a4d7752c0659ec6766ffcb1cd4bbdf79581bb81e6248317c7d548e" +path = "static-publisher/static-content/file1286.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/security/authentication/active_directory_authentication/index.html_gzip_03b1893bfb07e3dcbe4c6529b3928386f9dfc0312c536f9dd59eee4c4dff4244" +path = "static-publisher/static-content/file1286.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/security/dnf_automatic/index.html_179f131e2601aea67d6e63843d7bb0759c3f1ef1b4e754358ae0837cf3ecd2c0" +path = "../build/minified/site/fr/guides/security/dnf_automatic/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/security/dnf_automatic/index.html_br_126f390bb27014cfd7d99973db1473d5d41ac94432227b9d1b170db2b797185c" +path = "static-publisher/static-content/file1287.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/security/dnf_automatic/index.html_gzip_6efc58b98826e4bf576ae5cb366cc5a7b2adfdff1c4bfe66103ff272e165cdfa" +path = "static-publisher/static-content/file1287.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/security/enabling_iptables_firewall/index.html_faae6891eb94a49967d8f53803f108d292659cf757bd8a13973e9293b1048095" +path = "../build/minified/site/fr/guides/security/enabling_iptables_firewall/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/security/enabling_iptables_firewall/index.html_br_bdad75b4452db757f4e678b237fcd7fe6e653d6b4e0114e9101809c23917de4a" +path = "static-publisher/static-content/file1288.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/security/enabling_iptables_firewall/index.html_gzip_8bb634e1c1685c2fbd01295ec6cf3f4dfcd04e1796d7f11d2e1c98713742b553" +path = "static-publisher/static-content/file1288.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/security/firewalld/index.html_c36bab5c2c38db5130b530f3159dab65b462a50ce073a29ab885fad8dbb4b83b" +path = "../build/minified/site/fr/guides/security/firewalld/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/security/firewalld/index.html_br_cf45d0c426fa24f4c3803fc5303c0e702412da26fb0d54c3575720ae138f078a" +path = "static-publisher/static-content/file1289.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/security/firewalld/index.html_gzip_302ee893e49e7a0d0a506db0cad75e55975290f8c3aaae6c25a04ed2afbc1103" +path = "static-publisher/static-content/file1289.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/security/firewalld-beginners/index.html_1b8cad559a02abc5138bcdcb1a478c674f56469422f1692a3dac49edd33682c2" +path = "../build/minified/site/fr/guides/security/firewalld-beginners/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/security/firewalld-beginners/index.html_br_0e3346da4e3a7afff8b9ea1613ebcaeef6b13118189b09d5775b83d5a64f1722" +path = "static-publisher/static-content/file1290.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/security/firewalld-beginners/index.html_gzip_7816104b9bea039b0439a938275404cad309eef1d1d251242df9a626e5b6dab3" +path = "static-publisher/static-content/file1290.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/security/generating_ssl_keys_lets_encrypt/index.html_85b90dbbedd2a7b9ec1154adaee463532539794909268f1fbc34de7d698c2e07" +path = "../build/minified/site/fr/guides/security/generating_ssl_keys_lets_encrypt/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/security/generating_ssl_keys_lets_encrypt/index.html_br_5131c234d09b219581eacfd04ca8cfed3dcec47e0535ebf2812fd5d722d13c04" +path = "static-publisher/static-content/file1291.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/security/generating_ssl_keys_lets_encrypt/index.html_gzip_803b012644304fea04947c8239f2d604cebc7e928e92e4b571e04513443ff227" +path = "static-publisher/static-content/file1291.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/security/learning_selinux/index.html_67bc2961c01c98df4373ec80c9c54b26f98276b1d8dce20b2c64d38ed890890d" +path = "../build/minified/site/fr/guides/security/learning_selinux/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/security/learning_selinux/index.html_br_c3c12f86a81d86484748e3f0d7d19a1d41571fe1f09884322ad3920afbcc7d6d" +path = "static-publisher/static-content/file1292.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/security/learning_selinux/index.html_gzip_acfb8025a726501772189e834886cda6587a221aa44683b6c0f08eebcf24f34b" +path = "static-publisher/static-content/file1292.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/security/pam/index.html_f9d9fa690bfbaccd06ad511af0a313ee772facf163edba6ba75d180a56cfacb8" +path = "../build/minified/site/fr/guides/security/pam/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/security/pam/index.html_br_76d9b8b99adac5cac9d126542efdcb03d179cbfeda5af8eb4eb121bbd85528f1" +path = "static-publisher/static-content/file1293.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/security/pam/index.html_gzip_5ce14e1bb8f1f922ee43258a39dc22da18b38ecaab39ae01ab99eaf9473e0866" +path = "static-publisher/static-content/file1293.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/security/ssh_public_private_keys/index.html_5c20455d35c76f057eea8901bd442c657ec9cbdd085a248ea3a2088845b60550" +path = "../build/minified/site/fr/guides/security/ssh_public_private_keys/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/security/ssh_public_private_keys/index.html_br_3e5fc8ff5aae1ca4b68fe8a6303451acae0c5176745a37deb1783a19dffa0f23" +path = "static-publisher/static-content/file1294.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/security/ssh_public_private_keys/index.html_gzip_35a4ff4970b7a1e44ec791f9e113f8232287114a656d4b175951ff06b3f38ecb" +path = "static-publisher/static-content/file1294.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/security/ssl_keys_https/index.html_bf6ade8babf475f692a9fa2dc647bc273d3e52e1e3c6c99651d08c9e8991bcb5" +path = "../build/minified/site/fr/guides/security/ssl_keys_https/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/security/ssl_keys_https/index.html_br_810b755ac9075a7e7334cc458b3fd2d26b414ed91540a4f71961b4ee8f19bf5c" +path = "static-publisher/static-content/file1295.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/security/ssl_keys_https/index.html_gzip_4c2842f9a5907dc7114897014e4a03dcf8bab6fa33a164374466c8a7adb75094" +path = "static-publisher/static-content/file1295.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/security/tailscale_vpn/index.html_879af82142bf9bcd97fa8d48d2a5fb8c4c8ffe71f0235df58d5aedce993a97c7" +path = "../build/minified/site/fr/guides/security/tailscale_vpn/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/security/tailscale_vpn/index.html_br_231a7a67b8e916b8744e3df9c9241e1b22932f9c22399bd5554b6ee776c1cfbd" +path = "static-publisher/static-content/file1296.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/security/tailscale_vpn/index.html_gzip_ab2376e1a6454628043ab692c7828e7347887c1a29f8f87f7b042c0e0302adeb" +path = "static-publisher/static-content/file1296.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/virtualization/cockpit-machines/index.html_4403e20264825d4f5c4f9e0e2d60b905e323902c81c63af0dd93c9992cb53edb" +path = "../build/minified/site/fr/guides/virtualization/cockpit-machines/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/virtualization/cockpit-machines/index.html_br_b10b45daea9a252854ba1be4166d37eecac58f327813ff705f2e546eb9096598" +path = "static-publisher/static-content/file1297.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/virtualization/cockpit-machines/index.html_gzip_2f26ceb35da0f7d682fe3970548964f2fdf55e91383cf40deb14a43cbd58724c" +path = "static-publisher/static-content/file1297.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/virtualization/vbox-rocky/index.html_c6abbdc4b0d4d980cb8f60e006d81e104b78410ebdd9496b5b50fd90d7403691" +path = "../build/minified/site/fr/guides/virtualization/vbox-rocky/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/virtualization/vbox-rocky/index.html_br_765b31dea66c26b35b397ba0d75ad5616d82073aef0f6d2dd55fcfab01db314f" +path = "static-publisher/static-content/file1298.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/virtualization/vbox-rocky/index.html_gzip_1e289d072eec7dfcfd27172c72719639481edc956413ed2fffa27f98fd71b311" +path = "static-publisher/static-content/file1298.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/virtualization/vmware_tools/index.html_7365e45f3e03385b1fa4b08440e47072ffe5986c94200daa39701e88fc81a114" +path = "../build/minified/site/fr/guides/virtualization/vmware_tools/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/virtualization/vmware_tools/index.html_br_9363245a78a0a89b8ef39a7987d6955b29034833357a7140c08bad7fde18459b" +path = "static-publisher/static-content/file1299.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/virtualization/vmware_tools/index.html_gzip_b77d5edf83125fbd5ad033a2ebbf5e5daa1f14e501acfab6f510cc605e735b01" +path = "static-publisher/static-content/file1299.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/web/apache-sites-enabled/index.html_119786e75d559a710ca27e47efdb8a71bc8c9adc87e29c2c8757d523d5419acc" +path = "../build/minified/site/fr/guides/web/apache-sites-enabled/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/web/apache-sites-enabled/index.html_br_c10c945d6e0d8aeea0dfb88b1537089259e98f64d09a5d7b3f76dd3c515a322d" +path = "static-publisher/static-content/file1300.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/web/apache-sites-enabled/index.html_gzip_784805041dd80dda39c6e8f52f2593ee38c7dbb996d2868fff5c3fd8d51b7aa1" +path = "static-publisher/static-content/file1300.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/web/apache_hardened_webserver/index.html_b7fb9c1e7a49ae45cbc14e4aaac8b3c29f3779118ef9d0c82c135d2998b68df4" +path = "../build/minified/site/fr/guides/web/apache_hardened_webserver/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/web/apache_hardened_webserver/index.html_br_6bf0986b45af69c756852030a74204bca5b43227883d55d4f44ef1ff6d22780c" +path = "static-publisher/static-content/file1301.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/web/apache_hardened_webserver/index.html_gzip_ebb4641550a6b499dbaa13538442fbcd2d6097ef45e68a26189573195ad3e149" +path = "static-publisher/static-content/file1301.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/web/apache_hardened_webserver/modsecurity/index.html_b23e82b521937f8da9ccd674e417fab333a2a7315a612223e3ffd3f53916f5fd" +path = "../build/minified/site/fr/guides/web/apache_hardened_webserver/modsecurity/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/web/apache_hardened_webserver/modsecurity/index.html_br_2f9daaa8aee7a4c2337f2d57be4a33118f2961bba47270c887b7f9548e428a80" +path = "static-publisher/static-content/file1302.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/web/apache_hardened_webserver/modsecurity/index.html_gzip_5d26aa5b61ac5b037ae3c0454a022a2888b20d11ab3b81450166ac59206aa881" +path = "static-publisher/static-content/file1302.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/web/apache_hardened_webserver/ossec-hids/index.html_56796a92b6b6bec06b3e04565a8ffed7eff9d0ea532b133aa569413ae783b4fb" +path = "../build/minified/site/fr/guides/web/apache_hardened_webserver/ossec-hids/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/web/apache_hardened_webserver/ossec-hids/index.html_br_f9af71af593cbb0c2569bf0b46a120e3ce7607ca35f9e57ccc06215027a07b71" +path = "static-publisher/static-content/file1303.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/web/apache_hardened_webserver/ossec-hids/index.html_gzip_e84bb607bd5eeb27fd838e59e3ab71795542a5763bd24bbcdeefa58b23b5f252" +path = "static-publisher/static-content/file1303.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/web/apache_hardened_webserver/rkhunter/index.html_37ea120e1beb6714a2db157622815a2d511f3d4d2dcd9ef74e51ca51d64d7ac0" +path = "../build/minified/site/fr/guides/web/apache_hardened_webserver/rkhunter/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/web/apache_hardened_webserver/rkhunter/index.html_br_5a195c742693b5af44d41427060d398b1b66370f4da1cf96fdaaa7bcfc204eb1" +path = "static-publisher/static-content/file1304.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/web/apache_hardened_webserver/rkhunter/index.html_gzip_c820645a45ddf9e63c629e080205b11b68fc93a7649a2c2271a8fe1d14b26b85" +path = "static-publisher/static-content/file1304.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/web/caddy/index.html_07c175d76a6756edcffdc88dbb44e6c1de018bcf9f92006fff5c108adec711ff" +path = "../build/minified/site/fr/guides/web/caddy/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/web/caddy/index.html_br_8186ba281e3d893f549ab434e24e9695f4fb550037a5c4dfd7f06b4c14dcebc6" +path = "static-publisher/static-content/file1305.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/web/caddy/index.html_gzip_369ce233d913e9eb75fd7d1dacd9d43f35c0f3a56300ec13b8bb05d085bde8c4" +path = "static-publisher/static-content/file1305.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/web/mod_SSL_apache/index.html_4050cf9551a16352915ba2849e1d4003eea1ca6060f9b475e3d354167cfc3f8e" +path = "../build/minified/site/fr/guides/web/mod_SSL_apache/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/web/mod_SSL_apache/index.html_br_cdfcc7f43e8f4972cbfe15c1ae079a924c4a01f294bdd16db2ce58da1fbc4d9b" +path = "static-publisher/static-content/file1306.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/web/mod_SSL_apache/index.html_gzip_cc832bbbb215906e3cefdc123cc3516310eead0e3485f6741a0aec717833d5f4" +path = "static-publisher/static-content/file1306.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/web/nginx-mainline/index.html_3c4575cfcd5576d4796c0edf85e3bb27116d632cec8c798b22fe86f0e8c62bea" +path = "../build/minified/site/fr/guides/web/nginx-mainline/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/web/nginx-mainline/index.html_br_ccbb6b7e1c610eabcb2d71845a9c0510e12f172a14d4ed751507d3352f65c86e" +path = "static-publisher/static-content/file1307.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/web/nginx-mainline/index.html_gzip_ee528b9f22e106cc142b3f0f65940c164975a8e15b5ae88bf35f971d0c08610e" +path = "static-publisher/static-content/file1307.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/web/nginx-multisite/index.html_cddde4296b434299b1ddbb3c091c46ada003754493d62a2c1a1ec5946683072a" +path = "../build/minified/site/fr/guides/web/nginx-multisite/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/web/nginx-multisite/index.html_br_ae52ee7b3a2e6796eaf150189a4b1a5daff5539f787ef7a79ed98c02fc35a6ad" +path = "static-publisher/static-content/file1308.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/web/nginx-multisite/index.html_gzip_419bcc52dd5b22adb16a9e7c3620803efe5cacc907b01ed451769da56ccecfb3" +path = "static-publisher/static-content/file1308.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/web/php/index.html_5116a07c511026346dc2e6384c580d22ec1884819a7fb6d5a02d588fee6346a6" +path = "../build/minified/site/fr/guides/web/php/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/web/php/index.html_br_fd6c0d6d8f7ee0104e4ab53db26b7d410629615fb213849cc271892cd63c2513" +path = "static-publisher/static-content/file1309.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/web/php/index.html_gzip_fcee782e57fa49662988135e423fbbb08a2656540bdb6023d074aa6941dbcdfb" +path = "static-publisher/static-content/file1309.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/web/tor_onion_service/index.html_5838858427f1431f1e46bf33f7cd2a45afbc9ddcbe4c7f566399824757946ce0" +path = "../build/minified/site/fr/guides/web/tor_onion_service/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/web/tor_onion_service/index.html_br_f92d0ee457586c043865370397ab89b0b5f8bdcee7136e61b38cb1943e3d8080" +path = "static-publisher/static-content/file1310.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/guides/web/tor_onion_service/index.html_gzip_e786b90a67bc5fa10f21b411bf5172ee27005537d81c49c75ee6eed0af2ce64f" +path = "static-publisher/static-content/file1310.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/index.html_d2e361d70686e6cd7b3c7c2d1dc65f507214c8b0d2739eb704696fa58a2bbfd3" +path = "../build/minified/site/fr/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/index.html_br_ce52b18202ad6098d45a8a0b2eef9ec2e82cf8307f712ab862af21dd1ebd3d2b" +path = "static-publisher/static-content/file1311.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/index.html_gzip_c769ad51ead642f0719f8c62fec8eaaa5bbcf729ba42342de10bf7d78a6d3aba" +path = "static-publisher/static-content/file1311.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/labs/index.html_ea5b2c9d5f7de5da9a6316debae59338ec3ed8e955de62fc57d9db065d87f67a" +path = "../build/minified/site/fr/labs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/labs/index.html_br_d371fcfb35015537ba119ebd1b305a4486c1559fa9627b6f7f684e138f1afe1c" +path = "static-publisher/static-content/file1312.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/labs/index.html_gzip_acd7541a887fd60fe2a1e144d5bb260387c9557d3ec9ac3201619816b089fb36" +path = "static-publisher/static-content/file1312.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/labs/networking/lab5-nfs/index.html_586e5e8cb9fd30b8eed1935b6ce3d3b421ed982a9b4d3fc5ee807c3d4880364a" +path = "../build/minified/site/fr/labs/networking/lab5-nfs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/labs/networking/lab5-nfs/index.html_br_46725939cdacfe5d76243860e8a29f748d8b1a59d234129deb3742aee7c1626e" +path = "static-publisher/static-content/file1313.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/labs/networking/lab5-nfs/index.html_gzip_7e4c815c8128db4dd7332dea961e0e7fbf9f9072ee677921d44c6957fac3e623" +path = "static-publisher/static-content/file1313.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/labs/security/index.html_4d03355db4a339471604e33cd4f84a9cfbd83651940655ab2eba14748b41cc4f" +path = "../build/minified/site/fr/labs/security/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/labs/security/index.html_br_f2345de4921e3fe0bb1d9d967d5af67882a40b7487dd593696ef476013c1efa9" +path = "static-publisher/static-content/file1314.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/labs/security/index.html_gzip_cb4691b43c76002e209f30e6278dd4847a956cacdbe78266ee0c391c3a0f9fcc" +path = "static-publisher/static-content/file1314.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/labs/security/introduction/index.html_4db94a9a46446b0097c22c1383bfbaf6ec5ac1fdbbee138c56e34a6f907f4633" +path = "../build/minified/site/fr/labs/security/introduction/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/labs/security/introduction/index.html_br_32a073b87e99bbce4e1d4de78b8a9dd3d59f50ff28790e10b0cc09973e1bb60a" +path = "static-publisher/static-content/file1315.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/labs/security/introduction/index.html_gzip_9fabf5a690cc1a2908107d5de7b6fd64dfd5b6b2c0dc9de8c886cbf6b9222a41" +path = "static-publisher/static-content/file1315.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/labs/security/lab3-auditing_the_system/index.html_e05d1412e0b90734315dd71ef4c747dadf9bcf291099444514c731a13115af08" +path = "../build/minified/site/fr/labs/security/lab3-auditing_the_system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/labs/security/lab3-auditing_the_system/index.html_br_da88b2abf8c669718608a1f75285508bd2aa8807d26c00a5cdcc1fc57a63f750" +path = "static-publisher/static-content/file1316.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/labs/security/lab3-auditing_the_system/index.html_gzip_8fa76cb0d7b5747d078f59ebca91cd02a31092ac065f48b86d80a928a0cdd6ca" +path = "static-publisher/static-content/file1316.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/labs/security/lab8-iptables/index.html_1ed2866c4c0a4a8cb192d58a541b82900692008ed675d067344ea445d3b5bc0d" +path = "../build/minified/site/fr/labs/security/lab8-iptables/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/labs/security/lab8-iptables/index.html_br_e1b47ae51df5de51efeaa541cc8203dae3b7a851206d151370f7e5e25390617c" +path = "static-publisher/static-content/file1317.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/labs/security/lab8-iptables/index.html_gzip_ada6c90e6eb923e83862c6ece75528d3c0412c7db428d4609c16463af1a94bb3" +path = "static-publisher/static-content/file1317.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/labs/security/lab9-cryptography/index.html_8062b37e335be8b51a449efce613ff941fbf3e56b3ff900c2af2ea568fbd7e12" +path = "../build/minified/site/fr/labs/security/lab9-cryptography/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/labs/security/lab9-cryptography/index.html_br_b5e444d0285b57e7a7254ecc5a198be2c737a94df79e03ce8822068ebb790d9c" +path = "static-publisher/static-content/file1318.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/labs/security/lab9-cryptography/index.html_gzip_1c2fa4abcf81fea0e7f676dcc335e1513111c068763d723c5743e83efe804e25" +path = "static-publisher/static-content/file1318.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/labs/systems_administration_I/lab3-system_utilities/index.html_4a2f9f5a9d74777f4ad7f882993ab507450d38a4093bb1a875d1d591fe95038a" +path = "../build/minified/site/fr/labs/systems_administration_I/lab3-system_utilities/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/labs/systems_administration_I/lab3-system_utilities/index.html_br_3838f8b892e26800e2f67902571effd0f98cbad53e6e7dfa56682f5c4ec55ea1" +path = "static-publisher/static-content/file1319.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/labs/systems_administration_I/lab3-system_utilities/index.html_gzip_d8f7bd87015f00577407ef48c04446fe0f61769aeb56e8f7a626734adf017033" +path = "static-publisher/static-content/file1319.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/labs/systems_administration_I/lab5-networking/index.html_4ab0cb277284d94392f7ebe6b3e3dc62b1ee093de481b0c1714afe4c85271ff9" +path = "../build/minified/site/fr/labs/systems_administration_I/lab5-networking/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/labs/systems_administration_I/lab5-networking/index.html_br_0d310e0016f844807496feb703e6085c93b2205b9b733a0e928353b741bc2e0a" +path = "static-publisher/static-content/file1320.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/labs/systems_administration_I/lab5-networking/index.html_gzip_32a020f815ec6d1d644ed41a66b81ba53ce1b393ba7e2c8039e83735c9a48bac" +path = "static-publisher/static-content/file1320.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/labs/systems_administration_I/lab6-user_and_group_management/index.html_27f130977193fe6aa47ba69bc1ab817f67adde4b7dcd8a1a4f98f1bf0db52ab9" +path = "../build/minified/site/fr/labs/systems_administration_I/lab6-user_and_group_management/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/labs/systems_administration_I/lab6-user_and_group_management/index.html_br_d7e5840d495f0338fc90f18578c5eb8edb96f49d7a3415d3c0e06b814d025edd" +path = "static-publisher/static-content/file1321.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/labs/systems_administration_I/lab6-user_and_group_management/index.html_gzip_7809dc359645c7c3660dc3f809c4a8d9bf21d58493f18f8525efc925432e1a88" +path = "static-publisher/static-content/file1321.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/labs/systems_administration_I/lab7-software_management/index.html_8bd3574d8a62fde085fd68952806b4f1add45496d9af86a985c65cd30af271e4" +path = "../build/minified/site/fr/labs/systems_administration_I/lab7-software_management/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/labs/systems_administration_I/lab7-software_management/index.html_br_bb97f2512d2824bb296614048bfb82df1daa61655d86138fcdb64e5c586ac178" +path = "static-publisher/static-content/file1322.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/labs/systems_administration_I/lab7-software_management/index.html_gzip_f492bf73c64b2467421e312cce8cbaf8112100b77914e1824450a56d3b6368cd" +path = "static-publisher/static-content/file1322.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html_0d3977a8b707a1250d4b2fed7ff44cab1f1f0ac1513e9f362a491815343c2a65" +path = "../build/minified/site/fr/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html_br_c8a12e02957b62518c61056c505beaa26cb1a5866cc984cd223f43900b265ba7" +path = "static-publisher/static-content/file1323.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html_gzip_04773c7b8446f23038f0c06dfb705d8a877dcab17375ae7776f4e4896ad38ae7" +path = "static-publisher/static-content/file1323.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/labs/systems_administration_II/lab3-bootup_and_startup/index.html_169823a5e354d78ce604c2e0fa0f7d7ebb8a5e6b9fd4259bc7c0624e582a57d7" +path = "../build/minified/site/fr/labs/systems_administration_II/lab3-bootup_and_startup/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/labs/systems_administration_II/lab3-bootup_and_startup/index.html_br_7ccd4e274c3b015660c688db820b43fce111e345e07bd1dacfd1957d8a904353" +path = "static-publisher/static-content/file1324.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/labs/systems_administration_II/lab3-bootup_and_startup/index.html_gzip_5ad0b69efbf7a92dc7bf69e91659f40ef117b21c5ff003c719c692bf109d3479" +path = "static-publisher/static-content/file1324.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html_b55440d7f92407ff0059bc4bd9048c14bc75312cb9b3c9b9d48cc0da225c1dbc" +path = "../build/minified/site/fr/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html_br_921a1cd009607caac9cbb89a4659514f1de1314288eb304ab8ee96ecb1d14fc8" +path = "static-publisher/static-content/file1325.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html_gzip_579099d92035e98549df8111cd7a8640cc705e218fe58fc2c3f2bd25f566323e" +path = "static-publisher/static-content/file1325.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/labs/systems_administration_II/lab6-the_file_system/index.html_f6d9604e62f6d535c94fe404c46b813528bcf3ed64278121191eb2c3ceb2c4a4" +path = "../build/minified/site/fr/labs/systems_administration_II/lab6-the_file_system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/labs/systems_administration_II/lab6-the_file_system/index.html_br_551cba65661818d546d4ff80d4d25ac440c5c65e7443de6d1ecadf539c04d823" +path = "static-publisher/static-content/file1326.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/labs/systems_administration_II/lab6-the_file_system/index.html_gzip_05f976ca27b7b5668ed7879b5d1a5df8d7ec47923a5e99afc2ab96a471b5d81c" +path = "static-publisher/static-content/file1326.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/labs/systems_administration_II/lab7-the_linux_kernel/index.html_1405b457a10b35b0c798b090c74d255dc66e7c44b5e86ec598e2f6a95a4c680d" +path = "../build/minified/site/fr/labs/systems_administration_II/lab7-the_linux_kernel/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/labs/systems_administration_II/lab7-the_linux_kernel/index.html_br_e8d9f02b8344cde9437872ffe7b9cbd0cba1f84efb60da015f349de7e3b0c0fd" +path = "static-publisher/static-content/file1327.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/labs/systems_administration_II/lab7-the_linux_kernel/index.html_gzip_c37bf5eb33b7b53dbf06062ef0f3b0980c09100952293ceea73116edc64ab3ec" +path = "static-publisher/static-content/file1327.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/release_notes/8-changelog/index.html_7e0d89d828bb95e0889c1f99ea1830cb47a706ded02c2bbb865753cd3ec82bed" +path = "../build/minified/site/fr/release_notes/8-changelog/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/release_notes/8-changelog/index.html_br_9468e34b201824914987c5cd7951df24e5182b09ef7082aea18ee65c8e49787f" +path = "static-publisher/static-content/file1328.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/release_notes/8-changelog/index.html_gzip_f9a0e637b8b3353c59faad4f9323b14255da9398106e13ba54d81e8abb6f7222" +path = "static-publisher/static-content/file1328.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/release_notes/8_4/index.html_6b89e8c5b93d5d7e298504ec2aee159142b05c04a40d0d8e70992644ee2f1ee7" +path = "../build/minified/site/fr/release_notes/8_4/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/release_notes/8_4/index.html_br_718b9a56cfdd4ad1e5635001e0a8c6867bcbfd19f2769297b89f57ee994cd376" +path = "static-publisher/static-content/file1329.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/release_notes/8_4/index.html_gzip_f4e30ed3ebe24f7417533923440c7d52865b582e1bc88655eac3c0b00a151949" +path = "static-publisher/static-content/file1329.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/release_notes/8_5/index.html_46f3cf9daee83424db98982867f443a38a11000346b283bc39bd2630d097e432" +path = "../build/minified/site/fr/release_notes/8_5/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/release_notes/8_5/index.html_br_3bc65082e2a9049eb7a698c4aec9576834ef8bdfa53ce966e5ce26cc3f832d98" +path = "static-publisher/static-content/file1330.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/release_notes/8_5/index.html_gzip_a8a5e30dfca6b687e052f05654098e4cd869e6cd9e7ea3a9567d894006836d59" +path = "static-publisher/static-content/file1330.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/release_notes/8_6/index.html_9a4967e808fc26cf698b43e70f4a9d0ed3fcc0e96db20b641dcb21a9080d2912" +path = "../build/minified/site/fr/release_notes/8_6/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/release_notes/8_6/index.html_br_d777026426e8bc82b72104d428407787b6d155b531f443e280968458680f6278" +path = "static-publisher/static-content/file1331.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/release_notes/8_6/index.html_gzip_395971eb9cddb8d9d4aba2edebd45df4c5124b0c81cb0b969b9d93317eb8e156" +path = "static-publisher/static-content/file1331.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/release_notes/8_7/index.html_fd801ee48cd193b98b04f22d08ab8d3c8648032766f60e610005b8cb737515e1" +path = "../build/minified/site/fr/release_notes/8_7/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/release_notes/8_7/index.html_br_e73e25c260fffdb44593b47a6c117016395369c627bf8850b641099152b893d3" +path = "static-publisher/static-content/file1332.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/release_notes/8_7/index.html_gzip_a3e7a9f045a73a7ddfb6b24b4ab0883548ff13655f73417aa5a602d41e03a9f8" +path = "static-publisher/static-content/file1332.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/release_notes/8_8/index.html_f616aeadcab6581a592df1e69f1c40a3969918cf0894926ec47ad42806ca5566" +path = "../build/minified/site/fr/release_notes/8_8/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/release_notes/8_8/index.html_br_d0517413be19fc365e48bf98360b7051c5e45cac56d594421a91081c6b74ab78" +path = "static-publisher/static-content/file1333.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/release_notes/8_8/index.html_gzip_861c6677f315f529aefcff0dc419661d5618d01748769c5d1dd677ccd8031bc7" +path = "static-publisher/static-content/file1333.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/release_notes/8_9/index.html_8617ce5e99e24cdce4e2d15205e5c69e5ac9698a75df807d5150e99674fa1aaf" +path = "../build/minified/site/fr/release_notes/8_9/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/release_notes/8_9/index.html_br_b69476bb102104b1e486711be80a05729e3f37c8da7e96c1eea0856249484294" +path = "static-publisher/static-content/file1334.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/release_notes/8_9/index.html_gzip_b7379d71ce504c8557cccc44c6dc64734aa5af2fad36dca83cdc78d965e13538" +path = "static-publisher/static-content/file1334.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/release_notes/9_0/index.html_be2251e733c441b5343ee732eb743c311ae32414a2596bbd0c3f62439c385ecf" +path = "../build/minified/site/fr/release_notes/9_0/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/release_notes/9_0/index.html_br_4146b404fec5404f7ecc2515d8ab016f21518cc191f0074ac23fef47c356ab27" +path = "static-publisher/static-content/file1335.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/release_notes/9_0/index.html_gzip_bf195500734ae2a8ad7fbe69bbebb2d31c96834f35513a5b070bb2818aa560c8" +path = "static-publisher/static-content/file1335.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/release_notes/9_1/index.html_361b08a930863c1dd33316f32cd7eae555ce43941be175ed593d0a0c5d5b69e7" +path = "../build/minified/site/fr/release_notes/9_1/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/release_notes/9_1/index.html_br_011f020122de44abc6c5b2d2dd6430dbaf3711ec573731a74668c8bbf1cceb94" +path = "static-publisher/static-content/file1336.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/release_notes/9_1/index.html_gzip_2d3ac38fcd6714242512863064dbbc12e4abaccf44b2d1505f7ad813f94065ca" +path = "static-publisher/static-content/file1336.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/release_notes/9_2/index.html_c8446122f2d9ab896c1207185c1aa124124add4a1e6fdb5507aa9b9647d5d3cb" +path = "../build/minified/site/fr/release_notes/9_2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/release_notes/9_2/index.html_br_427210e8a81f7377674f443b65239f7b5cbe975787a99905cdf25b944da55988" +path = "static-publisher/static-content/file1337.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/release_notes/9_2/index.html_gzip_299482397ad35d53c76d6b9786e399d7be35ee07752fbfb3983feaeeedd3efc5" +path = "static-publisher/static-content/file1337.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/release_notes/9_3/index.html_3d541feb293dad8bae0e1548c7639fa050abcc4360b625e1913222bf5406bab4" +path = "../build/minified/site/fr/release_notes/9_3/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/release_notes/9_3/index.html_br_a24e0aff1a78cbc5e1118c703903697f9a02e0e40633bc52c26604898f67a11d" +path = "static-publisher/static-content/file1338.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/release_notes/9_3/index.html_gzip_029ab3b28d0d41616093fb46e09c9fcdfe640eaf96ac104b876ee5f03ae36334" +path = "static-publisher/static-content/file1338.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/release_notes/index.html_9a8269ecbd71ba2196dcb61ba5a31462d2b6a8d2f21c85a7fbd5a270c8bb1c79" +path = "../build/minified/site/fr/release_notes/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/release_notes/index.html_br_dbf937ee09e21d7e43f85bcf0fce84f93880fad60d4229fd2249c3d538271ed8" +path = "static-publisher/static-content/file1339.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/fr/release_notes/index.html_gzip_6be7a8bf4f1947d58312ab20426a657e68348ab48c159139b6b898883addf849" +path = "static-publisher/static-content/file1339.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/NoSleep/index.html_b5a0173f77ab77c951b4c70afbbea967b0f467c0ba35de7dc43cd9526728e6da" +path = "../build/minified/site/gemstones/NoSleep/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/NoSleep/index.html_br_2a26f2f82c46893d0601767fed05b8fa2f71edcdd758f2db406886e32f81eaae" +path = "static-publisher/static-content/file1340.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/NoSleep/index.html_gzip_155a53d1cbff841ebb7533acde9d3f9f03139e820888246f3306a01adec8ae42" +path = "static-publisher/static-content/file1340.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/RL9_network_manager/index.html_d906d826f11a213fd6bff3c523d164900c9ebe56fd489d0fe8b6c8dbf122300d" +path = "../build/minified/site/gemstones/RL9_network_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/RL9_network_manager/index.html_br_c7f34f10efff5d337bce2862c84a428fc2bff60945f76e6548f9a5778a2e88b6" +path = "static-publisher/static-content/file1341.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/RL9_network_manager/index.html_gzip_59fd495491aa88c26e35401d5f2a3fe2b28b35be8d83b0fb10ac873faabd562a" +path = "static-publisher/static-content/file1341.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/bash_stub/index.html_7ac02a808d702df054a6c14295340ad62d433dbe2673a906b658515eb6989c5d" +path = "../build/minified/site/gemstones/bash_stub/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/bash_stub/index.html_br_ad1879dab671e1c3ea0e47f633d96fc85a015a6e2a0bdd56afbe2bdf603dc4ec" +path = "static-publisher/static-content/file1342.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/bash_stub/index.html_gzip_d7b40e6fe649f0874eea017c39337c955320b2ed9ec78e81d9f7841e2203352b" +path = "static-publisher/static-content/file1342.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/containers/docker/index.html_025550e48f589ad8ff1b31bac4f8143e2961e49239a873c02fa905c60cbbd7ad" +path = "../build/minified/site/gemstones/containers/docker/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/containers/docker/index.html_br_8fde4426027ef1d57fb8d920cf6ed13cafa46a0cd055f25978b7269b43d54f39" +path = "static-publisher/static-content/file1343.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/containers/docker/index.html_gzip_971a0750c7ab439d79e1aee621f003373c2de4febe6b88eabbddf2d0d5499058" +path = "static-publisher/static-content/file1343.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/containers/podman/index.html_bd662544aaed8c320c4fd4e299cef0c3a7911a542949c63ac043d6172df81367" +path = "../build/minified/site/gemstones/containers/podman/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/containers/podman/index.html_br_a9bf0446affd227dcd8769435302997d4d40cc2b80efcc81c2a53174bbfaebdc" +path = "static-publisher/static-content/file1344.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/containers/podman/index.html_gzip_86f5fa0fe8365903f8603a4c15e9ceb471dbaea1e20be41299f490d9a94bd79b" +path = "static-publisher/static-content/file1344.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/core/view_kernel_conf/index.html_8bb831d9687f1241e3994f9df075ede2bd72fe3df4f6309f3953ded079b094bc" +path = "../build/minified/site/gemstones/core/view_kernel_conf/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/core/view_kernel_conf/index.html_br_c4a5aa8e068d191446bc72351624fc948bc2b090d5cf91f865a852e46d54e7d2" +path = "static-publisher/static-content/file1345.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/core/view_kernel_conf/index.html_gzip_09d9acb0b735e8f7d550f04be1a0a9c3dc46ad0f61cee8b17803376c44cd9c16" +path = "static-publisher/static-content/file1345.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/dnf-swap/index.html_be4e33094193991b07fe8b01f0b526dd99edc2b89d2273adf380723aae0a6ef1" +path = "../build/minified/site/gemstones/dnf-swap/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/dnf-swap/index.html_br_c94a628ab1d9317e7c63541587d0e531b3e324458befd6972469dc2c10733396" +path = "static-publisher/static-content/file1346.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/dnf-swap/index.html_gzip_d967b355a935a256da746465c8fef09a430cf81a6b16d7b3ce5633b648bd6e0c" +path = "static-publisher/static-content/file1346.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/docker/index.html_ba403bb99e08673176d5b3add9d2e8afe374effaaeadbc558b40e9ed35d12a8e" +path = "../build/minified/site/gemstones/docker/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/docker/index.html_br_197ea7641809d9217af3b08f2bced81f399e1ae3e07e85fd9f4dc0d737a4c85d" +path = "static-publisher/static-content/file1347.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/docker/index.html_gzip_4994dbf271f0da9f04bd09e627ce12dce7288d5519cf8b6b8ec540068bc6691d" +path = "static-publisher/static-content/file1347.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/gemstone_template/index.html_343228396e429f4162a2a61ede1cfed903e728dfd7474e594846d140f6c28436" +path = "../build/minified/site/gemstones/gemstone_template/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/gemstone_template/index.html_br_25baf0b6f60b91eaad3d83a774b59d25de9206f35e600696c1564a7c4143a6b9" +path = "static-publisher/static-content/file1348.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/gemstone_template/index.html_gzip_2c771b9dcc283ed8028ba017062be89241a70b2a17781d07f533f26796c9527d" +path = "static-publisher/static-content/file1348.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/git/00-gh_cli_installation/index.html_67c021499c26eca7dbbdf298041e51611f3fcd600e8ff2f390b51ed392e6b49a" +path = "../build/minified/site/gemstones/git/00-gh_cli_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/git/00-gh_cli_installation/index.html_br_c464a250c7ea177e43f7ab7ed747a3318f7c087fd2ea1fcdb688930c44ccd417" +path = "static-publisher/static-content/file1349.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/git/00-gh_cli_installation/index.html_gzip_992b6d62296155940337d555ff19a68b6ba52806a9b79e91a09026b68350d729" +path = "static-publisher/static-content/file1349.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/git/01-gh_cli_1st_pr/index.html_828f9778d0547b5f7ce6b996e621e2c76f8afd49cd34a6cac4cbfb3fe07eb7fb" +path = "../build/minified/site/gemstones/git/01-gh_cli_1st_pr/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/git/01-gh_cli_1st_pr/index.html_br_d7d1aaa09c74d5190127144c967c355b09f2f9899a68d06d5c9d4943f6887bd0" +path = "static-publisher/static-content/file1350.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/git/01-gh_cli_1st_pr/index.html_gzip_564ab9711f1fab88ef63824fec6b1bc9a149d1b50e732b79d614eb54d71df6f1" +path = "static-publisher/static-content/file1350.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/git/02-gh_cli_edit_pr_title/index.html_c9e3203dd0684f357dd58ac9ec37de7391f171fd5270e34578973306f829ad87" +path = "../build/minified/site/gemstones/git/02-gh_cli_edit_pr_title/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/git/02-gh_cli_edit_pr_title/index.html_br_73be03eca17ab7208f79ccdf7a27e734186dfd9e3ad0663d0f324f1a4ea432c9" +path = "static-publisher/static-content/file1351.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/git/02-gh_cli_edit_pr_title/index.html_gzip_81822a32e22e5dff47ffa298530b669d29ff99903380043fc009d4766f283f6c" +path = "static-publisher/static-content/file1351.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/git/02_github_web_edit_pr_title/index.html_2cb286ffff78b79f07b12bd65663736c50b09fb2b4910f5439f0a26c53518e06" +path = "../build/minified/site/gemstones/git/02_github_web_edit_pr_title/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/git/02_github_web_edit_pr_title/index.html_br_da284cadde1c99ac6609bdfce9da0d5ddf8863dcd5979d880c025953c2a2a0fd" +path = "static-publisher/static-content/file1352.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/git/02_github_web_edit_pr_title/index.html_gzip_cacbc6e1bd6101f25087457d2f865c989d4c39ef28fbd64eecdb02d4cdc59089" +path = "static-publisher/static-content/file1352.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/git/feature_branch_workflow/index.html_146042d58f708a192cbeaa1c8549abeff6d7c33961ccc0f51872572b40cfbf24" +path = "../build/minified/site/gemstones/git/feature_branch_workflow/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/git/feature_branch_workflow/index.html_br_1aca29508985b15c34a0501898d2bdc65fc1c0f484106fdea3738b8b4640cd41" +path = "static-publisher/static-content/file1353.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/git/feature_branch_workflow/index.html_gzip_8e0d62879be098b41453ff1e81f8f5c05e0b1dd8668ce614be0fbff8e28f4efa" +path = "static-publisher/static-content/file1353.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/git/fork_and_branch_workflow/index.html_4e389fb64ad038c7eeb66aec02566cc489cc8002c29e1eea33cf5ea31010a577" +path = "../build/minified/site/gemstones/git/fork_and_branch_workflow/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/git/fork_and_branch_workflow/index.html_br_e1f589db18ec00057a48e034a3d17c9ddc1869dbaa31c71bc2469305c7d1feed" +path = "static-publisher/static-content/file1354.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/git/fork_and_branch_workflow/index.html_gzip_d56e1f109f8fe8fba67bbe01884a402460486e1c88a5dc83cfc0b53fefb3cd1f" +path = "static-publisher/static-content/file1354.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/git/git_pull_vs_git_fetch/index.html_44e9c3f1cbbf1c5ad94139bf9f5d1c1c1530b4efbfd524b9c526e871730f7c06" +path = "../build/minified/site/gemstones/git/git_pull_vs_git_fetch/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/git/git_pull_vs_git_fetch/index.html_br_c5da389b4c05e68245b477ec85f505a8ef98f77a4442d1ee5222781b2b975960" +path = "static-publisher/static-content/file1355.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/git/git_pull_vs_git_fetch/index.html_gzip_86412077da0c7a4af883d121ea2ad61e177fa90f4b240337133c963765432870" +path = "static-publisher/static-content/file1355.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/git/git_remote_add/index.html_d88acede6f66586c54ab6f7e481617005ff26c46568fbcd62b0b0d48e39d0d1f" +path = "../build/minified/site/gemstones/git/git_remote_add/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/git/git_remote_add/index.html_br_9c9096ea71d8fb4b0357c71ea4e8a015f7549fc8209dad48cdc8e4a94c05d408" +path = "static-publisher/static-content/file1356.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/git/git_remote_add/index.html_gzip_6c7bf2ab297594454860aeb7149e9e453e2fb90255904fda3ecec7fb9b621ce0" +path = "static-publisher/static-content/file1356.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/git/tracking_and_nontracking_branch/index.html_71345babde71d4912aa525f07ef0d40df9ff6792487fc71311aacea74e9816a8" +path = "../build/minified/site/gemstones/git/tracking_and_nontracking_branch/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/git/tracking_and_nontracking_branch/index.html_br_323d6c4b0b5e78f4560a63578edda6afbb9f8c98a10c24201dfe39179fbf9888" +path = "static-publisher/static-content/file1357.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/git/tracking_and_nontracking_branch/index.html_gzip_4d0cff9230949fa41812252ecb2fcf20d8da18710d9a4a859834f39b4ce20522" +path = "static-publisher/static-content/file1357.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/htop/index.html_b58c72bafcc96ee387ffc8cbfb0c6028c40ae1f8c6b865887f39cf20005ef4e6" +path = "../build/minified/site/gemstones/htop/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/htop/index.html_br_1f960f05b351105c7f7588f03992960b5cfeb12c3993462ce5398777e0594e31" +path = "static-publisher/static-content/file1358.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/htop/index.html_gzip_febe34fc5b1705fda5ae45d26ffe7e9a95701febc47403c55b39c9fddee96b2c" +path = "static-publisher/static-content/file1358.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/https_rsa_keygen/index.html_2043314c4d9b96fa5e0cbca7e1239e4c28ad0ebd8e3ea0138f93b65548627eae" +path = "../build/minified/site/gemstones/https_rsa_keygen/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/https_rsa_keygen/index.html_br_62fd12156470697e8b6ae3348a24c000bd3e164db5b73b64132b291f852c445b" +path = "static-publisher/static-content/file1359.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/https_rsa_keygen/index.html_gzip_f36862e3965e3b5d36514ce62abba53b9d3ea4181a080e289575776af169b932" +path = "static-publisher/static-content/file1359.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/iftop/index.html_d5d91673458dd7e440b51333dd694ae1285d46b846744cce867fa6a3bbad4ae7" +path = "../build/minified/site/gemstones/iftop/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/iftop/index.html_br_6952a2b0157c122d506ca3e8dfff568c7bf8b70d57663ec975b8413f0aab6166" +path = "static-publisher/static-content/file1360.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/iftop/index.html_gzip_7559ef92928a236382dc47cd9f1b99a5ec9b54b80c479d4be8fdbfa79bdd0fba" +path = "static-publisher/static-content/file1360.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/images/podman_nextcloud.png_49815a9bf15841555bb0ab2110f618f287c26b962c88f49be85f3ac3527a5731" +path = "../build/minified/site/gemstones/images/podman_nextcloud.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/images/podman_nextcloud.png_br_cc17b20ff50b5b29fc3191293c2e28c4d739a2ff96b73729d958f372f625ea5f" +path = "static-publisher/static-content/file1361.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/images/podman_nextcloud.png_gzip_d3365c9c895037411d35fcb2aab88c9225f7f06051687c4e9ce2b6b98eee6d36" +path = "static-publisher/static-content/file1361.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/images/string_color_image1.png_5c50722675f7c851ab62dec7b53c50c9c9668daa91b7ba6d4197fd8cb489aa10" +path = "../build/minified/site/gemstones/images/string_color_image1.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/images/string_color_image1.png_br_f0016c7b062fe4185d29447cae4154a385ba3766702a2dfaf516ef7207114428" +path = "static-publisher/static-content/file1362.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/images/string_color_image1.png_gzip_95183831dcb3df082d00336e0eaa1d23e156b49cb344d1056f796763103b3145" +path = "static-publisher/static-content/file1362.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/images/torsocks.png_6f797e36326dd899f8193fa5ced0d99894be72b1769b4c52aed5c8c63c9e786a" +path = "../build/minified/site/gemstones/images/torsocks.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/images/torsocks.png_br_c1bfea9d82dd0dd18d13f154da3f890605079e9bfffc02eb82988d345ac04daf" +path = "static-publisher/static-content/file1363.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/images/torsocks.png_gzip_0826661c6b542921819a8ca23007afa9e86a7393d8203a59e3f10cc5c6624429" +path = "static-publisher/static-content/file1363.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/index.html_ce822d4316893c7bff869b93517b0ac9b154db518b59e658418f3bf32e75937a" +path = "../build/minified/site/gemstones/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/index.html_br_1e22141809ae8ecba2f3570e9fc7584b9caf15b19ce4fae2382570cdbc05d7aa" +path = "static-publisher/static-content/file1364.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/index.html_gzip_d180605a0402f9d12858e1a9f97cb1be9837358ac13534c081d4f0be6c9fed96" +path = "static-publisher/static-content/file1364.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/markdown-demo-v2/index.html_d64f13561fbc8d5eef7ab1b4ea90e550c7a64f2ebf6c18120a817d37a472edf2" +path = "../build/minified/site/gemstones/markdown-demo-v2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/markdown-demo-v2/index.html_br_f422d61b60cc2d31b6f8d9539c25837729288e72fa0899f4e2e5f2d9da15d0de" +path = "static-publisher/static-content/file1365.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/markdown-demo-v2/index.html_gzip_f0f04be4a1cca7e4bb829af869f563e4039466f831e7277e387d09fe5cb87d99" +path = "static-publisher/static-content/file1365.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/mtr/index.html_06dd25eb96efcc513b489c32c19c13577edbcce0405a3667b48196d5746e9785" +path = "../build/minified/site/gemstones/mtr/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/mtr/index.html_br_d1bf5515623b7f8283dfc993ae5234d2fee88429b07bebb89e2cfdc4a70f26a4" +path = "static-publisher/static-content/file1366.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/mtr/index.html_gzip_1bd17cb44c1cb5197eb9baa0596515c16307b4bd296ef872d1259eaed0ae7db8" +path = "static-publisher/static-content/file1366.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/network/RL9_network_manager/index.html_25babf3038e0685d0f5e7a1df1dffb51dd9028a0dd83b66536f8335c6fec7520" +path = "../build/minified/site/gemstones/network/RL9_network_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/network/RL9_network_manager/index.html_br_5533f08129b6d9967f8405c9280bbf89dd4084306e2d833f1dbfe0cee56a583c" +path = "static-publisher/static-content/file1367.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/network/RL9_network_manager/index.html_gzip_426dad7753fdc3c0636df8bf50ce67046eba688b59ecb588cb8c99512c169d25" +path = "static-publisher/static-content/file1367.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/network/iftop/index.html_13fa48cacd9582eed7c790418e94a3b699da12dcb348550299019bab874ffefc" +path = "../build/minified/site/gemstones/network/iftop/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/network/iftop/index.html_br_f62d53c1e890c304638b1b3a192ae30df025625881ce9be7f5512bfd60abe61f" +path = "static-publisher/static-content/file1368.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/network/iftop/index.html_gzip_f7888e6adb8681a347f633c8f686ad0165323e8ada8b3959053abd7a26210f0c" +path = "static-publisher/static-content/file1368.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/network/mtr/index.html_cf774e58c416ec032e463f0007e46a0ceb77a47c8be4fa36093c56493b9a232e" +path = "../build/minified/site/gemstones/network/mtr/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/network/mtr/index.html_br_33231e3dd6119ce59ba102b1085713701937306e4e73902633ed2549da786fcc" +path = "static-publisher/static-content/file1369.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/network/mtr/index.html_gzip_c502018f0b1bde0d3c1cfc1484d759b508cdeb27375fe9619966c365c3c22e2f" +path = "static-publisher/static-content/file1369.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/network/nload/index.html_206d5140b696f58cd7049c5ce053b8b2234be3d46db992ca75d4d014ba5b6136" +path = "../build/minified/site/gemstones/network/nload/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/network/nload/index.html_br_95e7d60ca0d6666aec47251cc4fc126e8b1144e38c91e77ea7c63343fb288bb6" +path = "static-publisher/static-content/file1370.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/network/nload/index.html_gzip_8250981442878636a6852853b9192255019c25b0ea7fdfc5fb531fb6b84dd415" +path = "static-publisher/static-content/file1370.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/network/nmcli/index.html_5b7a2207e733ea2c92b86111db5d46defad2197e4a1a20d457f50d10af72bcc8" +path = "../build/minified/site/gemstones/network/nmcli/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/network/nmcli/index.html_br_b4d9d50845729a23eb09d4345f498b13d9babbbe6b3f5a6ddec4375f58f063b0" +path = "static-publisher/static-content/file1371.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/network/nmcli/index.html_gzip_d55299135b326426ad4d4086be127b8945e1c4e01697ef70e8e5cc019ab0f539" +path = "static-publisher/static-content/file1371.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/network/nmtui/index.html_f43401c128a2786dfb8d825e8c32e394319824a187b9e2fe71ab4bafa2947b91" +path = "../build/minified/site/gemstones/network/nmtui/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/network/nmtui/index.html_br_d5c9b571baa25adc57dc3323aad4b2f67b5a7569355e2a98572bf5f48996488a" +path = "static-publisher/static-content/file1372.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/network/nmtui/index.html_gzip_d06db074d5e62119b667a43dff02c6400a4fdca9807b832235a964550390eb38" +path = "static-publisher/static-content/file1372.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/nload/index.html_41861444fc00d3f8ec9c02709b01bc4f04661860ef9dbf973047ead0dc88573a" +path = "../build/minified/site/gemstones/nload/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/nload/index.html_br_2df8702510c3f7481d83580a5277d5cf39f15c0489f3af4f03b6425bd07b8c81" +path = "static-publisher/static-content/file1373.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/nload/index.html_gzip_bc834df448c5eda89fe12bad340751d4cb41657075a6d9a53b18236fd008880d" +path = "static-publisher/static-content/file1373.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/nmcli/index.html_044b97b8c511aab31e20fd918e1e79a4fed62ec5d9ef4bbb8f14cc9a497cb611" +path = "../build/minified/site/gemstones/nmcli/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/nmcli/index.html_br_4976d6f96d001d372757bfb5f502b0897fb9f0fd293466b1045b6f2fc079faf2" +path = "static-publisher/static-content/file1374.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/nmcli/index.html_gzip_c2dc6daf47283260d45c4f63e014932f86667c0f601504174373aa8d17a31053" +path = "static-publisher/static-content/file1374.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/nmtui/index.html_302e1ec476aafe090a9c0eab8752a34377705bbb2dbcff0a5253ab699c08b39d" +path = "../build/minified/site/gemstones/nmtui/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/nmtui/index.html_br_f8df050b983a2c934b9f35b2569b5d902f81afa02c5f75c27c3e5fa64903a625" +path = "static-publisher/static-content/file1375.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/nmtui/index.html_gzip_26705d96c72ba90d041669c9e9e6745930857ebeb9cd16c72d44cbaf00a63271" +path = "static-publisher/static-content/file1375.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/perl_search_replace/index.html_4b1c67a52787b3cdbf36c9032e2f9b9dd266aa7595c10de6f272e35c37c18601" +path = "../build/minified/site/gemstones/perl_search_replace/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/perl_search_replace/index.html_br_86edb17be572c2b366b995b047c776712f9c8e1a8ed2bcb44f0c4f24c0f87911" +path = "static-publisher/static-content/file1376.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/perl_search_replace/index.html_gzip_9c110352d2ea5d1cd913e2971257d422bc7e1ceb462168debcfbf261c505be08" +path = "static-publisher/static-content/file1376.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/rpaste/index.html_dfaa2ecd26890ffeabe3389a35fe878afdfa2dd36a58c0fc68bbf0db6abf1057" +path = "../build/minified/site/gemstones/rpaste/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/rpaste/index.html_br_6cb68168ab3f51733ada902853ae103c942ed32bbd14336bbeedeb9272164126" +path = "static-publisher/static-content/file1377.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/rpaste/index.html_gzip_66e3ad13f4744a9d7b168155afe9f5509d1518548da64c902a8edc4fed4caf0a" +path = "static-publisher/static-content/file1377.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/scripts/NoSleep/index.html_d90c57bc24f3d854cac6e1ce1faa3abd80e0001840d12cb577f079120e9e9ee1" +path = "../build/minified/site/gemstones/scripts/NoSleep/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/scripts/NoSleep/index.html_br_af4fc005aa1a9a9663913b45845d4cf4e724046cec331b3af05f67512849f3f2" +path = "static-publisher/static-content/file1378.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/scripts/NoSleep/index.html_gzip_dd8f3c5a76b7c571b0dd0e40ffea3ed726db4a585779fb0841f82e713c15ff34" +path = "static-publisher/static-content/file1378.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/scripts/bash_stub/index.html_fdf1d5ed01b2188b921aade22c1a6abf704c3f7bbd7835dd4343d0162d116169" +path = "../build/minified/site/gemstones/scripts/bash_stub/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/scripts/bash_stub/index.html_br_f0197b59b15616aed31e5e2a85a782f7a03665b7752d33b23d5c0df5a7876a0e" +path = "static-publisher/static-content/file1379.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/scripts/bash_stub/index.html_gzip_1703ad778e253cb1bc07297d1cf4f03536c032c76619f4fa9bac2909e4cb3ace" +path = "static-publisher/static-content/file1379.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/sed_search_replace/index.html_e8e6cc95c861ce87ac10365586670b19de620e1668e5174bdc51b3166e764300" +path = "../build/minified/site/gemstones/sed_search_replace/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/sed_search_replace/index.html_br_cc2d1393d84ba663ab16a43b80e34deb0e8c2076461c65082b011db9cabf6cca" +path = "static-publisher/static-content/file1380.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/sed_search_replace/index.html_gzip_5f2efeb2ed87788bed98e74881f45d1c53397d5214ff024365b72217c8da45b8" +path = "static-publisher/static-content/file1380.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/setup_local_repo/index.html_696edbe3ad5686416cc5b7e0c6c85d49c4fc2c08eca2b6244aecb89083b70670" +path = "../build/minified/site/gemstones/setup_local_repo/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/setup_local_repo/index.html_br_03e5873c9610f401ed8f02a0147cdde0f9c48e7b37f200040fba435018b4c022" +path = "static-publisher/static-content/file1381.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/setup_local_repo/index.html_gzip_afbc8e2e64a8b011d5dd49d69a2b8942d604743076ed97898f66e84a0c622292" +path = "static-publisher/static-content/file1381.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/string_color/index.html_e9b196d49ef5808ee9dd39468d080bc66f2d7c169415d240f5d59ba24733b9c9" +path = "../build/minified/site/gemstones/string_color/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/string_color/index.html_br_5acf62831b80dde59fc35b38bab66680b7c8532a6d113f8879cfe86cf00d3c34" +path = "static-publisher/static-content/file1382.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/string_color/index.html_gzip_84cc9a3a396090b4d22a13086c457325f25098cc5b33c04b8f1b04ad2e7b7338" +path = "static-publisher/static-content/file1382.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/systemd_service_for_python_script/index.html_dd49ccaca5c0ef9add8c8b626a921cab4f2936ce36935b54e0169527e581b0bc" +path = "../build/minified/site/gemstones/systemd_service_for_python_script/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/systemd_service_for_python_script/index.html_br_4ddb9595f6094a5408dfcadd2078c99649fc8686216ad558da5403b98f698d25" +path = "static-publisher/static-content/file1383.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/systemd_service_for_python_script/index.html_gzip_dd3f706ce1a17a892c1180f8adf51cd08006f7b22bbb32425e551c6d65502f72" +path = "static-publisher/static-content/file1383.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/test_cpu_compat/index.html_795c02b7ab8c1a56cab5b7c5e6b98b34f1ae10ba7f6b5cb27044dad024e32e1d" +path = "../build/minified/site/gemstones/test_cpu_compat/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/test_cpu_compat/index.html_br_712faff38a9c05a5f50b6780f011342b086ad0c62923de33d3f5f9b276adc611" +path = "static-publisher/static-content/file1384.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/test_cpu_compat/index.html_gzip_c5f9c8f43f591c1cd3257a76cd81852e029a079504b64b7d95b716791c4e5e8c" +path = "static-publisher/static-content/file1384.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/torsocks/index.html_2f5eeb8bc376f27c2b2f7828083aa454058d96d4774d65402b638bf2b2e70521" +path = "../build/minified/site/gemstones/torsocks/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/torsocks/index.html_br_6a890f7e3e1f30affcfa4776c6c7598d501facac309238071f98d09256bb54ec" +path = "static-publisher/static-content/file1385.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/torsocks/index.html_gzip_9e05d6f8700b24e6a202958ef120b1f24308a89109a12ec5ee86e5f96fb7b25b" +path = "static-publisher/static-content/file1385.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/view_kernel_conf/index.html_d43cc35b3f553473b147059b22e58b93813af716c6abb66f61322ea3a451ece9" +path = "../build/minified/site/gemstones/view_kernel_conf/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/view_kernel_conf/index.html_br_b6c2a958f23396b644ce2e76fe2f20d5277c2a539c2504f680895b747f3e70aa" +path = "static-publisher/static-content/file1386.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/gemstones/view_kernel_conf/index.html_gzip_dad5f0c08f84d8bfcb65d5cbb9f61d65eb66fe8a3ab31f93aa82b0a8bd90107c" +path = "static-publisher/static-content/file1386.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/8_6_installation/index.html_4672ada3ef401071addd529ee54ca57b7fa08c38f8d7a3584f94f51bec8fa78b" +path = "../build/minified/site/guides/8_6_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/8_6_installation/index.html_br_d9e10ca5b0307cf9334114e904daf1fc08a27f90ffeda2030f007de163037bed" +path = "static-publisher/static-content/file1387.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/8_6_installation/index.html_gzip_7aa9b0b0e259aadc1fb632a8962300c6c951243d8e388d6ad271df2619384025" +path = "static-publisher/static-content/file1387.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/add_mirror_manager/index.html_ecb766563f4ed50d79314ce18e547cf9c15df73f3adbfb28eb6e0ccedcc4f2ff" +path = "../build/minified/site/guides/add_mirror_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/add_mirror_manager/index.html_br_3894cc8d5e3d3cc505fe32bf9bb1b9133c880809280a77bffc614d4629b9b942" +path = "static-publisher/static-content/file1388.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/add_mirror_manager/index.html_gzip_446202e62964736a00a5bb09083d8d7d5c00786538d68be187ae9239e1737b92" +path = "static-publisher/static-content/file1388.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/automation/anacron/index.html_b5300dfa87b9a88e1af64c79b98fef4b1b7ee5e0e92de5fdc73dd5517ddc2023" +path = "../build/minified/site/guides/automation/anacron/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/automation/anacron/index.html_br_906b4d4ee14e6190056813f13229407f6e012d57425111eb5b1562c0cd8c1099" +path = "static-publisher/static-content/file1389.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/automation/anacron/index.html_gzip_be3f35c725b11ec20f4ffa4445d8a8bf8c8bbf75ea9795bc44ae47793635bd9a" +path = "static-publisher/static-content/file1389.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/automation/cron_jobs_howto/index.html_e092028ea6f38de5d57b234f7582cfc19cae96deae011ce0ea169eeafbdd1daf" +path = "../build/minified/site/guides/automation/cron_jobs_howto/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/automation/cron_jobs_howto/index.html_br_b3437e6bf8056966841624ddab12907baa936b91f53607884bdfbfffde7d2caa" +path = "static-publisher/static-content/file1390.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/automation/cron_jobs_howto/index.html_gzip_312a5a8bdbd677d464322d61d64b0184d3fa55acc5f70cf12e29af612d434f73" +path = "static-publisher/static-content/file1390.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/automation/cronie/index.html_dc24a455566412b49ee9e59bed3bafb44713da25bafba880bcc0bf4d62d6b191" +path = "../build/minified/site/guides/automation/cronie/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/automation/cronie/index.html_br_db2a00191618bba03c671e49c5bd11bffef0f00d8a69820f0be04f028f7d7bb3" +path = "static-publisher/static-content/file1391.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/automation/cronie/index.html_gzip_b715871b6c9348f3b44db66eb76e3b8f0cb42308c186a896ae165abe3a39d002" +path = "static-publisher/static-content/file1391.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/automation/olivetin/containeraction.png_3ec3e3517590ffb600107f3234aad31790cd67102a2411bf08aa844fcb3d3849" +path = "../build/minified/site/guides/automation/olivetin/containeraction.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/automation/olivetin/containeraction.png_br_cb1e91c76a4911e6f325ac27558c1243c990a37fad92dbf39fc7116c0591d768" +path = "static-publisher/static-content/file1392.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/automation/olivetin/containeraction.png_gzip_d3ce8f9f75e9207b6564ef54d6d80b9bfd79ba983ba322f688103f3ea1593862" +path = "static-publisher/static-content/file1392.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/automation/olivetin/index.html_0675742cc98987dfb46770b6923210982d66c9d8fb4b3c3afd69d0f447367e03" +path = "../build/minified/site/guides/automation/olivetin/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/automation/olivetin/index.html_br_59b56569df47ca00d0f4aa43a06689505e5ed92bc12d1d24309a1e20bcf20f8b" +path = "static-publisher/static-content/file1393.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/automation/olivetin/index.html_gzip_3fae2a2e14148d3e74410753f668b7ba0847b1ce6f21a332b51c4cb03660b8e6" +path = "static-publisher/static-content/file1393.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/automation/olivetin/screenshotDesktop.png_8aa3d611f795d419ad1740ae259379a06002c466c114e442c00adbfaf0dd97f6" +path = "../build/minified/site/guides/automation/olivetin/screenshotDesktop.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/automation/olivetin/screenshotDesktop.png_br_007da35ed7efce51fea230a20de49520a63bcc151691f65169de6179a1e357ed" +path = "static-publisher/static-content/file1394.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/automation/olivetin/screenshotDesktop.png_gzip_9aa07c3d5af37a1594add1abf3bb97cc9a0849c7093bef540a331243a62bc9ca" +path = "static-publisher/static-content/file1394.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/automation/templates-automation-packer-vsphere/index.html_5c21692c4fa2d466387e3a579340d97c9ddb6e0663bfd4e96a0e45ad4c9708be" +path = "../build/minified/site/guides/automation/templates-automation-packer-vsphere/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/automation/templates-automation-packer-vsphere/index.html_br_9f64fedbe45e96d9debb13d1dcc9311c38169b7def8fe28aa72b08199465201b" +path = "static-publisher/static-content/file1395.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/automation/templates-automation-packer-vsphere/index.html_gzip_3f4f7ea5eeea252132001532ab5565c9d8a2eeaa61465aac3608c28f3c5cde27" +path = "static-publisher/static-content/file1395.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/backup/images/code.png_ecf0c8dbac96bf1ce9985a5d0b04f7613c52463ba381ece7cf3bf7bf1a2f71e7" +path = "../build/minified/site/guides/backup/images/code.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/backup/images/zip.png_b0f45f4c15546b577b53eb8edbe98146ec66c8f8ab2c6df8ef3e9c87e668d26c" +path = "../build/minified/site/guides/backup/images/zip.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/backup/images/zip.png_br_4620e6f10f56ff21de3d47fdff08968bdd05a6f0433cc61924c11fef9cacf089" +path = "static-publisher/static-content/file1397.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/backup/images/zip.png_gzip_c74ac269407ab70aca409d577d4e1319488da4ec50c8c31f03003630b9b8df6e" +path = "static-publisher/static-content/file1397.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/backup/mirroring_lsyncd/index.html_c1b3f8bcc4a782c55e9ad1a4480d444168891f2e39e9ddb29b217e9b9e5737d2" +path = "../build/minified/site/guides/backup/mirroring_lsyncd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/backup/mirroring_lsyncd/index.html_br_551229d732cd63df4967341f374cfe7869cf9bebf5047e83d16cdcf94f0e8c22" +path = "static-publisher/static-content/file1398.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/backup/mirroring_lsyncd/index.html_gzip_ab505f8ffb72aec9d4a7f3f8959c35a68f2fd3bc85ec74a2147bf204449a253d" +path = "static-publisher/static-content/file1398.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/backup/rsnapshot_backup/index.html_246960c62b6acedab9fbe07b1c2148fc2891be252a31c3179321023f932a3d2d" +path = "../build/minified/site/guides/backup/rsnapshot_backup/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/backup/rsnapshot_backup/index.html_br_4bdf81b518609c2003db5e5e404d53fee845c10487212957171152f0141de4c1" +path = "static-publisher/static-content/file1399.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/backup/rsnapshot_backup/index.html_gzip_4d8a1f45ab3f37d68dc14cc1eff7f192767b8155435c84b505f8f8c244aa9cdc" +path = "static-publisher/static-content/file1399.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/backup/rsync_ssh/index.html_3da2bb3b84487f1cd7d7c154f696c9bef7949ec6f474e226d28e0f1a2ffb2e09" +path = "../build/minified/site/guides/backup/rsync_ssh/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/backup/rsync_ssh/index.html_br_d6fe95fa8725ae9ac6262fb314a5d3465d86fd5a88d256495fb59469a66d0d9e" +path = "static-publisher/static-content/file1400.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/backup/rsync_ssh/index.html_gzip_92e7d472891522240bf4a07dca60e87c86f6566122d77ce88e21075422357df9" +path = "static-publisher/static-content/file1400.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/cms/cloud_server_using_nextcloud/index.html_89633923005f691ca1fd9d338f72d38d16c2e857dd1eb1177445f02705941406" +path = "../build/minified/site/guides/cms/cloud_server_using_nextcloud/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/cms/cloud_server_using_nextcloud/index.html_br_fa5c34bbb60288c4f3af67a4ae484874ccf7f6ddc9946e0146e1733cacd0559f" +path = "static-publisher/static-content/file1401.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/cms/cloud_server_using_nextcloud/index.html_gzip_18631348555288bd0812631dd390f3ed357b341bb7a65e70547719134ab4b744" +path = "static-publisher/static-content/file1401.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/cms/dokuwiki_server/index.html_2405a93cdf08ef6c2169514bb9700c37388698166f88277486c8cbef87402a39" +path = "../build/minified/site/guides/cms/dokuwiki_server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/cms/dokuwiki_server/index.html_br_da99400cfd45769764bbd6856d1799d2e792af2f39c0005ad94925ab02f5cd5b" +path = "static-publisher/static-content/file1402.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/cms/dokuwiki_server/index.html_gzip_33eb49720f0d9a151467106f91df75436fd63c3816c1ebfe6ef7d4a0439d68a8" +path = "static-publisher/static-content/file1402.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/communications/asterisk_installation/index.html_af7532795e385a7b17610cf0566af5620e8db62e5732165faefe8594b78b09c6" +path = "../build/minified/site/guides/communications/asterisk_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/communications/asterisk_installation/index.html_br_ad1e8053034ca6f1ec2fec3ce4cf5e68cba5e4d26beeb292beb7ab26939227c0" +path = "static-publisher/static-content/file1403.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/communications/asterisk_installation/index.html_gzip_c2303d1d246d7b7ee22de1a4abf89f5c109ab058822637791e7e013867adf179" +path = "static-publisher/static-content/file1403.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/containers/img/rancher_cluster_create.png_94ff7d6dfd57891f49d1e997d02f92cb8d331220330d600d111d06505603cf69" +path = "../build/minified/site/guides/containers/img/rancher_cluster_create.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/containers/img/rancher_cluster_create.png_br_ff35bb60b0d3c9ff9729d1642062c930779dc1dacb87150275bb4733d2bbf1ba" +path = "static-publisher/static-content/file1404.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/containers/img/rancher_cluster_create.png_gzip_fcbf9aca4bf19a7c9bcc8507886455e82d9016e11a81c91ca7b50b66f8589351" +path = "static-publisher/static-content/file1404.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/containers/img/rancher_cluster_ready.png_44068402d1351b934e7beedb40670bd8826ee78b2d0297994c15d54077a3f8f1" +path = "../build/minified/site/guides/containers/img/rancher_cluster_ready.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/containers/img/rancher_cluster_ready.png_br_a5cf33e4f3cd3aba9e6aae7ca9332003469f7165439786e8c9738a506918ff5d" +path = "static-publisher/static-content/file1405.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/containers/img/rancher_cluster_ready.png_gzip_7848552355cf7fbe873e1361df77649d651050ff63c788229f05bcaa6464130c" +path = "static-publisher/static-content/file1405.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/containers/img/rancher_create_custom_cluster.png_84c7145b7acf07beb1b9316d7e5596cc08a1a0d971a909f5114237e4fc53a326" +path = "../build/minified/site/guides/containers/img/rancher_create_custom_cluster.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/containers/img/rancher_create_custom_cluster.png_br_bc6874c85cfed888a933c492798289ef330d70c14d767e66972dcf7dc1654630" +path = "static-publisher/static-content/file1406.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/containers/img/rancher_create_custom_cluster.png_gzip_c859fba4c62964007b8237d4d39a154f48b41886156372d9518e583781d33b06" +path = "static-publisher/static-content/file1406.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/containers/img/rancher_hosts_registration.png_2dca5d2e6f71fdb6afc0924d32c499421d547bb67ddf2e8b98485c91de24ad97" +path = "../build/minified/site/guides/containers/img/rancher_hosts_registration.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/containers/img/rancher_hosts_registration.png_br_192f9a19abdb8515e8c8f616046ec75e1a9c17c76cd505ed52df404aece82187" +path = "static-publisher/static-content/file1407.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/containers/img/rancher_hosts_registration.png_gzip_8db1f0bea33387d39477d6a81d936001eaa5fc62669c08509e1cf87079635ced" +path = "static-publisher/static-content/file1407.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/containers/img/rancher_k3s_local_cluster.png_0df5176c78b563025cc593b473465ec198d3475fbbbb3472790faadcac3120fe" +path = "../build/minified/site/guides/containers/img/rancher_k3s_local_cluster.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/containers/img/rancher_k3s_local_cluster.png_br_c47a6f0d0dad34105298af97827573b2cab8c2629b58beaa77b9d01d2b1c998f" +path = "static-publisher/static-content/file1408.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/containers/img/rancher_k3s_local_cluster.png_gzip_b9c59286badfee510a6945cc19704fd545a59853d4f3dc533a2ae29e4c107b02" +path = "static-publisher/static-content/file1408.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/containers/img/rancher_login.png_44dfa681df7f6c9aea00df3db899aa5f961381c9193c05de4844cf95c2980d1a" +path = "../build/minified/site/guides/containers/img/rancher_login.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/containers/img/rancher_login.png_br_4549f31d410784ddeaadfc2c1d7fee8aa683df4107ce1ab03ee52ba074a671d2" +path = "static-publisher/static-content/file1409.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/containers/img/rancher_login.png_gzip_72f6387c1687777f02145494b9bb616d7350cc36c21d7b1af1df2055bc5a69da" +path = "static-publisher/static-content/file1409.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/containers/lxd_web_servers/index.html_d78ef329ffe00272760c6919f1e3624b060e35935f382c6b7c218cd92acb2b16" +path = "../build/minified/site/guides/containers/lxd_web_servers/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/containers/lxd_web_servers/index.html_br_ff463c32850a21c534bd26df6ef401451111fa50b9e41cbeadff8437585e21ff" +path = "static-publisher/static-content/file1410.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/containers/lxd_web_servers/index.html_gzip_f0343fef4909bc1a385578bde6ab4356b5f596318c99e52dd1b6292581f93318" +path = "static-publisher/static-content/file1410.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/containers/podman-nextcloud/index.html_9044873909ae605133a03923845509f620989e93586a31051f669f6cd0993c46" +path = "../build/minified/site/guides/containers/podman-nextcloud/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/containers/podman-nextcloud/index.html_br_a7b181758ec13c3c19740ab46119f433be1598c68590c3dbc967109b6949df8a" +path = "static-publisher/static-content/file1411.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/containers/podman-nextcloud/index.html_gzip_c9fd8309dd8318ee9be4f2d732c7f4bf90c7df1a975cb74d84e2be6f8afff1fc" +path = "static-publisher/static-content/file1411.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/containers/rancher_and_kubernetes/index.html_8c49b93ebb36b6a51316ad0a9c0a5a7af3c747ebcb25c38f43848eae5cd56552" +path = "../build/minified/site/guides/containers/rancher_and_kubernetes/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/containers/rancher_and_kubernetes/index.html_br_629552b377448860a5e0642232ea39e046be4cd765772e57d1eefa44c924b650" +path = "static-publisher/static-content/file1412.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/containers/rancher_and_kubernetes/index.html_gzip_350d5176a44e856413b20ca3ac94776c2cd221b39432fe3c8449d2973e1e735b" +path = "static-publisher/static-content/file1412.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/contribute/beginners/index.html_8427e0a96fdc78b2f6dc91ae79fb12bea4f7e6f106bfed3e7102e05132395374" +path = "../build/minified/site/guides/contribute/beginners/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/contribute/beginners/index.html_br_df07c3671f5e1c367cba7686991f77e40a4033fed61f10243cdd983bb4ad7c80" +path = "static-publisher/static-content/file1413.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/contribute/beginners/index.html_gzip_e0d7a021617f8b882834d9a1598d729e189147d47bfb27b9a0e9b01cda643093" +path = "static-publisher/static-content/file1413.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/contribute/copy_option.png_3b7b0ced15616035ee19cbb91670adabcbd5978d1e879c56b45c8efee280b4b5" +path = "../build/minified/site/guides/contribute/copy_option.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/contribute/copy_option.png_br_8c5978093cdc9bcb9f196044da50d7aaa158de8a128b8509ff183c3abf88bcb8" +path = "static-publisher/static-content/file1414.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/contribute/createnew/index.html_013c63898d275af1d573ab5779505c8ebae08a00386fefd830c6c2ccb3813414" +path = "../build/minified/site/guides/contribute/createnew/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/contribute/createnew/index.html_br_9848daec4a2f3c7db4646c4e8af3e4ac9344f356142b751d922b9aef17aaddbb" +path = "static-publisher/static-content/file1415.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/contribute/createnew/index.html_gzip_b2553aba828f1c533a0d135d444a9c4ca1116950635f2ce92e881eaaa2a9ca5f" +path = "static-publisher/static-content/file1415.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/contribute/index.html_8c81c742c37856b1d84fab774a11eacb09ba3f2c3262f6a12fd38145e9317064" +path = "../build/minified/site/guides/contribute/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/contribute/index.html_br_1b5c83b90292aae8a654b591fbc9e6f4914072c999f49aff04073d108b1d5f01" +path = "static-publisher/static-content/file1416.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/contribute/index.html_gzip_3a49caf4faef05cda6e14a1ca7d7c1a750a6c69173a5b76f3fdbe2938efae5b8" +path = "static-publisher/static-content/file1416.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/contribute/localdocs/index.html_4a34737a3b58a53289effecc59e02feec7c28f1b4e17fe26447952c13936548d" +path = "../build/minified/site/guides/contribute/localdocs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/contribute/localdocs/index.html_br_05ea685ccfd94de2fd52a6dea907461c5ae209209fc83f69bb2a4a8c462a95b5" +path = "static-publisher/static-content/file1417.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/contribute/localdocs/index.html_gzip_924f9a98db83a197b8b0c3b1c7157a64f4aeccae5a88b6e3c9325adda5a6ca24" +path = "static-publisher/static-content/file1417.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/contribute/localdocs/local_docs/index.html_5ebaa75d4589f43e2e02b4eb2ae1693b191f58ac510e64caa84b0262238c9922" +path = "../build/minified/site/guides/contribute/localdocs/local_docs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/contribute/localdocs/local_docs/index.html_br_d002c1cb08f619aeef7468afc0e7e8c8b4ff63c812fb414303cd3b62689cedb7" +path = "static-publisher/static-content/file1418.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/contribute/localdocs/local_docs/index.html_gzip_df990f681eb8bac1e88bb4400229d659954459a6a692cd65f92818ea4743ffb3" +path = "static-publisher/static-content/file1418.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/contribute/localdocs/mkdocs_lsyncd/index.html_1be2d793e994cd1d8d0aa3e42c0aa99a273d25f44501cf1c0de215d0a3a26e5d" +path = "../build/minified/site/guides/contribute/localdocs/mkdocs_lsyncd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/contribute/localdocs/mkdocs_lsyncd/index.html_br_8c70b136cdc2e32e15f04cf66cec5b8a2c7635aee7e224da478ac086fabcf2c6" +path = "static-publisher/static-content/file1419.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/contribute/localdocs/mkdocs_lsyncd/index.html_gzip_853e427c5720bd85d2223f00687482704e68d67a1446e647729c37a3e3343643" +path = "static-publisher/static-content/file1419.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/contribute/localdocs/mkdocs_venv/index.html_5910470a43c615b1277ff670bc33dc264030ece07162ad1f3bd629f99d526d2c" +path = "../build/minified/site/guides/contribute/localdocs/mkdocs_venv/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/contribute/localdocs/mkdocs_venv/index.html_br_8c9da40052b68e2e28f61bfa55bc99714d0343fe5f108d04b7e6605c52df95f1" +path = "static-publisher/static-content/file1420.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/contribute/localdocs/mkdocs_venv/index.html_gzip_aaad63083f286d1633a8ac010a8ff2106e2c78832d26fd61afd010ece32a2969" +path = "static-publisher/static-content/file1420.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/contribute/localdocs/rockydocs_web_dev/index.html_2bf50aa911f7309445f976205ddf26ef6cd4078223a8ab58a695bc7e7632f96d" +path = "../build/minified/site/guides/contribute/localdocs/rockydocs_web_dev/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/contribute/localdocs/rockydocs_web_dev/index.html_br_84e804c717345f74a8ac8b0454bae113ec7945e030d0dde438747e732412244b" +path = "static-publisher/static-content/file1421.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/contribute/localdocs/rockydocs_web_dev/index.html_gzip_d040be11421665d3811c4037b9cd784d8adf6ab6390489d59331b88ad061be6d" +path = "static-publisher/static-content/file1421.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/contribute/localdocs/rockydocs_webdev_v2/index.html_57de31fed39014848040eee1f17b31cd1876fc093ced392071facbab7805da32" +path = "../build/minified/site/guides/contribute/localdocs/rockydocs_webdev_v2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/contribute/localdocs/rockydocs_webdev_v2/index.html_br_668cec7d67f96a312ecb372e1b90cdb0a6e431e1c6b8f2fe7593594bc5bcf8dc" +path = "static-publisher/static-content/file1422.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/contribute/localdocs/rockydocs_webdev_v2/index.html_gzip_336cd3c5e94e986677efc27e8d7c1997ed309145a2da33648b4a1d93b9488254" +path = "static-publisher/static-content/file1422.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/contribute/navigation/index.html_fb6abe4cd124e998565036f2d78cacd46116b53fd632926569706f6047f2f7a4" +path = "../build/minified/site/guides/contribute/navigation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/contribute/navigation/index.html_br_49bf41190c19a14c8bc3bf9add290c8bb1912df114f250d3cb482877a1b8d57b" +path = "static-publisher/static-content/file1423.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/contribute/navigation/index.html_gzip_6ee815b529f8f1a2cfa1e148b69f64f692051ede3d9518c42c90edbf797c65d1" +path = "static-publisher/static-content/file1423.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/contribute/rockydocs_formatting/index.html_698259039e1edc9ad4ad889c9aa1925ebaafc445b71d26368d74666d50483202" +path = "../build/minified/site/guides/contribute/rockydocs_formatting/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/contribute/rockydocs_formatting/index.html_br_a9fc4130ccc6216ef1b3af578dc99be176cdfef2d52ef0ac6aafcbdf4d76a6a2" +path = "static-publisher/static-content/file1424.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/contribute/rockydocs_formatting/index.html_gzip_c4be7e9185fdb86956b50b0a35b0a2d014d3aa37ddb7ce6748a469efdbb5cd94" +path = "static-publisher/static-content/file1424.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/contribute/style_guide/index.html_44272ace37eea4675da25a84a05276fe1e0aa4e82eb34c4fcc5f4ec663bf10c1" +path = "../build/minified/site/guides/contribute/style_guide/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/contribute/style_guide/index.html_br_34f07b757cc6c773c5dfaa0a78caabe299fe752e733cc70d160d9733ad80d6b2" +path = "static-publisher/static-content/file1425.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/contribute/style_guide/index.html_gzip_5fee21b6fa9f5ef5e86c9c50269f6ebbf1086336a4f4f27c938b5e54e871f537" +path = "static-publisher/static-content/file1425.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/custom-linux-kernel/index.html_90aea62c7737e3d35dbc8579f36b3f0205296a359ed6033ad7d1dd30fc07984d" +path = "../build/minified/site/guides/custom-linux-kernel/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/custom-linux-kernel/index.html_br_694815f1af77a937e530bcf07eabf79ace6537baa44040cb5345b5b7ba9a5b64" +path = "static-publisher/static-content/file1426.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/custom-linux-kernel/index.html_gzip_8c2e546f71dd9af60311fde571a114e4016ce666038a4dede33df8a0e476c3c8" +path = "static-publisher/static-content/file1426.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/database/database_mariadb-server/index.html_e63721540fac4fab35a8d7ac03585f0220f642c743704c931dfc025731ee6a29" +path = "../build/minified/site/guides/database/database_mariadb-server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/database/database_mariadb-server/index.html_br_a3987fa11a2b111dffd5d0b0705afb3eadc8b562f303e26fed7b1f8a29945137" +path = "static-publisher/static-content/file1427.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/database/database_mariadb-server/index.html_gzip_9db21a2983b594c3e5e625a95af64cfdeef06688a3d29ec1dc2f2c08d6b205f5" +path = "static-publisher/static-content/file1427.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/eula.png_60843e54a9c3a1c8b15e2ff3deb324a46a4b59e38b1af5a6f2be9a8e842c83a5" +path = "../build/minified/site/guides/desktop/images/eula.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/eula.png_br_2487459e8c25bcd79f21a9e1677872254999e912c6b51b5234b951e765f20e1e" +path = "static-publisher/static-content/file1428.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/eula.png_gzip_5270be9d0f1ac0b012c5c92b72c0c87e4e842ce382b539d730408f044c0e124b" +path = "static-publisher/static-content/file1428.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/kde_boot.png_c9de107e876b28fb54cdb8623a2abe404f52ae4e08c2185302ef4f871d246eda" +path = "../build/minified/site/guides/desktop/images/kde_boot.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/kde_boot.png_br_91694f72e77d0659cfc6f7b12096500f39ef6ffa41ccdeb48a114d9466e077e2" +path = "static-publisher/static-content/file1429.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/kde_boot.png_gzip_a53dda5574377bc82dfcc8c08f0675e918617a57d8097a969c923ea60ae2ff98" +path = "static-publisher/static-content/file1429.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/kde_config.png_6b06f57c29c49cc6c6bc7cc82fe51b565dcc64fcb2f4f772c1060007eafb3e59" +path = "../build/minified/site/guides/desktop/images/kde_config.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/kde_config.png_gzip_08661efa32a67e6b903ff40629feb9e4240748ca768ae1b9e10c3acf6a746db8" +path = "static-publisher/static-content/file1430.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/kde_finish_config.png_f621df7c4eade92f791c2425881a83f3d8e55ae8c4b7f25ad0b6238e2dbc2f92" +path = "../build/minified/site/guides/desktop/images/kde_finish_config.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/kde_finish_config.png_gzip_71c8dd718a98e0d003e1cf3cf61b861e88b14ed5705c8176c3db51e6f3eaa151" +path = "static-publisher/static-content/file1431.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/kde_install.png_832ecb2bf5abc0ae00692bc9a447864b317f14e518c38e854ab60a9663142835" +path = "../build/minified/site/guides/desktop/images/kde_install.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/kde_install_2.png_fdbfec64cf9d6e4daebb3dff8a4d16ae4ab6a1cfa60f9c1fa91ef87f6d66d93c" +path = "../build/minified/site/guides/desktop/images/kde_install_2.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/kde_install_2.png_gzip_c23109ee8bc286358447339da1dce0824069738b53db28b83e47ad39f98efa2f" +path = "static-publisher/static-content/file1433.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/kde_install_final.png_e5645b3f5c60c46f1d2d7612eb5b575ccbcd678f5f0fe9602983a18d4ebc1751" +path = "../build/minified/site/guides/desktop/images/kde_install_final.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/kde_install_final.png_gzip_598af5e8bcd0c84a33cc76c852e39ae1309a85ecfeb6508ac6cd97346d7d7d69" +path = "static-publisher/static-content/file1434.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/kde_language.png_379fe2e22928ef0238f80c8db86cd61287428c9ef035d6f41fc0fdbbab4508f8" +path = "../build/minified/site/guides/desktop/images/kde_language.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/kde_language.png_gzip_a249ccabb14184d7e8bcb7fcc4282c2f78bb3d8daba63ffdb12c13cfe4c7fbee" +path = "static-publisher/static-content/file1435.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/kde_live.png_4381435ec2f0f2a84b85f7c000b09b82163d9413c8f87973a761f3d62d60eb0c" +path = "../build/minified/site/guides/desktop/images/kde_live.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/kde_screen.png_420d56942afc6a458486f0f558ec59dd73a337da121be92754968710dc503ef8" +path = "../build/minified/site/guides/desktop/images/kde_screen.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/mate_boot.png_f5168c33833fadd3e528739926b803a542d83f922616b279265d389bf1c602bb" +path = "../build/minified/site/guides/desktop/images/mate_boot.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/mate_boot.png_br_9c94bd39a340bfd82b1be88f9f903db2ea3478dd439650fe800ddd6591a0b97d" +path = "static-publisher/static-content/file1438.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/mate_boot.png_gzip_22f72bc62c94190fa213e03ae4b5f8e8cf398a4d662217d0e6ec8dd5c60d5557" +path = "static-publisher/static-content/file1438.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/mate_desktop.png_82c811bd95c2daba061f566153d264ffca18f12fa303cbb2bca54791b3be5ef7" +path = "../build/minified/site/guides/desktop/images/mate_desktop.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/mate_finish.png_0d6f5f2a6e355cf74d7717108a04cdb3e00713b586ecf629800dd89af20406e4" +path = "../build/minified/site/guides/desktop/images/mate_finish.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/mate_finish.png_gzip_222ee584756333e36d6cf4ad049120e8b29efa73b286a113473924b87d61f553" +path = "static-publisher/static-content/file1440.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/mate_install.png_3785a8ce102aa63f15da831ac3f5935b9838d10e7040bc2bdfa3fd9b3b8d018b" +path = "../build/minified/site/guides/desktop/images/mate_install.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/mate_install_2.png_d255d70bd9f818fefc321136f2b70606bb76d525d01e86336be78bc2e7762f58" +path = "../build/minified/site/guides/desktop/images/mate_install_2.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/mate_install_2.png_br_728f66d237d9af81f16b4af65d620fbfd78fdd94cc1cbf45576e1674e4da2f3f" +path = "static-publisher/static-content/file1442.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/mate_install_2.png_gzip_dc8b6f3af33d36b65688dbf85631a8bb6304056aee1ecf076a5bc79ebdfb74e9" +path = "static-publisher/static-content/file1442.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/mate_install_final.png_f66be8d42daaaed8d8c52a2925705416e4613ab2042db06b67f246e25fedb8a8" +path = "../build/minified/site/guides/desktop/images/mate_install_final.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/mate_install_final.png_br_0dc8b4e7a4d10ab84d42ee341ae961e375e5c429a4980e8ea0d1174199a16584" +path = "static-publisher/static-content/file1443.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/mate_install_final.png_gzip_0a6ca29c747f1c9bccd8d3428dbfb5193a7516e0ef32cb3716cf6e79181b2421" +path = "static-publisher/static-content/file1443.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/mate_live.png_a6d99f3c7d57b19cceef0a6d898b7af10acb6f393997d381b0b0427295758f27" +path = "../build/minified/site/guides/desktop/images/mate_live.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/xfce_9_min_1.png_c49e5f4e741d764bba181485c80d02f06a401b8d2cdaa37d8033afb7e80db36b" +path = "../build/minified/site/guides/desktop/images/xfce_9_min_1.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/xfce_9_min_2.png_210cf5f45f2be6b314cf748ac945a5204721928963f5abeca870c80fd7c21314" +path = "../build/minified/site/guides/desktop/images/xfce_9_min_2.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/xfce_9_min_2.png_br_ece552a97cb6c6a0344de5478bf19505e8e2973278e56e95efcbd51cef74c7df" +path = "static-publisher/static-content/file1446.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/xfce_9_min_2.png_gzip_b3858a728f4544f609c63252f17fb127cb54d0128af18eedb4fa30fd5e3ed530" +path = "static-publisher/static-content/file1446.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/xfce_9_min_3.png_a40ff5754521bf2e49419dfeed84593e1e9f923b5470bf12e6bd51f55406d9b0" +path = "../build/minified/site/guides/desktop/images/xfce_9_min_3.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/xfce_9_min_3.png_br_9953c185ea5a9453bad35154c4e10bf3fcd4fe312ecd69d1b9373c4348afeebb" +path = "static-publisher/static-content/file1447.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/xfce_9_min_3.png_gzip_a6ff6c597ed0ab5b471dc71440fdcc44ea866d51f71ae1f94bdb3ba51cc695b3" +path = "static-publisher/static-content/file1447.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/xfce_9_min_4.png_c1306b0335d68314a125b113945288339d69e2cfaf4a0ef7f7c52648c467a47f" +path = "../build/minified/site/guides/desktop/images/xfce_9_min_4.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/xfce_9_min_5.png_857c5ea911d7e0001000028c1c227dbb536de41f9e5a5418a36285bb6e7579bf" +path = "../build/minified/site/guides/desktop/images/xfce_9_min_5.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/xfce_9_min_5.png_br_5325366865388e49c3e3a8ade895a885175ec56433d93b9efcde792c31a6c353" +path = "static-publisher/static-content/file1449.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/xfce_9_min_5.png_gzip_ca1eb4afa03281d6bceb61d60548f85ee64a4946de9815e3bb7b5a9f8a721af1" +path = "static-publisher/static-content/file1449.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/xfce_9_min_6.png_11119767a2af68108bcbcf02948002f30dc0e4f657ebd110bdb9163e7de0f9f8" +path = "../build/minified/site/guides/desktop/images/xfce_9_min_6.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/xfce_9_min_6.png_br_9424e3e9c7a395951fd7807d2422aea86997dd8993f375dd6a95d626659669f1" +path = "static-publisher/static-content/file1450.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/xfce_9_min_6.png_gzip_4c8dcbcd9914e208df9d3736b321b63c253ea84821213ba7cbda8e3194bbf5e3" +path = "static-publisher/static-content/file1450.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/xfce_9_min_7.png_ab374de3cdfd4b57c8ef6e176db7cd442c84c44784573cc71af4fd3e75f52b43" +path = "../build/minified/site/guides/desktop/images/xfce_9_min_7.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/xfce_9_min_7.png_br_1c54381adc219537cb6f5dfd73ff82fc5892bba7a8a193b5da881df5759ac493" +path = "static-publisher/static-content/file1451.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/xfce_9_min_7.png_gzip_3c972e0827f88198d9f2eb72c16b7ada0555597f193ee5b39c25b4e1779dc969" +path = "static-publisher/static-content/file1451.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/xfce_9_min_8.png_7330644018bd3a95ffa07db0f387b79a48976ba313ab0d29752b839fe738d27d" +path = "../build/minified/site/guides/desktop/images/xfce_9_min_8.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/xfce_9_min_8.png_br_36a68260ce84141c0a806a0744b73525ee8c6565b57d2bdf3752394a72b13965" +path = "static-publisher/static-content/file1452.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/xfce_9_min_8.png_gzip_64654debe645b2fe7c08d4ead2e5a336eed0f572345094152b00bd2b39cffb81" +path = "static-publisher/static-content/file1452.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/xfce_boot.png_1e19300e25ead9d923d9ab93fa02d17266a59f1d6c23f7c5ec0985738ea53d59" +path = "../build/minified/site/guides/desktop/images/xfce_boot.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/xfce_boot.png_br_b8a30b294ae9669e80c06b9f2ef0ba216128ea21683e69d807c249792fa7c7ac" +path = "static-publisher/static-content/file1453.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/xfce_boot.png_gzip_de33b0e88a2674bdb8a2ee5c8f75c453b2605d0cfec058c0c341b89c8525cb60" +path = "static-publisher/static-content/file1453.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/xfce_desktop.png_ff1705cd4743d2993c10938930a31c5e0c3f03de6447078fb4614efd948b0f13" +path = "../build/minified/site/guides/desktop/images/xfce_desktop.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/xfce_install.png_9b3f80487bc86d471905a4a8d2753fd5b4323c221bea17b7aa4022a4d3b95549" +path = "../build/minified/site/guides/desktop/images/xfce_install.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/xfce_install_2.png_da2a572c98e0387cda6ac6093c89e2fdcad7b9d837d16ea6f23c5f0ccc0a55ef" +path = "../build/minified/site/guides/desktop/images/xfce_install_2.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/xfce_install_3.png_ec2ed79eb941d784f623b853320ee2707af9bc7dc5f0c1d854c90ef3e74cc3e8" +path = "../build/minified/site/guides/desktop/images/xfce_install_3.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/xfce_install_3.png_gzip_a4c557a083559746857bef40e648a4b8c00adf6ad6364e0827fafe68ba32c2bb" +path = "static-publisher/static-content/file1457.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/xfce_install_final.png_eb01eec72468eb41ff558609c55b2f96a8d86629d15eefb8d3f93d95c0e91e66" +path = "../build/minified/site/guides/desktop/images/xfce_install_final.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/xfce_install_final.png_gzip_b6981bd70e9e4937b1198339205306003d209f0c76d7b9b2163e6ae425ac8bda" +path = "static-publisher/static-content/file1458.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/xfce_language.png_d9d10c9d28d362026cbf4ad9d763973aa0e46cb721583703a49cb6f422bec4a7" +path = "../build/minified/site/guides/desktop/images/xfce_language.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/images/xfce_language.png_gzip_644c403074491c782ff71f81e20133151ad8335f4bc1bfd9cb8b584c2db77454" +path = "static-publisher/static-content/file1459.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/kde_installation/index.html_35f617175dd49eabe521e8ce23febe18d38605613d40a3d8e1a03564f9d2fbd0" +path = "../build/minified/site/guides/desktop/kde_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/kde_installation/index.html_br_8e087222cc7e50848b84ae566da78fa74d40c6cddca933f5b3a505b0c85fefbd" +path = "static-publisher/static-content/file1460.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/kde_installation/index.html_gzip_28d4c2079e649ec6ce22c62d4186ea564448837f884846c2b2c04b9b7de4abf3" +path = "static-publisher/static-content/file1460.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/mate_installation/index.html_02828dd7e1c8bb77374b6e6d2b80415360e390729e5757782190346954d746a0" +path = "../build/minified/site/guides/desktop/mate_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/mate_installation/index.html_br_c74fec685090cb7bf978dd59ad3133030f84f9e9610c2da632f86103111ab418" +path = "static-publisher/static-content/file1461.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/mate_installation/index.html_gzip_3b851940d4398deabf17ca40a29168f8788d02fc335c405d8aa2fdb1ddbe5b74" +path = "static-publisher/static-content/file1461.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/xfce_installation/index.html_0995bd48353a283fbc9197603262847e8a4a442eb1c3b842cd5c507d684e6334" +path = "../build/minified/site/guides/desktop/xfce_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/xfce_installation/index.html_br_12bc9818cd853242cd68b1ff554386b8edabf089ead0472183b0f89bb009512e" +path = "static-publisher/static-content/file1462.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/desktop/xfce_installation/index.html_gzip_05afee7b6e5223522b3b4b861f67dbc2526005095c082e8cacdeba23187b791d" +path = "static-publisher/static-content/file1462.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/dns/images/dns_filter.png_f3f5733bb28c3ae8340cf664186aa6c74d123a0270bcab62659cc7fd49ac681c" +path = "../build/minified/site/guides/dns/images/dns_filter.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/dns/images/dns_filter.png_br_5fb758d4eb6b5d9b27cf549c5511011d6c2336c54383596bfcf3a81fc8c4f4a1" +path = "static-publisher/static-content/file1463.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/dns/images/dns_filter.png_gzip_acddd462dafa3fd6bf3f4311023459fc0e297fb5a43ec35bea558dd49ed8a20b" +path = "static-publisher/static-content/file1463.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/dns/private_dns_server_using_bind/index.html_5e96a16914e3d6fc1b8996fb668d1632f1b4adb8e2be68b79b93a12a0323e20d" +path = "../build/minified/site/guides/dns/private_dns_server_using_bind/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/dns/private_dns_server_using_bind/index.html_br_448a5be685921422947f4d09e7ee2bbbfccf0d66bf1812337e2d4daba69365e3" +path = "static-publisher/static-content/file1464.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/dns/private_dns_server_using_bind/index.html_gzip_f16991c1e9e8683825bc468021ec3c63cfd4c216dcda8d039b91721fa3256efe" +path = "static-publisher/static-content/file1464.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/editors/images/font_nerd_view.png_9308a2d5ccef073b46c94688d4dd72594e9251d33f9973a8d9669275a91d9b63" +path = "../build/minified/site/guides/editors/images/font_nerd_view.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/editors/images/font_nerd_view.png_br_0161c1aa69ffdd40a6cbc713f46716aed281555c5fc26b6d7f627b7d4dc3bb9f" +path = "static-publisher/static-content/file1465.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/editors/images/font_nerd_view.png_gzip_bcb34364080ebed89b8d20ee829f4cabe6ebe7fe8acfe5527cb4b338f10240c6" +path = "static-publisher/static-content/file1465.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/editors/images/micro-text-editor.png_a8ca7b437a3dc9d3628c0cc64f3447e1d5f62f3187d42eadadc14dd8792916d5" +path = "../build/minified/site/guides/editors/images/micro-text-editor.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/editors/images/micro-text-editor.png_br_96e6e0f235de368b5e6f4cafc4db745212716552e97af468281fc504c21f9a58" +path = "static-publisher/static-content/file1466.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/editors/images/micro-text-editor.png_gzip_2852be1562da7e8f5057c730c5662e0bd04f2dc1921b5f8cf55b70b81425e88f" +path = "static-publisher/static-content/file1466.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/editors/images/nvchad_final.png_dc3d23d58a0e7bf8659b663a0fddb15695919c019a87db59dd6f7fa90604089c" +path = "../build/minified/site/guides/editors/images/nvchad_final.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/editors/images/nvchad_final.png_br_d274676ed1d0df6578eb08bd94eacebfc945a9f722e51d85239a910b99e23bb0" +path = "static-publisher/static-content/file1467.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/editors/images/nvchad_final.png_gzip_b3d65178fbbb82b609be77a4a8b8d7f3047bbb8c2a05d7d455e627f9cc51ae51" +path = "static-publisher/static-content/file1467.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/editors/images/nvchad_init.png_5a482bc7cb035fa443cf8df1f0dce80490f8ebbff3f95be11560df9b3c383760" +path = "../build/minified/site/guides/editors/images/nvchad_init.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/editors/images/nvchad_init.png_br_183a7947e7134062e55db80b08657127371a9294461d7c37385903d9657d960d" +path = "static-publisher/static-content/file1468.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/editors/images/nvchad_init.png_gzip_c4dd4cee68722fb01fe709c0308553da1cb4eba8af833814871bbe2fb45ba7e7" +path = "static-publisher/static-content/file1468.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/editors/images/nvchad_rocky.png_5a393c14ae6d3165ba1549769b19f4e0f9020279e94092e09de679ac1c1bcf37" +path = "../build/minified/site/guides/editors/images/nvchad_rocky.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/editors/images/nvchad_rocky.png_br_fada3ce7f4d9f6eaefec1cde53352b153b223c765e56feba4934636117e9f6b3" +path = "static-publisher/static-content/file1469.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/editors/images/nvchad_rocky.png_gzip_c6c57f8ab0bec0c98be5a88cc557363b57128cbe34c3b041d5f3a9bc1d6f5aff" +path = "static-publisher/static-content/file1469.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/editors/images/nvchad_themes.png_01b7a36c7dc87af6bac7d50d65b662ba741b759149a0b680eae0fab438affc92" +path = "../build/minified/site/guides/editors/images/nvchad_themes.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/editors/images/nvchad_themes.png_br_1dd99d2a1b78d08719f6de7413ca3272de5dee8fc1d3d6e6d2b9d7839b1bbde5" +path = "static-publisher/static-content/file1470.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/editors/images/nvchad_themes.png_gzip_c83f1a4fa527bceb20cc3fc60f978950fc6dcb7fd57ba13f625960a3e64fb8f3" +path = "static-publisher/static-content/file1470.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/editors/micro/index.html_404957cc07182636991185f032630890471e8e0ed8076de53d3064b838562856" +path = "../build/minified/site/guides/editors/micro/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/editors/micro/index.html_br_0cbb25b535aa461bfceb1b51493424ffa4360e720fcf93da0762048c5e6cfbb3" +path = "static-publisher/static-content/file1471.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/editors/micro/index.html_gzip_c8a062b99d12a2ee0b250e5d70230d0e5d846dcd22a61b39f7ec43a918101592" +path = "static-publisher/static-content/file1471.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/email/01-email-system/index.html_94b74ec35a0260677ccf110f3734d5c67ec40931a199fc016a9063f96191fb7d" +path = "../build/minified/site/guides/email/01-email-system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/email/01-email-system/index.html_br_7af387483856476b14b58a1ba891c6655bdbc30e73d849206d0b904839f5603e" +path = "static-publisher/static-content/file1472.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/email/01-email-system/index.html_gzip_32300b98613e2338a71ad4873cf80e842fadf26489d53f2266e9069a87f8c864" +path = "static-publisher/static-content/file1472.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/email/02-basic-email-system/index.html_f330d191293d9a3bbc97786530dff810100e3d1b7cd13ac5f805261ec39a46fa" +path = "../build/minified/site/guides/email/02-basic-email-system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/email/02-basic-email-system/index.html_br_23ac9a2e09a86668d5c0d9f39bf30feef1a22c39067b7279a3cc71708c1c93e0" +path = "static-publisher/static-content/file1473.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/email/02-basic-email-system/index.html_gzip_ca0e17b0ced3ee7a9def81ff2a5d8a1df1782776c51ce89676c17d0796606c9c" +path = "static-publisher/static-content/file1473.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/email/email-images/Wietse Venema.png_d4e108c0271e6f94fc4e1936b6a2fe8e22907f37533bbbdf98d0f20bc82a95a7" +path = "../build/minified/site/guides/email/email-images/Wietse Venema.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/email/email-images/email-system01.jpg_a624d240cfe1f72a70a87cc8bd355407d0ba9557512dba86ba1bf589909dc88d" +path = "../build/minified/site/guides/email/email-images/email-system01.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/email/email-images/email-system01.jpg_br_27c6ea18c57c115fffb2e2a49e9cef7e8612d3d8a4446aeb5f1ad761482abc10" +path = "static-publisher/static-content/file1475.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/email/email-images/email-system01.jpg_gzip_7fa61ed44b081107ab929ac0058e04cda3af557b4c348178f6fbee4446289a80" +path = "static-publisher/static-content/file1475.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/email/email-images/email-system02.jpg_76486b4e9fb8c1dc7680cfe90231dc482992a591834aa48a37d4581b5cb08bb3" +path = "../build/minified/site/guides/email/email-images/email-system02.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/email/email-images/email-system02.jpg_br_1d4945d2df9bc9847b277f6a8e7885ad7301aada1b01b9fcd470c85172ac0189" +path = "static-publisher/static-content/file1476.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/email/email-images/email-system02.jpg_gzip_23c186e3266cb3ca64678ff393f31a2f900a700db262e913bde36e37456744b5" +path = "static-publisher/static-content/file1476.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/email/email-images/email-system03.jpg_777cd93204e996e2eb67ebea1954363079771e1381bf718522c15f3f856f68a4" +path = "../build/minified/site/guides/email/email-images/email-system03.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/email/email-images/email-system03.jpg_br_f8a868199bc5988653921b480bf596ede610a4d2a9c64c3f6930d1bb263c1147" +path = "static-publisher/static-content/file1477.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/email/email-images/email-system03.jpg_gzip_8046d6c83ef94d61a7e1c349aba6f4ea1b83467342eb0dc76caa4a5cce204f6e" +path = "static-publisher/static-content/file1477.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/email/email-images/test1.jpg_d3df77ce85a2855d44c4fcffca5f5a915f4060d2c7066dfc93f25a21fe849d70" +path = "../build/minified/site/guides/email/email-images/test1.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/email/email-images/test1.jpg_br_7e56d37455876c7a4290eef9b6b72067377e646b056cb4030f667fd2b86480a0" +path = "static-publisher/static-content/file1478.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/email/email-images/test1.jpg_gzip_59a50a905a76332263957cccb897760c0b74cfbcf82e33e7b35d213c930e8464" +path = "static-publisher/static-content/file1478.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/email/email-images/test2.jpg_a3d852f6ea6790c2f0fb44c302b23c2a69f14a7cebbba834f939a9e7e5ffaffe" +path = "../build/minified/site/guides/email/email-images/test2.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/email/email-images/test2.jpg_br_aa6627818d7cdc45670b4a701da184d8003c08354bbedf8b333360e7fc794c79" +path = "static-publisher/static-content/file1479.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/email/email-images/test2.jpg_gzip_771e9e38e85f19e98566b64c271bff1be145257fdb701ca52d56e649054d912b" +path = "static-publisher/static-content/file1479.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/email/email-images/test3.jpg_b3d808b9c57c7a7a6026963ee68f8035863c092ac52af93ce420522eb022a8ff" +path = "../build/minified/site/guides/email/email-images/test3.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/email/email-images/test3.jpg_br_9974ac7052f59e8f5aeaae50a08a6b25b65fbc14facbc10a75beb63cd907948b" +path = "static-publisher/static-content/file1480.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/email/email-images/test3.jpg_gzip_8cbcda89d67dedc3443d3becaf674eb88e3c73496d56217a92327f1c3c294bc6" +path = "static-publisher/static-content/file1480.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/email/email-images/test4.jpg_0f71f6ae8020c00a0e56904dcdf71120435d9c1af27c1f36cd049ccb70c2d693" +path = "../build/minified/site/guides/email/email-images/test4.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/email/email-images/test4.jpg_br_81035302a30d213a75d0f0aa91ac3d8552c59019bf94b004b4ff1bb347fcdb06" +path = "static-publisher/static-content/file1481.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/email/email-images/test4.jpg_gzip_635197eaa0618800fc6f8d94ae31e0b8b0b295f2fbc166f86d60ada1c52e8ede" +path = "static-publisher/static-content/file1481.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/email/postfix_reporting/index.html_fc801933c348e0298935af4314d1d2d93bde2382616431d89d8ad1fa0c6c1d50" +path = "../build/minified/site/guides/email/postfix_reporting/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/email/postfix_reporting/index.html_br_227f395135776f636e28187ec38f0f5e5e4965164337a6414ba7220dea16188d" +path = "static-publisher/static-content/file1482.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/email/postfix_reporting/index.html_gzip_af7b1b71c4df4fd5863367c2a8cd5e0ceaa558ae6e2ca92a6fa87d8efdae2d95" +path = "static-publisher/static-content/file1482.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/file_sharing/glusterfs/index.html_833da0ee38e523635deace47a8051f62025a05c09ba5015b932ac408331b1634" +path = "../build/minified/site/guides/file_sharing/glusterfs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/file_sharing/glusterfs/index.html_br_975a9ffcbbd55eab9178bf4104707d6b3a69f9ab15ed5be8f62cb22e6ae0432e" +path = "static-publisher/static-content/file1483.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/file_sharing/glusterfs/index.html_gzip_38ba7899a97d2c1b14e3e664e0d01459a94eea8e93aa2d46bf1300da9968a208" +path = "static-publisher/static-content/file1483.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/file_sharing/nfsserver/index.html_9678eb1d118e21611872415c14b1e7dffbd0722773b30b59fd550b6df6b3d799" +path = "../build/minified/site/guides/file_sharing/nfsserver/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/file_sharing/nfsserver/index.html_br_92d928bc88b59dc93de238adf9bca40f0784b1d005d4c731ce3a0bbb8f6412f8" +path = "static-publisher/static-content/file1484.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/file_sharing/nfsserver/index.html_gzip_44537231f1340a69721aeb7ac1c7a73d030476d1ad396f986ecedc158bd254cf" +path = "static-publisher/static-content/file1484.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/file_sharing/secure_ftp_server_vsftpd/index.html_527730f6b49a0818390ae649ffc256811206d2bf78bc7006b89259c82bf4e38c" +path = "../build/minified/site/guides/file_sharing/secure_ftp_server_vsftpd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/file_sharing/secure_ftp_server_vsftpd/index.html_br_ac2456f82c5bb2e435bcfbe61bb3a5de62865d04d2fec73ca540a35f95851209" +path = "static-publisher/static-content/file1485.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/file_sharing/secure_ftp_server_vsftpd/index.html_gzip_cf514e5fb1916c19262af715a91d3daf3a3888ab72f62c40662ac83367408a4b" +path = "static-publisher/static-content/file1485.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/file_sharing/sftp/index.html_4378c4daa705276ecc9d2ba4587513cd52ba03ae50589d42c979fac352e38d03" +path = "../build/minified/site/guides/file_sharing/sftp/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/file_sharing/sftp/index.html_br_9cbe8882225052f10a3135a5a4b911c2e30b0a71fb4ff15c84597242e632775f" +path = "static-publisher/static-content/file1486.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/file_sharing/sftp/index.html_gzip_cb7acc12e3d96bcc243fde384fd651329e78f5987a0ee93acb898c5d9b805859" +path = "static-publisher/static-content/file1486.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/Il01-kernel.png_b9106df770cac084be83b16f864a7890d7a20fc647a8e71dc07d4107a3e7d6a1" +path = "../build/minified/site/guides/images/Il01-kernel.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/Il01-kernel.png_br_a46c81be1a30713ab8951f75752a03aca5954055a17d03465d9dfb8beb2eed0f" +path = "static-publisher/static-content/file1487.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/Il01-kernel.png_gzip_0486d96a7f47662d2bf9837cc7026c23ce5ec4fa4132888a4b51b9f230b7c8d6" +path = "static-publisher/static-content/file1487.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/Il02-kernel.png_957008d53f960d1c60bbc4c118f0cbd7effe3a2b53c1efd7bcb7f8968520cf62" +path = "../build/minified/site/guides/images/Il02-kernel.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/Il02-kernel.png_br_e4ae634cbff3526b3cb780ea2465e0ec0f67deb12871d48fe0f012b0d9ad5fd6" +path = "static-publisher/static-content/file1488.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/Il02-kernel.png_gzip_7724c0db5457ad4355a8770a37c8d2bcc94cc49943478dbab0b583cd96c6f2f8" +path = "static-publisher/static-content/file1488.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/Thumbs.db_0565c285b8b08b6b4d920132f069803fe51898a95a8dadb758cbb55b526e9181" +path = "../build/minified/site/guides/images/Thumbs.db" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/Thumbs.db_br_18379f8b2f30d159f9b8a8ab6414bbcfbad149797015d2a48790cd1259f8f61d" +path = "static-publisher/static-content/file1489.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/Thumbs.db_gzip_ca81a08e80914c7c743e001b633b0b7005adf7c727ea127f492f72789da837c9" +path = "static-publisher/static-content/file1489.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/anacron_01.png_5016adf32c148eb76f5fcdcb23afe210e20a9f19635dd07970ace154bf47fee2" +path = "../build/minified/site/guides/images/anacron_01.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/anacron_01.png_br_c43712aebf892ddcd7c63ca23549659c844603dc1b17a9ae556286ea27848c48" +path = "static-publisher/static-content/file1490.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/anacron_01.png_gzip_6096dc65ddf6b92956af198d26b0d5a86ceb8faac70d442041cfd1985c038f3d" +path = "static-publisher/static-content/file1490.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/asterisk_menuselect.png_77f39574c662c494314410dbf0ee59b0b291497f30fa4ec44171832ffb522273" +path = "../build/minified/site/guides/images/asterisk_menuselect.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/asterisk_menuselect.png_br_0f5d07728024fec827a18a4c2cbad039c3700612196d8bd91c7cf77d7d0335e8" +path = "static-publisher/static-content/file1491.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/asterisk_menuselect.png_gzip_e4fd8dd90620863f0729008bbf498df737238bbeaaba490e0c2a1db1d6b00082" +path = "static-publisher/static-content/file1491.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/caddy_example.png_23ca40a6f200053986d785e920054c5cde6c35546acac632c9887341b7b63305" +path = "../build/minified/site/guides/images/caddy_example.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/caddy_example.png_br_8074271072ebfd6edca24d87b52e1edfb90bca63be42f95c53e68196574ab8aa" +path = "static-publisher/static-content/file1492.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/caddy_example.png_gzip_3004e05ade27c744c41b532829c150de95ab7009a4bd947dfa60d466602d2391" +path = "static-publisher/static-content/file1492.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/caddy_php.png_d4c2d4f463d292a88c3da47c46cb44543bf314a4c8a7588bd0847f7e65b28361" +path = "../build/minified/site/guides/images/caddy_php.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/caddy_php.png_br_bfa3addad85c55135633a0995b0c77e0e84fe1b7c32d8ae6fa3abeb9546c6d49" +path = "static-publisher/static-content/file1493.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/caddy_php.png_gzip_c29669df183db5a70b56ffd36777edc1082504f020248c5e65187735a2081905" +path = "static-publisher/static-content/file1493.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/cockpit_dashboard.png_4c210f77260a5f50f1383d2143f0943ed2a88a693f55b8f066425f04bcb0bd25" +path = "../build/minified/site/guides/images/cockpit_dashboard.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/cockpit_dashboard.png_br_b1953962710f410cc9fc955e13157eb7d4c172d8c3216220e4f0a102955bc16c" +path = "static-publisher/static-content/file1494.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/cockpit_dashboard.png_gzip_3deced52d3a71eb8a03cfbaa9f0eff55cdf2a57ef8a1275ed619cc84486d093c" +path = "static-publisher/static-content/file1494.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/cockpit_login.png_d9121910d6aa58d9e2b0ce9df4095e808b5372303c2e00141773b00d1cdbc197" +path = "../build/minified/site/guides/images/cockpit_login.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/cockpit_login.png_br_dcb8cd399aaac6336d63402720d915973bbac7447ad66556cd811e7de5146588" +path = "static-publisher/static-content/file1495.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/cockpit_login.png_gzip_bfa979466462cfedac62221504b8cc2b73392f86b2f349a0f3e6336aef12c6d9" +path = "static-publisher/static-content/file1495.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/cockpit_root_dashboard.png_0a4e50b92b2042c252b1ece99255cfd69d4bc60ee5f7d91795d92ecca50e69e8" +path = "../build/minified/site/guides/images/cockpit_root_dashboard.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/cockpit_root_dashboard.png_br_2b73d861db3d043e41cff229bf681004c19d9a50d23a872919be52921d7c1835" +path = "static-publisher/static-content/file1496.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/cockpit_root_dashboard.png_gzip_60e53da307544cd8059b282cf04f9e268d6808c54fb50eb4104412f1c9727d3e" +path = "static-publisher/static-content/file1496.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/cockpit_vm_create_1.png_4e0c4cdd29682ae52d8a8bb6e03da567834fa6d4eed88b6b8538346ee7a632db" +path = "../build/minified/site/guides/images/cockpit_vm_create_1.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/cockpit_vm_create_1.png_br_3a0a378bdd8e4226b8fc9c9e3deec0d56aa8318b538a1d71ad6355d462539eb4" +path = "static-publisher/static-content/file1497.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/cockpit_vm_create_1.png_gzip_6962525cf26e79e7e81aa29af7495fec4e3f2b85d87885af7a71d2a28dd93e2b" +path = "static-publisher/static-content/file1497.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/cockpit_vm_create_2.png_c78d6ef32241664d341ab80b9ce1610c6515db14456fed837d80a2414f210ef2" +path = "../build/minified/site/guides/images/cockpit_vm_create_2.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/cockpit_vm_create_2.png_br_68d492e15d1ccf618fa333ae17caac070cbef1e2aceb846c2a0e1748a724cf31" +path = "static-publisher/static-content/file1498.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/cockpit_vm_create_2.png_gzip_b2d2e9420b33d2c2d5ec6728f6c57e15bdba86204140d5f09d27d300b107832a" +path = "static-publisher/static-content/file1498.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/cockpit_vm_create_3.png_94b8260c79ef0cf296a6598bb15a6ff84b0ca674167d42f5964d7f3c61e583c2" +path = "../build/minified/site/guides/images/cockpit_vm_create_3.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/cockpit_vm_create_3.png_br_8faf26f3d9ed075ab343ff74216389c3113bade66b17fe1f3c76fae926c1381f" +path = "static-publisher/static-content/file1499.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/cockpit_vm_create_3.png_gzip_2362470aeebccc91dac30732d33a6d1a6191f03987ba785a710a0bd8bf288fa3" +path = "static-publisher/static-content/file1499.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/cockpit_vm_dashboard.png_ea8d56112db7e1961c986a3effe2069b2500618c8ca962eaa17378279e1787a3" +path = "../build/minified/site/guides/images/cockpit_vm_dashboard.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/cockpit_vm_dashboard.png_br_6a6d468d435946e87c6294c1a0b82d0fd0352447d6031c277c25f4229656f952" +path = "static-publisher/static-content/file1500.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/cockpit_vm_dashboard.png_gzip_931599c47e3031ed060516a71e7d664e022a9521eb28efd05c2dc9f11b60c53a" +path = "static-publisher/static-content/file1500.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/cockpit_vm_ip.png_142f04397b6d695927e080361149fe11efc5ce205002bbc237cc8c37ad1016b8" +path = "../build/minified/site/guides/images/cockpit_vm_ip.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/cockpit_vm_ip.png_br_68f559c872244757547f360120640b1021b1e2e9f27a4ddd5514b36ce6888b86" +path = "static-publisher/static-content/file1501.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/cockpit_vm_ip.png_gzip_dd124597d621a41b6325bcb698343720c51a62b2792ab12e6c79367731d043a3" +path = "static-publisher/static-content/file1501.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/cockpit_vm_terminal.png_4f1d36269f1958d6a76f5bd6f2370c764c0d152d040e9ecb62f677294f015fdf" +path = "../build/minified/site/guides/images/cockpit_vm_terminal.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/cockpit_vm_terminal.png_br_c96cabbd339acd4a23bf5406af207cbc932121581636e0ce854d7b3c66a71608" +path = "static-publisher/static-content/file1502.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/cockpit_vm_terminal.png_gzip_d39c2e02e6c2851645489b82491af5c0e5c4110f7be445966be7c376c89a357f" +path = "static-publisher/static-content/file1502.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/gw_atomunstaged.png_08b4f40c8e9d5dbd30fd19faa9588cb30eed7990964a47e8261b467366a084e9" +path = "../build/minified/site/guides/images/gw_atomunstaged.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/gw_atomunstaged.png_br_a3d5ee26cfe231d0169afeefce778f46ce86c59b59b435c192b5a6fffb429d75" +path = "static-publisher/static-content/file1503.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/gw_atomunstaged.png_gzip_ee68e1c85493bae7fe1ba675482962b560b8741110ab477637eb086992b1e1ad" +path = "static-publisher/static-content/file1503.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/gw_fork.png_aa2edbe9c0282a3995bd3ab4dac9c921bf84a8f1085f7389f2bd92220a284106" +path = "../build/minified/site/guides/images/gw_fork.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/gw_fork.png_br_67bfe89fd2a7d34c2bf43eda7401e58dee62f2df3886a44c41ccac7add5d47fd" +path = "static-publisher/static-content/file1504.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/gw_fork.png_gzip_ea80e6759f06d869249853f4e20bf06011b8a9cd6cd17f08e36e3611705dacf6" +path = "static-publisher/static-content/file1504.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/gw_gcbranches.png_70b3e3f2e6f3945dcd1344271f0c5cb8b7d8f4c9ce1e31edecd12f7825ea31dc" +path = "../build/minified/site/guides/images/gw_gcbranches.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/gw_gcbranches.png_br_fc2338426e2373390cb7d6d555b8af381cc4ff5fc9cf4c935ea4cccfd61878c2" +path = "static-publisher/static-content/file1505.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/gw_gcbranches.png_gzip_ed3559df9fd12bfe2b696309d8253e4626de7e85bc42f8c88b9192074695cfa8" +path = "static-publisher/static-content/file1505.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/gw_gitcolaunstaged.png_d504e9851a1c63b017ea055368941b44e232c9cf6bf0ef17874b70704379a0d7" +path = "../build/minified/site/guides/images/gw_gitcolaunstaged.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/gw_gitcolaunstaged.png_br_c771767eb5c5410e3b2f4a9685c95e0deca523f239481235a863ca4189cc8e3d" +path = "static-publisher/static-content/file1506.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/gw_gitcolaunstaged.png_gzip_6be51574c506fb4dbcd620cb676fc16db5b2806b487f412a5b53f70c78cb2065" +path = "static-publisher/static-content/file1506.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/gw_greencode.png_4c4d216d8079b87ccf622c5846a32ef0277e94e8fc113796aa24735cfcae39ba" +path = "../build/minified/site/guides/images/gw_greencode.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/gw_greencode.png_br_8d6e00d95757100544b5816b6f698a55626c67b600f8ebf9b01386714c029216" +path = "static-publisher/static-content/file1507.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/gw_greencode.png_gzip_544d79e0d95289d8c1e59afb0b4ec2cfa3f4c7e5bef0a6ad6e7cd993aac6a324" +path = "static-publisher/static-content/file1507.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/gw_sshcopy.png_828a82e5732e07b3c522a3fe3ea4a6f857c06d1685bc044b372dd7f449fdc260" +path = "../build/minified/site/guides/images/gw_sshcopy.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/gw_sshcopy.png_br_eb65cbde3189a3c2219f4cac5543ddbed6389c4f5f7602c7db759864aa07d53b" +path = "static-publisher/static-content/file1508.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/gw_sshcopy.png_gzip_58f7bfff0bfa6959252a294f2d21d6c8668570b7f930e3368ff60748c309431d" +path = "static-publisher/static-content/file1508.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/haproxy_apache_lxd.png_a0d7548d179ff178aed9f487da9048475e702552955376b0fd671f865a853632" +path = "../build/minified/site/guides/images/haproxy_apache_lxd.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/haproxy_apache_lxd.png_br_3d582b84e423907761a7fe6db46029abf4aad6261e9ef7f7de08e20af940afb7" +path = "static-publisher/static-content/file1509.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/haproxy_apache_lxd.png_gzip_a0504164ae033b415d20cb458f7be6993568f08fabc2663061dfb3b694830c65" +path = "static-publisher/static-content/file1509.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/install_8_9_01.png_2c3e68942374eb9cb41600dcdd146c34ad4433b8507c701ac928eef783b236be" +path = "../build/minified/site/guides/images/install_8_9_01.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/install_8_9_01.png_br_a111093a5e5246cbd4a4908545c104fd945d72a733a366770ebac09f84faed8c" +path = "static-publisher/static-content/file1510.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/install_8_9_01.png_gzip_98642b92d768b0657352a2776f521aca48aad42e2a83f88db5153f3f9bc6fe30" +path = "static-publisher/static-content/file1510.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/install_9_3_01.png_e21937f33675772af919a78967a21208f00d0fa86d21c4f5d1788b55f990a882" +path = "../build/minified/site/guides/images/install_9_3_01.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/install_9_3_01.png_br_4d2f59f705754d7f96f62cb95b6f2582753a1b1c1624c4f9f9ecc0595f6582a8" +path = "static-publisher/static-content/file1511.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/install_9_3_01.png_gzip_512639c0fab0db999a3e12809d003f90648555e8ed44baf28164bb54ae269395" +path = "static-publisher/static-content/file1511.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/installation-F01.png_0f814f82944dcef4fa51c2b59e6cf8f3a3cb2dcaf00d2cc15028160d602118c3" +path = "../build/minified/site/guides/images/installation-F01.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/installation-F01.png_br_59d2678d7d0c916d8984ce88a41bf77a819c5adb85b8829b61ec35bd387a2787" +path = "static-publisher/static-content/file1512.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/installation-F01.png_gzip_5a8ca8f60e9f0769e301e1761246273b69e2a461a4a2a1af6a9d41204a1b9b32" +path = "static-publisher/static-content/file1512.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/installation-F02.png_ede2e4d221759c9723587a42249ef0d188663fee84171dd111a9098dca834eaa" +path = "../build/minified/site/guides/images/installation-F02.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/installation-F02.png_br_50116fbf115fe0b587900abcd5f0486c04926e9311794b8d28b08a7616120cac" +path = "static-publisher/static-content/file1513.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/installation-F02.png_gzip_6b10f0e309af3d433489fbe0b1bda16c5674a448c4dc3829433db1a21bc5d1dd" +path = "static-publisher/static-content/file1513.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/installation-F03.png_81f4f998b62d776ce28c709104c35c36bc634ddfd38b9d5ce3720715e0208895" +path = "../build/minified/site/guides/images/installation-F03.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/installation-F03.png_br_d46a61ffbadbdd8dd5357ee8ab417bd6d3989f32b046955000bebdbba144ce16" +path = "static-publisher/static-content/file1514.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/installation-F03.png_gzip_0d1e5e08544cff6bc69afaafcf0c4face9fa42d3a1d6fd4c6abee95dd3adbe0b" +path = "static-publisher/static-content/file1514.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/installation-F04.png_45e7332a1ad456b2975d989306f18ab9118a03586471259d430ab781bf2f283d" +path = "../build/minified/site/guides/images/installation-F04.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/installation-F04.png_br_9af8c4560415766fdf8b5e982064c5b76a620589b194ea010224c33e6b67fd91" +path = "static-publisher/static-content/file1515.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/installation-F06.png_e93ad70aadea220da658c205a7c50274fe81624f903b44935c285cc44ce59c50" +path = "../build/minified/site/guides/images/installation-F06.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/installation_8.5_F01.png_7cdf5ccb847ffc46b225955495cc9eb10b41a1b8a9ec82a736314efa7d23a9e9" +path = "../build/minified/site/guides/images/installation_8.5_F01.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/installation_8.5_F01.png_br_276cb0b8210d8fd698067119ab1cd97523080c673a6a6b94c26dfca5f5cc1c11" +path = "static-publisher/static-content/file1517.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/installation_8.5_F01.png_gzip_1cee48cd5f4bd7c9aefbe8a151a524541ba0fa6e505f98cca634de9e5c6e38b5" +path = "static-publisher/static-content/file1517.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/installation_8.5_F02.png_3751fce313fc39236d7512e2228987f5992720e6043bce1e373892a3a4f47185" +path = "../build/minified/site/guides/images/installation_8.5_F02.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/installation_8.5_F02.png_br_5488ead83bb53d39cfbd2c76b4b418541923cbca75b3e4de5f8942cce466a2fa" +path = "static-publisher/static-content/file1518.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/installation_8_F02.png_a5662eb36f749d8c6ac361023439debe9af9e70a8b424e241639b9548727f524" +path = "../build/minified/site/guides/images/installation_8_F02.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/installation_8_F02.png_br_8bd541374be33f75f7a63307c4b99cd758bafecfcc57ec0f89110e73e7020bf4" +path = "static-publisher/static-content/file1519.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/installation_8_F02.png_gzip_3eac13417f50deb7f02281fb13aa759cfcfd8fa7787ed73f31a3f5f646f6b041" +path = "static-publisher/static-content/file1519.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/installation_9.0_F01.png_48b7566073b8303499158b4cfbf13663b797b720ed2fa3e7b7b5299b294220f4" +path = "../build/minified/site/guides/images/installation_9.0_F01.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/installation_9.0_F01.png_br_142907af53491a9f820459d22d3f0fb43fcab781bc1197e6970ce66496a9b245" +path = "static-publisher/static-content/file1520.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/installation_9.0_F01.png_gzip_f22b2945ab55eb7e62747a679c08dee24183f6681c3dd3dddaf196eb30da80b5" +path = "static-publisher/static-content/file1520.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/installation_9.0_F02.png_d7b6b86b0493fcbb05bcccebed5928541ca72ee41320000cf0bea40d733ca8f9" +path = "../build/minified/site/guides/images/installation_9.0_F02.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/installation_9.0_F02.png_br_3444303e0c484955ae88a29c2ebd86c3a74e13e157eb2f8a686bf6ffd5dd742e" +path = "static-publisher/static-content/file1521.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/installation_9.0_F02.png_gzip_0a499fc6c8417ea0e7adb970f03d0381257625a5ca35ba54c4ba86947e1386d3" +path = "static-publisher/static-content/file1521.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/installation_9.0_F03.png_b9f7a5591bde7b8980ab49e1f25fdb2211bb900644608b2ce2fe424d4f509850" +path = "../build/minified/site/guides/images/installation_9.0_F03.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/installation_9.0_F03.png_br_c38d9ab722fa05756f8ef5a38e5dc75a823c2d39e274f912e78debae2a6c9d9f" +path = "static-publisher/static-content/file1522.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/installation_9.0_F03.png_gzip_a6e068743889269af62235a071728f19567f0dad12ffbc0f8124aa7fc5cc2a38" +path = "static-publisher/static-content/file1522.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/installation_9.2_F01.png_c6ec8368c34e29c4009042f6bedf0cc0a3cc8d5682739da4f0fe986da2934a15" +path = "../build/minified/site/guides/images/installation_9.2_F01.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/installation_9.2_F01.png_br_836ff46562a6e85c79dfa6907c9840dec30083063f15e0502f7f346cb9ee9153" +path = "static-publisher/static-content/file1523.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/installation_9.2_F01.png_gzip_6d4d2bbec54ae3d51acddb693659134c894ceb4aa0cfca1d68f09a09a74bef97" +path = "static-publisher/static-content/file1523.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/installation_9_F02.png_cc8c45b180770987ba50072012cc738c00395a57160144fae2a6b9a79b7eff8f" +path = "../build/minified/site/guides/images/installation_9_F02.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/installation_9_F02.png_br_e7191cf089065a6601d4decf4a1c49515327a47cca6ab33192c11de04323e266" +path = "static-publisher/static-content/file1524.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/installation_9_F02.png_gzip_5621096ef958eabce2eeda05734f86fca1cc27ebdf05e6903ecfa95ac25e7ae9" +path = "static-publisher/static-content/file1524.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/librenms_add_device.png_7ec0c5eb86ccb5589e20416d36b2de5da1a56ee7325247b2aae919a63f3b03f7" +path = "../build/minified/site/guides/images/librenms_add_device.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/librenms_add_device.png_br_45f0b4f0cb1b36eb292988e9e804ede0ec00262efe314a4aef52c2790226230d" +path = "static-publisher/static-content/file1525.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/librenms_add_device.png_gzip_2a8880cb84d6322e921faccb723a97f5502d1251d11207207b4e8b02d71cb243" +path = "static-publisher/static-content/file1525.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/librenms_administrative_user.png_f53662eb5bc76d71a3f9fb3e96fcce8dc6c7bfc2aa3b8cc216461ec2933cb8ed" +path = "../build/minified/site/guides/images/librenms_administrative_user.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/librenms_administrative_user.png_br_60195c63a5dacad04395873ae18abc4ac001386c11c23dabcfb25bb516686d0f" +path = "static-publisher/static-content/file1526.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/librenms_alert_rule.png_d4a98ec45ccf89f0e0a742341a88265daed5c076f1686b029d8cc5521cc911fd" +path = "../build/minified/site/guides/images/librenms_alert_rule.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/librenms_alert_rule.png_br_3b1c83c5171e8daeef71819520d31e5407732ef0482dd1f407428e2e715b3a12" +path = "static-publisher/static-content/file1527.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/librenms_alert_rule.png_gzip_8fd67fd3a5397db5c132af9b57ebf5738ca1fee6d7b08b4d9e6129c4b3d0cb33" +path = "static-publisher/static-content/file1527.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/librenms_configure_database.png_01d8598e3429529a56b22e36e364e6667667a42e0328ea1f141590b4a59b33cc" +path = "../build/minified/site/guides/images/librenms_configure_database.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/librenms_configure_database.png_br_b3bd5ae4630fda8fc321b766cd851c4fffa57a7edd65d0897d9a012746da9980" +path = "static-publisher/static-content/file1528.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/librenms_configure_database.png_gzip_d4c65bc44b963e4650bd6a59b4501b1d10790c4e98b034ab51d3899c9c0115f0" +path = "static-publisher/static-content/file1528.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/librenms_configure_database_status.png_366193f52e52085daf1e15808f357777f69dd30d22461dc67afe38c1c71a4caf" +path = "../build/minified/site/guides/images/librenms_configure_database_status.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/librenms_configure_database_status.png_br_33f1a93f7ed7421da86d49e5a048b7731a0a574690bc32dc45d815f20f1ec47e" +path = "static-publisher/static-content/file1529.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/librenms_login.png_12d7e254986ee5e69297299dcdb79f042ea2a6fc8930517cbb817a1a630ea486" +path = "../build/minified/site/guides/images/librenms_login.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/librenms_login.png_br_87fb95b2c4ce5e646224f7b4190a18e65797f21b4baa45a25fee571caac21368" +path = "static-publisher/static-content/file1530.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/librenms_prechecks.png_b724ca1dac56f41d31c3faaeeb493fbb70daaca56dee818337c444a7bcbf2dc3" +path = "../build/minified/site/guides/images/librenms_prechecks.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/librenms_prechecks.png_br_b13181888bfe366f11aa163248bb11d20bd7b42173e1eaf5b28ddbfec0fe6648" +path = "static-publisher/static-content/file1531.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/librenms_prechecks.png_gzip_403edc90520bfb694e07e8f4fb78405a561d2d5d3c15ccb01dfdbf0ea98e62c1" +path = "static-publisher/static-content/file1531.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/lxd-web-server-01.png_323f1b9100ab71b0cb23d0db4a017fb10cb3d326b16624183ae337b0b8c9ca9d" +path = "../build/minified/site/guides/images/lxd-web-server-01.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/lxd-web-server-01.png_br_90f60070429d6f4928b76c305f282e966edb60c9f2011a78900d870ff32441c0" +path = "static-publisher/static-content/file1532.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/lxd-web-server-01.png_gzip_a1907800de8bdc8e3ea973c51a3244ed2362f76d5c4ec461c3e340615bfbb103" +path = "static-publisher/static-content/file1532.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/lxd-web-server-02.png_7a8af351669627df637013f078a35c88155fcc882a5590efac7db7e92e82b102" +path = "../build/minified/site/guides/images/lxd-web-server-02.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/lxd-web-server-02.png_br_b31247c634a976faca5069ec3702d153a94dd244dd64513d900b37b87029f15d" +path = "static-publisher/static-content/file1533.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/lxd-web-server-02.png_gzip_2c179e21bd43c00438c87f2705d98e6fd7fb151f5990299a004bc03f3a6192a0" +path = "static-publisher/static-content/file1533.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/lxd-web-server-03.png_e794f5e40237239fea4187c09c9f9e8fa478153fa228f533326f846e5506fa8b" +path = "../build/minified/site/guides/images/lxd-web-server-03.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/lxd-web-server-03.png_br_8b1b1a1ed3990449ef811f77b9058659d23a38c28d6a769bb700b116cd825872" +path = "static-publisher/static-content/file1534.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/lxd-web-server-03.png_gzip_ae3947123a7d72d583b1a4ef565f2f9dea3a79579b459206a5ae527df9c5a8b0" +path = "static-publisher/static-content/file1534.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/lxd-web-server-04.png_c68dd50bea15e9189cc028b92e24374be68a97c5e41466017b42dda99030dda6" +path = "../build/minified/site/guides/images/lxd-web-server-04.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/lxd-web-server-04.png_br_2f58045d9d145619f25140b2ecb9bedfb36d1a95d4faebbdfdbd10f7a311f5ff" +path = "static-publisher/static-content/file1535.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/lxd-web-server-04.png_gzip_696e20053f54d3a1ab1e7632bc05d811b45b912c3e995b554f2cd4e059c4a30c" +path = "static-publisher/static-content/file1535.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/migrate2rocky-convert-01.png_d84921fcafd27a5c33f116fc436939dfe3fb1e952753b9f14d6f5dd9268a29a8" +path = "../build/minified/site/guides/images/migrate2rocky-convert-01.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/migrate2rocky-convert-01.png_br_bc090e14a67f938c0dbeaf869cb4403aef8fb7d17ceecf6dfbe7ca8f6cb0a591" +path = "static-publisher/static-content/file1536.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/migrate2rocky-convert-01.png_gzip_2bae7ad94573417da411189c897fa2819ead90d5688e1f2c4b5f5041fdca308f" +path = "static-publisher/static-content/file1536.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/migrate2rocky-convert-02.png_15937dc88a955d12ea04b9fd57e433b63d7f1cfee63543ad6ef0d4f286fa0dc6" +path = "../build/minified/site/guides/images/migrate2rocky-convert-02.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/migrate2rocky-convert-02.png_br_c59e0b7834537362afc29d35bd810b171c5cb13a1e02c3ee48206596ea898183" +path = "static-publisher/static-content/file1537.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/migrate2rocky-convert-02.png_gzip_e5a499fba2df1b0d8a1958348b8110ff85f6a4c1e101a5332834845e0fbd6753" +path = "static-publisher/static-content/file1537.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/migrate2rocky-convert-03.png_7f851bf245ab37db90b3961546439d1b9ed8870be0269a177e4ee63b71efa4b9" +path = "../build/minified/site/guides/images/migrate2rocky-convert-03.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/migrate2rocky-convert-03.png_br_c8bcd7870e24ccb56b3a24d00e68c59415790670d4f98f949751f27f31d85c73" +path = "static-publisher/static-content/file1538.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/migrate2rocky-github-zip.png_551d16ab958705c3acb29c5a01e2f06fa58fae9024e19a8d14e7e9bac8db84e9" +path = "../build/minified/site/guides/images/migrate2rocky-github-zip.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/migrate2rocky-github-zip.png_br_60697a5268c02e6cdbdf9c2867cb05dedfb6e8e5ec04248277823db75b38e720" +path = "static-publisher/static-content/file1539.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/migrate2rocky-github-zip.png_gzip_ef10b1c122530b324f9be67cfccf52bfd192ca615f84c68a6e616c181a27218b" +path = "static-publisher/static-content/file1539.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/nextcloud_screen.jpg_c4a6f7b991ee3f34c6c2277e8e7a3c3fb1f0b189a0f547321cbe9789311b4f77" +path = "../build/minified/site/guides/images/nextcloud_screen.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/nextcloud_screen.jpg_br_89526997f375d96389fc4dc2dc4c8121763b1c0d09bffcdaa5187aeb39d085b7" +path = "static-publisher/static-content/file1540.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/nextcloud_screen.jpg_gzip_0b08dc3817ac31d5a6690603054ec6c643d818263c451ff8a4247b236451e793" +path = "static-publisher/static-content/file1540.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/onion_service.png_bfd657cdbdff7ca7955f382be59d598df040dd990b660d6095d6be71356157c9" +path = "../build/minified/site/guides/images/onion_service.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/onion_service.png_br_4d42aa35563c8640573acaed3bb869e1cfaa617acb020b9b683229927c30482a" +path = "static-publisher/static-content/file1541.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/onion_service.png_gzip_818c54cc945eb432f6b2f8046de6dcda7d3aaa5b110ae97fe6789e8ffaf70cb8" +path = "static-publisher/static-content/file1541.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/selinux_001.png_b8d27f5b23c120d946b11cd6ac8896829e856ae357067e28a61536373a8efe0a" +path = "../build/minified/site/guides/images/selinux_001.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/selinux_001.png_br_1bf0ebd5941f632ae52b2f1fa0548a84dcee00fb5c89ea87ed7b98a729abc0ba" +path = "static-publisher/static-content/file1542.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/selinux_001.png_gzip_4f5900c1f5b82b484754f1960f144d35b0ada656138eb8f7a5394037410ea2c1" +path = "static-publisher/static-content/file1542.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/selinux_002.png_cfac1dec9601a533509df3114ced37f5a02d73debfa9cc4f501f458cadb60aaa" +path = "../build/minified/site/guides/images/selinux_002.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/selinux_002.png_br_68fa68194c247c12ea9c69ca4c7c600494ef721f4544b21080522c93eb287339" +path = "static-publisher/static-content/file1543.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/selinux_002.png_gzip_d1d2dc35b02666450034d1678323c4e6f2aac20498cf7cb407bbacd95a7aa63a" +path = "static-publisher/static-content/file1543.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/selinux_003.png_dd6fe4a915ec3f7f94d276da9ed4f9ca914a08d55c2b7bf05b49a3db97a2c679" +path = "../build/minified/site/guides/images/selinux_003.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/selinux_003.png_br_b4f9976009bfa8af69c8dfcbbea537bc0f36b233f7b0c4af85bbf474acf1864f" +path = "static-publisher/static-content/file1544.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/selinux_003.png_gzip_a33562cac223c883d5b8a6b77ed066a7f83bf29fffd2ab58f509a0c7453f51c4" +path = "static-publisher/static-content/file1544.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/selinux_004.png_7cb663e8b0c7d14292801b57b1bf07353eb4c365974dc03b812570d52d07ff7f" +path = "../build/minified/site/guides/images/selinux_004.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/selinux_004.png_br_2be8377910c8be8d768a9267c1bdb8de8495c0a181f27a84692d0fffc628b973" +path = "static-publisher/static-content/file1545.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/selinux_004.png_gzip_7c46f78fd620d918234b9624702e076e5cf69ebde66585be8e239665c9cdb067" +path = "static-publisher/static-content/file1545.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/tailscale_1.png_28f6f9d257dac9c1e01e3cb123d809716548758b31b8e2965fc12306fec2e38e" +path = "../build/minified/site/guides/images/tailscale_1.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/tailscale_1.png_br_beb7719dfd2c5980b775613d8dc68d25654444bed3e7fd8f3034e9491ff106fe" +path = "static-publisher/static-content/file1546.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/tailscale_1.png_gzip_fa9c8fe55a9581fcb6479e15b74903a70bf5ae2166698938f67b4dc79cf26d5d" +path = "static-publisher/static-content/file1546.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/tailscale_2.png_9ab8bcc5aefb063f489dd780bc0c03b12c662e1cfb70bfe875a9a6265123f750" +path = "../build/minified/site/guides/images/tailscale_2.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/tailscale_2.png_br_cc0693a103e6c030937875c70bc43ba82049439d9bd67bd162a3843f8566f85f" +path = "static-publisher/static-content/file1547.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/tailscale_2.png_gzip_d6fba39f609b08307e5455f893d01da5d8752eff117cb46223802141c7eaa0c8" +path = "static-publisher/static-content/file1547.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/tailscale_3.png_3f76df7f250708d5467d59411831a99469fbdd1af0b634176f82843afb381c3a" +path = "../build/minified/site/guides/images/tailscale_3.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/tailscale_3.png_br_9b30d12df9ec0896b0c25dc7da1371588e8ac982e0b8c221faf670e9bf32b988" +path = "static-publisher/static-content/file1548.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/tailscale_3.png_gzip_d944ca4c7cfba1ddbb4eee47330b0105e18ec0b76c55fa026a1da9d1dfc9d7dd" +path = "static-publisher/static-content/file1548.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/vbox-01.png_c44bc244df77b9970b8428370270f728c2e5eb94feeabdabcccb70dfac799a01" +path = "../build/minified/site/guides/images/vbox-01.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/vbox-01.png_br_ffadf2479baee91415865bc0f0c490d023cd7be393027af7cf8975b526499a11" +path = "static-publisher/static-content/file1549.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/vbox-01.png_gzip_5e31d883c40ef51da00c0168e192ec07b37c5401b8ffd9e1772eabc312776eae" +path = "static-publisher/static-content/file1549.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/vbox-02.png_6542ab65b27a5f21b4d56752f82e779ba3736fcc5c935dfeb79fd842aa3fe457" +path = "../build/minified/site/guides/images/vbox-02.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/vbox-02.png_br_acd766022b1541171fa46816e9394d706fcc20951a2be5573b484fdc826c90aa" +path = "static-publisher/static-content/file1550.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/vbox-02.png_gzip_00657fcad74549195ea28983f503048e3d1f1de687ce33d2b8ca80dfc6d8bd52" +path = "static-publisher/static-content/file1550.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/vbox-03.png_526a28561619d502e0cafb7cb87c2c4c935e669baeabc32af54d8a93a4d6fd2c" +path = "../build/minified/site/guides/images/vbox-03.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/vbox-03.png_br_e8788557b118b3ac8313d3a940e9da05e3c287e877bed645206ed825378b3fcb" +path = "static-publisher/static-content/file1551.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/vbox-03.png_gzip_e8054b4affdf753066078e66a019a4fcf23747925d48709ad8534f570aecbfdb" +path = "static-publisher/static-content/file1551.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/vbox-04.png_cc2b31a4b39b9a11386dc8123f3fec19597aa2d6e28fecd490e97b870ddee3d0" +path = "../build/minified/site/guides/images/vbox-04.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/vbox-04.png_br_9cb64c19653b7c0739ab802e09cb14722da2304f65a105edb8339ad5d629d975" +path = "static-publisher/static-content/file1552.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/vbox-04.png_gzip_d952cb6afa27e5f9cb0e6c7b11326f408a865d17af5a060911e1297d751f5d57" +path = "static-publisher/static-content/file1552.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/vbox-05.png_f6c8a1072a8d4310e864424af2a675953304707daf579e5e268d3cc6c84adfb6" +path = "../build/minified/site/guides/images/vbox-05.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/vbox-05.png_br_342dde83bfae77625a453e779c066279819696a8b0e2d3da97ca8fea10edbdc0" +path = "static-publisher/static-content/file1553.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/vbox-05.png_gzip_2b6521c8a459427a01416e6b75abc6b3dfd4128ddb475d6fc514ee990e1c2bb3" +path = "static-publisher/static-content/file1553.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/vbox-06.png_164486b38eec3d372ca05cf8de49284ae4aee393c4df2d080a56f4a90e07957b" +path = "../build/minified/site/guides/images/vbox-06.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/vbox-06.png_br_dc12129396ab9a6df3ae770f9299e37bf77e1ec2433d5e5bacc747b15a27eff5" +path = "static-publisher/static-content/file1554.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/vbox-06.png_gzip_38f3b15351c79adfa7903a0df713689480eddfddcee9c1165daa59b2de114bbd" +path = "static-publisher/static-content/file1554.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/vbox-07.png_af05257e7a6c6c8a1f32408247ffccac4b9164f93aeb275ce8ac203251148015" +path = "../build/minified/site/guides/images/vbox-07.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/vbox-07.png_br_476c9c459bb2dc6afeaffd978dfd7015eb9897ce94cadda97046e247c06ec419" +path = "static-publisher/static-content/file1555.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/vbox-07.png_gzip_f7d1ad766dd3b9f91f5c37ccd25a60d709cd71de7aa9fd3eead23ead41d90e37" +path = "static-publisher/static-content/file1555.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/vbox-08.png_a709eb80a06cafd90bedc64080b88e7dbfcdc848f8e3e164bf5c1f3f394bc567" +path = "../build/minified/site/guides/images/vbox-08.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/vbox-08.png_br_b25067e056a20c61a233aa433afc1a903f0126ec6ffbb5540bfa0c14baace58d" +path = "static-publisher/static-content/file1556.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/vbox-08.png_gzip_812a603dc12f4ed4c1e5899ff270a6ee2ccbba1814e3b0d7dba6de00c1c22b9c" +path = "static-publisher/static-content/file1556.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/vbox-09.png_b81c3b060752595d7c9e86d2b4284ee58cdbff13aec083fd61e9ac68bb53720e" +path = "../build/minified/site/guides/images/vbox-09.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/vbox-09.png_br_ac98ec5b862e0e5ae18f2d92778860cc391f7c7fcb18dc6656cdccd92e81e506" +path = "static-publisher/static-content/file1557.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/vbox-09.png_gzip_cc6ff272adec0b79086a506ce81e67a7f215c591e7bc71bc148bb179ed9cd6c1" +path = "static-publisher/static-content/file1557.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/vbox-10.png_b195da22f63c65fadef39a5809634f0912a8d7279d9000aac715142161468a38" +path = "../build/minified/site/guides/images/vbox-10.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/vbox-10.png_br_5285a80c7f405f3e20e8c31a25aaf478a667781fb47af1b8a3e734452a4fa0d6" +path = "static-publisher/static-content/file1558.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/vbox-10.png_gzip_d2a7c2ad1df386ae42cd2e923e0f84d3082f96d11c0f93fea9eaba2744eae64a" +path = "static-publisher/static-content/file1558.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/vbox-11.png_18be8c49e131550e11dcbbfb402d1cb5d788525830e4b32c296fb842976ad025" +path = "../build/minified/site/guides/images/vbox-11.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/vbox-11.png_br_fcb95a00e07d1bc64a22cf1e8c3e2f1289d779c6c7cf34531958cc340624318f" +path = "static-publisher/static-content/file1559.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/vbox-11.png_gzip_ca65c3fb9435893ac50c534263bfd9dedd20dcdec11e160fd9984491075a4104" +path = "static-publisher/static-content/file1559.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/vbox-12.png_3df17ec4c8a41bb2d1c8ea1c86f34e5ad6956bcd0a109ef02a68974d06fb5a36" +path = "../build/minified/site/guides/images/vbox-12.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/vbox-12.png_br_ad414b8865cb154fb4d15e385de2dde0b24d2bd5e3322f1f78b1cc8d3989777d" +path = "static-publisher/static-content/file1560.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/images/vbox-12.png_gzip_1f743892717b3f5acc217090f78f1a677c368a02472de7d98f1b99d6e063bf11" +path = "static-publisher/static-content/file1560.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/index.html_f7be2fa51316915ba0c19d1debd0873b3096bf3e7190fee51c40de8af518dee6" +path = "../build/minified/site/guides/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/index.html_br_b46f4f2d201e04e16430fcafc97711ef59d9a6b9b2e0e1111e82b0536762acb1" +path = "static-publisher/static-content/file1561.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/index.html_gzip_6084aa6ccc56b9249bf14cd63b57b5f88932525e38aa0b241c20727ee8ed571c" +path = "static-publisher/static-content/file1561.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/installation/index.html_3b4befd02a9d184d55fb1161901af4b8666ed1a5e639ed708aafc5bbc9421eb8" +path = "../build/minified/site/guides/installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/installation/index.html_br_86d8700f48f7d34a552afe699f6f4c24e98f54e01172adf1a265893d7896ede1" +path = "static-publisher/static-content/file1562.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/installation/index.html_gzip_7a71433cf90aecada5d362c491cd81e682f79113a16b1ac0d73629308142a73a" +path = "static-publisher/static-content/file1562.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/interoperability/import_rocky_to_wsl/index.html_508700b7a0c4430b34442a6dda02867d7ebb8601310e177c6e0c9c2ab7d1e096" +path = "../build/minified/site/guides/interoperability/import_rocky_to_wsl/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/interoperability/import_rocky_to_wsl/index.html_br_49a438d808858314a8a42c4a4e36d9f73f69e0b6672df57a79b4dd55a3cf540b" +path = "static-publisher/static-content/file1563.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/interoperability/import_rocky_to_wsl/index.html_gzip_5dcb1c0b34d12dd083108691aab7267969779147e28b8d5df9e3f35af990e8d6" +path = "static-publisher/static-content/file1563.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/migrate2rocky/index.html_b592d17ef56847a3bd965250a8b130cb7577faa8dc07a8e09cff6f2ae83c2bf4" +path = "../build/minified/site/guides/migrate2rocky/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/migrate2rocky/index.html_br_cd6a7e36fe733d8f9eb55c215c8e0a67f866662743888094f4caa084c155a33b" +path = "static-publisher/static-content/file1564.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/migrate2rocky/index.html_gzip_0b66916d4ad4c650e72350aa26aa29f668ae3da5dbfc4da369ad3ae05ff33294" +path = "static-publisher/static-content/file1564.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/mirror_management/add_mirror_manager/index.html_6144371b3ee03460863e79837b6048c50d865a506094efd51915cffe1977cdbb" +path = "../build/minified/site/guides/mirror_management/add_mirror_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/mirror_management/add_mirror_manager/index.html_br_e14953433ec168ba3351940c2ca9f97e6ac802520dacd277cc03aa34b325b27d" +path = "static-publisher/static-content/file1565.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/mirror_management/add_mirror_manager/index.html_gzip_5f7ac639e44d520d5e62e53fef68c8c745f04f4b1ff2e4d3030c62656dc5374f" +path = "static-publisher/static-content/file1565.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/network/basic_network_configuration/index.html_6c86067aa7aaaa92013315fec5b01c9d5b285412c65faece9c29353178d3923d" +path = "../build/minified/site/guides/network/basic_network_configuration/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/network/basic_network_configuration/index.html_br_3888a604074f29b9f7d4830fcf5712fca1191bf209272c12e65f7afeacc9f77e" +path = "static-publisher/static-content/file1566.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/network/basic_network_configuration/index.html_gzip_5301b28c19681b127214bcf39757bfa41139ee670b8ee34457e78f306fd8aea1" +path = "static-publisher/static-content/file1566.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/network/images/nmtui_automatic.png_891b2c06680010a9781e54892c7f60a9de61d08396f16966a44ed0369fe0503d" +path = "../build/minified/site/guides/network/images/nmtui_automatic.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/network/images/nmtui_automatic.png_br_7fb0b9debb4035771aec87c1d02c040717afe8476daf5661aa6060b53a5e4a42" +path = "static-publisher/static-content/file1567.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/network/images/nmtui_automatic.png_gzip_0e6d3308bce57824a2763339ea5ca713e7c967aa139558495f766d48ddc10a46" +path = "static-publisher/static-content/file1567.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/network/images/nmtui_edit.png_d5e8d6e1a7e7b463ac309431d03e1c71db1d5b4daa178f13ad7015ec89e7d6fd" +path = "../build/minified/site/guides/network/images/nmtui_edit.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/network/images/nmtui_edit.png_br_b20498c5b7705dc5cf2ad19ba7592ed897517f28ed70f2da690dc5d1721fa936" +path = "static-publisher/static-content/file1568.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/network/images/nmtui_edit.png_gzip_4984764e3358ce40ea132b48485c707a2215d4b6611736d00466418dfde57682" +path = "static-publisher/static-content/file1568.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/network/images/nmtui_first.png_1ca549563e5b3efe9a8ff26fae7955f4f2417786a5df6c834ff96a343f43e4fa" +path = "../build/minified/site/guides/network/images/nmtui_first.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/network/images/nmtui_first.png_br_5ba4473dbcd576953ffc27fdb843fb93e7072b570fa40c0836d1d609d30fbb3a" +path = "static-publisher/static-content/file1569.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/network/images/nmtui_first.png_gzip_c4cebca6b7132c097e90f823207697518db28784d866cf7dced373efc7b0a43d" +path = "static-publisher/static-content/file1569.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/network/images/nmtui_manual.png_df6ae5e9301abbf47f3aab41c57d06a191704a7ba515e0c8038154c6bb08d1d2" +path = "../build/minified/site/guides/network/images/nmtui_manual.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/network/images/nmtui_manual.png_br_72f8fe7c09f5342490547631316503ce72d9197c81b4e7e85718f6b03965b9a3" +path = "static-publisher/static-content/file1570.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/network/images/nmtui_manual.png_gzip_2a4c87d9b47767997d5073611a339a070ee261a5a28d45fdabf493299e133eb6" +path = "static-publisher/static-content/file1570.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/network/images/nmtui_remove.png_f50600d27dccf8dc149bcecc6ffecdb716c7275f7a081b31f6219bf0768782c4" +path = "../build/minified/site/guides/network/images/nmtui_remove.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/network/images/nmtui_remove.png_br_cf13bb761aa39136d419173790dd816dcf353a921f84e45737fd3b97f050b9bf" +path = "static-publisher/static-content/file1571.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/network/images/nmtui_remove.png_gzip_131970161e4a8c3ae2772f7a80585275743823d52579ab3d806e0ae84e823473" +path = "static-publisher/static-content/file1571.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/network/librenms_monitoring_server/index.html_dc2895231b81e5647b9430418e2645bcc2129c9b8f824c74462ad4f9d9e9607f" +path = "../build/minified/site/guides/network/librenms_monitoring_server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/network/librenms_monitoring_server/index.html_br_e55da3df4afa908e3c4b701392b704b2e79665c989b814494a46289c80bb8add" +path = "static-publisher/static-content/file1572.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/network/librenms_monitoring_server/index.html_gzip_682d51d748f6eab5fafc1aea036d7226ceed161490f61c1599c484a2c37ce0de" +path = "static-publisher/static-content/file1572.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/package_management/dnf_package_manager/index.html_67aa0e19d5982022bab8d00ead0de436a4bb50004d394e049a0bcee0b0e92431" +path = "../build/minified/site/guides/package_management/dnf_package_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/package_management/dnf_package_manager/index.html_br_2ba62f7ea04fa58b492e571f1a8190ebc6d9cd13097606c4845a42fd2488be59" +path = "static-publisher/static-content/file1573.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/package_management/dnf_package_manager/index.html_gzip_c600fce593fa831b2061c7973522ede293d82d8cd63b687554bc73a466c4bf47" +path = "static-publisher/static-content/file1573.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/package_management/index.html_a74443d3a1d0912d04a78f8597291fdae96ca716fcc13217e518bcb378000252" +path = "../build/minified/site/guides/package_management/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/package_management/index.html_br_47c1da755d7b7da8f8bd6a1e075b65ebb200742ea07ee6d4d2cb719d18b51461" +path = "static-publisher/static-content/file1574.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/package_management/index.html_gzip_64bdf8d75fd432f88a7d9642c8ea97ebd581f57e76fc4449f1ac0103871d3e4a" +path = "static-publisher/static-content/file1574.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/package_management/package_build_troubleshooting/index.html_e174aea327081df818c9a8e296e8e9c87766757a1bd4eceacfb4b26cdd67010a" +path = "../build/minified/site/guides/package_management/package_build_troubleshooting/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/package_management/package_build_troubleshooting/index.html_br_47ad64bbbcba6ba81c7eae6bdd4d26bc472904c411c332daef20c79d4e9c7c78" +path = "static-publisher/static-content/file1575.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/package_management/package_build_troubleshooting/index.html_gzip_e5dca76b265295f1ff4a5f9a55a31e2231e22e9dd0d250dfab7aa6419f11f90e" +path = "static-publisher/static-content/file1575.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/package_management/package_debranding/index.html_f2be2a8f8ce9da24fb57e0d5c76862ec0ef7bf4e02b4f3bf878919b855ff882f" +path = "../build/minified/site/guides/package_management/package_debranding/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/package_management/package_debranding/index.html_br_7fad24b7c468ce7c9744578b0b4296510f2ecfaa8fe5f56f29acf6d2a892aea4" +path = "static-publisher/static-content/file1576.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/package_management/package_debranding/index.html_gzip_f10d878b79647ce0e25bb90a6f3fa55bbfa84e7284379d85bca0549177eb9567" +path = "static-publisher/static-content/file1576.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/package_management/package_dev_start/index.html_24a623fe04c980dc600b9f5def1b28bbbbb9958a5d0c67872622c5222f2040a9" +path = "../build/minified/site/guides/package_management/package_dev_start/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/package_management/package_dev_start/index.html_br_209ff0b8e21a968a1ef81b9c790273d3588fd2ff2525fdd0816eb0bf9939dc5b" +path = "static-publisher/static-content/file1577.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/package_management/package_dev_start/index.html_gzip_9ce3af254fb2601d281bece7fd7c8d9234ec463d36eadc62c1599a99a162df00" +path = "static-publisher/static-content/file1577.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/package_management/package_signing/index.html_2d4f461cb69c128de25ad29564b5295eaeaa6475e167d620376276a637ad70d8" +path = "../build/minified/site/guides/package_management/package_signing/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/package_management/package_signing/index.html_br_5249086a49b301ab76b6cad59c740120b07e3b8acb7980282bf3f81274086615" +path = "static-publisher/static-content/file1578.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/package_management/package_signing/index.html_gzip_141da1ace96b0097a2d58c9d7202238e22ea3957ce9feace8953a96e10e0971e" +path = "static-publisher/static-content/file1578.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/proxies/haproxy_apache_lxd/index.html_b9e94305cca064a5853016e08153abf59515480c1b75c9871476a5c4e2602922" +path = "../build/minified/site/guides/proxies/haproxy_apache_lxd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/proxies/haproxy_apache_lxd/index.html_br_099d9a16ce960420518470304359b39057e642fc4ba1a397c46800c0cafa9af6" +path = "static-publisher/static-content/file1579.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/proxies/haproxy_apache_lxd/index.html_gzip_7d39d2e0b44374c1312a9549b434a82da3faacb8c33bd3addbb1e0e7e4479eb3" +path = "static-publisher/static-content/file1579.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/proxies/images/pound_apache.jpg_1c6f9a8143b7318b39a881db385f3b4c4cd72dcc79ffeaecc4505f12bee307a5" +path = "../build/minified/site/guides/proxies/images/pound_apache.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/proxies/images/pound_apache.jpg_br_1e04d9d081da4578b63e0f3b8b10047a885e350096404d9f3b73a749f4bffe73" +path = "static-publisher/static-content/file1580.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/proxies/images/pound_apache.jpg_gzip_124ea6e2e08ee6e414a9d38328c42d838ceefeb9e9c92d78237c8f26ea9397f2" +path = "static-publisher/static-content/file1580.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/proxies/images/pound_nginx.jpg_06e40fa1f36d0c7ee5d88737c220514b0b84c086b855c3aba06a9f4224cad0ec" +path = "../build/minified/site/guides/proxies/images/pound_nginx.jpg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/proxies/images/pound_nginx.jpg_br_ff8e5bb026670698c3834847663eeae9a34db10efd0dff7c22555da06b6b5b73" +path = "static-publisher/static-content/file1581.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/proxies/images/pound_nginx.jpg_gzip_505c2c52949da3f76debc18be70961d6e423fd30bd308ad8ef94a6dc860dd17c" +path = "static-publisher/static-content/file1581.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/proxies/pound/index.html_4d78f78fe5691cde7e0ac6dea551024426f5358cfa1df8786834116da5bb84ff" +path = "../build/minified/site/guides/proxies/pound/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/proxies/pound/index.html_br_92c3a4af9530ef80f6b054237204f595e1fdf5b1071452b694dfcf7d2ac5e755" +path = "static-publisher/static-content/file1582.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/proxies/pound/index.html_gzip_02370b7838a7de2068a8dc58bc6dd428b457b59b87d9d66cd3799663a3b590e3" +path = "static-publisher/static-content/file1582.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/proxies/tor_relay/index.html_7fa7cbeca5c53a797362b5de38757ea0eb3b284b50ab3b153301a1b9e3e18e5c" +path = "../build/minified/site/guides/proxies/tor_relay/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/proxies/tor_relay/index.html_br_d12600507a5a7ef8045546d55bcc1f8058c0a2724d35f605c911a1f9a60b458b" +path = "static-publisher/static-content/file1583.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/proxies/tor_relay/index.html_gzip_b4d188053bbf61810a3da482b82166c7d71882246b3c49a4cb5b41d51dbe5710" +path = "static-publisher/static-content/file1583.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/security/authentication/active_directory_authentication/index.html_b78395c01d65289c2ef8ffd61eb8768970469afcce0d3a322f044d878a6502e2" +path = "../build/minified/site/guides/security/authentication/active_directory_authentication/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/security/authentication/active_directory_authentication/index.html_br_c1580cea00793c7ef971d7baaf99fdfb878ec7018f34f7782b15398dba3cb25d" +path = "static-publisher/static-content/file1584.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/security/authentication/active_directory_authentication/index.html_gzip_6dc4f1d942c74aeab39a8b2dd3715f8d6890bd0d1a30e579c931cf2773d919d5" +path = "static-publisher/static-content/file1584.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/security/dnf_automatic/index.html_4b7d911ae234fbee57296a845e5619b16d4c9751e79f9598656de2eea94659cf" +path = "../build/minified/site/guides/security/dnf_automatic/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/security/dnf_automatic/index.html_br_8dbaffd4426d7aad588f308ee8d9ca584dae4f02728d76853571ed76455c4073" +path = "static-publisher/static-content/file1585.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/security/dnf_automatic/index.html_gzip_787c1979987ca9194b419b5d2fdfa30ac5e5d63175886a955447708672b0abf4" +path = "static-publisher/static-content/file1585.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/security/enabling_iptables_firewall/index.html_2c09675e041eef2e7401d0995453a789cb432d4c89ed3fd2cad692c2bc45710c" +path = "../build/minified/site/guides/security/enabling_iptables_firewall/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/security/enabling_iptables_firewall/index.html_br_02ee3474d2909981b7a09140e7eecbc42d5ca692fae272897c4fdbf2ee085a90" +path = "static-publisher/static-content/file1586.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/security/enabling_iptables_firewall/index.html_gzip_c8b35b4b6fd384de056285a724d013c64e213f1cd2fce832cfbfc5b578ba7c8c" +path = "static-publisher/static-content/file1586.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/security/firewalld/index.html_0bbecbd635a39118487000da2b9958eb0f4f87f8e527e685b3998db8ac0b37e6" +path = "../build/minified/site/guides/security/firewalld/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/security/firewalld/index.html_br_182f9d1a92176241de45796ee6cf36ace0a6d8635daa738ef73819e23c9a9f36" +path = "static-publisher/static-content/file1587.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/security/firewalld/index.html_gzip_ab054b28e1d3266f9b9c0d28fffc3571b5a217f10a99206eb6a8da3f1350076b" +path = "static-publisher/static-content/file1587.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/security/firewalld-beginners/index.html_5dd01be06f548f1a0a54f38a6abcfd5c4fb3e0953ca1b696db363d6288fb4c32" +path = "../build/minified/site/guides/security/firewalld-beginners/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/security/firewalld-beginners/index.html_br_e4dcc266078f3b354df22e608b2665817547415a7e785200db0ae0d3f59ee917" +path = "static-publisher/static-content/file1588.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/security/firewalld-beginners/index.html_gzip_3aa0866ee99ffbac5906009a3f53037c267287ef2bd4694499b38de586e4046b" +path = "static-publisher/static-content/file1588.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/security/generating_ssl_keys_lets_encrypt/index.html_93168b608df1648992b59d8518d2fad82936c7b5b45854c396782147d2ba862c" +path = "../build/minified/site/guides/security/generating_ssl_keys_lets_encrypt/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/security/generating_ssl_keys_lets_encrypt/index.html_br_7d2183db7d8fe2f14b1a4cbdd6c14c6f7e5b048c8c6ac0607c0f0338b0abd921" +path = "static-publisher/static-content/file1589.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/security/generating_ssl_keys_lets_encrypt/index.html_gzip_56fc50df3f2f71ebf747901d09a71ebd313096cc77f0d550b7a87d7bf988fc1a" +path = "static-publisher/static-content/file1589.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/security/images/pam-001.png_548fd74337ef5192ed294696d669261d56a6cfca1677e8abbb93e6548b947284" +path = "../build/minified/site/guides/security/images/pam-001.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/security/images/pam-001.png_br_08488a01df0337fd17876f7290de8fac12381dbc6fba34699b12bf08f6181c97" +path = "static-publisher/static-content/file1590.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/security/images/pam-001.png_gzip_81f1a583c6bf7f2225e25e0b2a4b27aba3185562a997486823e4e47253df277c" +path = "static-publisher/static-content/file1590.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/security/images/pam-002.png_49897219685dc9e21c84d3d32bd5f8f3cfded8eecb89e5ba1e3cf0d922604f4a" +path = "../build/minified/site/guides/security/images/pam-002.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/security/images/pam-002.png_br_6af8c9e7a6605dc9a6a4e40f3e5cb19f0e802ff659d2552d45062db18b25ed4e" +path = "static-publisher/static-content/file1591.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/security/images/pam-002.png_gzip_80c2555507a011e869882789601d0bb424d96504feeea9da4a841df6939df165" +path = "static-publisher/static-content/file1591.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/security/learning_selinux/index.html_54b9556692e6099092d17794deaf96acf59171f418a42e651a3a14677233aaac" +path = "../build/minified/site/guides/security/learning_selinux/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/security/learning_selinux/index.html_br_6710e4158cfd77478bd751832d048f4eabd03a61e1a6c49ef8bed085299381f0" +path = "static-publisher/static-content/file1592.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/security/learning_selinux/index.html_gzip_60ddbfc52bc21d461ee83b088babb6255bdfd680268fcf2e0816045d376e34b2" +path = "static-publisher/static-content/file1592.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/security/pam/index.html_af7cf39e71c7249940152931db0cf3a7368c77e55a09c33fcd01c0295b310bb3" +path = "../build/minified/site/guides/security/pam/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/security/pam/index.html_br_99f2dd4d2125eae1effdad23f5bca4c4bdeda14f258be032bf309ae90ef7e876" +path = "static-publisher/static-content/file1593.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/security/pam/index.html_gzip_ac8bc67e560979b7485424c8685c47c680bcab6ab6998245621fccbb582efeff" +path = "static-publisher/static-content/file1593.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/security/ssh_public_private_keys/index.html_e614bd8f6c9d378bf37458014d74388119a0257238b8f2df93dcf69f61c34d79" +path = "../build/minified/site/guides/security/ssh_public_private_keys/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/security/ssh_public_private_keys/index.html_br_e27433182d3c9fe01f58bbca3823437233b6d21233e2e7fa4d5743f59f9ee8bd" +path = "static-publisher/static-content/file1594.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/security/ssh_public_private_keys/index.html_gzip_71f77c1cd9747ed8f880546570050b41856b7bd7e052b55a8a3ae5136af41853" +path = "static-publisher/static-content/file1594.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/security/ssl_keys_https/index.html_6ba316c6477e4ce88ac2dd583643753971e6f113446091798b4dad5349acce01" +path = "../build/minified/site/guides/security/ssl_keys_https/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/security/ssl_keys_https/index.html_br_5df13759cc29c77d350a5b65aacd1f6b8571d70bf0fa7117517da2d69b677b19" +path = "static-publisher/static-content/file1595.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/security/ssl_keys_https/index.html_gzip_cf540add4f98ddd2581d8bcdbbd3f21fef03f5e25b041a17a4cbaf8c73f4b266" +path = "static-publisher/static-content/file1595.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/security/tailscale_vpn/index.html_9de6742c3987d4c8d0b029212a026b6e42ba465cc9e8c2ffa4d038e585e2e8bb" +path = "../build/minified/site/guides/security/tailscale_vpn/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/security/tailscale_vpn/index.html_br_e1dc81611ba64f7583f089b9738d1ae0893050c90aeb2fd8c76b1078a4e37cb3" +path = "static-publisher/static-content/file1596.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/security/tailscale_vpn/index.html_gzip_fab8358bc562664917c2486e416e57a8c92aa57f5da1a8941cf7212e6f0bea61" +path = "static-publisher/static-content/file1596.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/virtualization/cockpit-machines/index.html_48fa2f1a0c3744631e7064364cef0c4f63ab177080d6fb750dae884153b0be73" +path = "../build/minified/site/guides/virtualization/cockpit-machines/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/virtualization/cockpit-machines/index.html_br_62b40382327bf4ca98be6d0ddadbe7bd2c6aca7b1f40620712c6ac8e328c78d7" +path = "static-publisher/static-content/file1597.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/virtualization/cockpit-machines/index.html_gzip_610c4923e5381145eb449ab1839fb1f890cabb27b39b9d53f63cf4f5ef3d66fe" +path = "static-publisher/static-content/file1597.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/virtualization/vbox-rocky/index.html_7bbc94b3aef4c78bb838ed239b5b5a52ddba7c44d8a439e8ea33d11f11260ff9" +path = "../build/minified/site/guides/virtualization/vbox-rocky/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/virtualization/vbox-rocky/index.html_br_7c267644ceff03199bc91ce3df72741935f4482e4b5c4b4e3b25ca57f4a6dc10" +path = "static-publisher/static-content/file1598.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/virtualization/vbox-rocky/index.html_gzip_4f9104efb5bf8deabf8d9b604d343e24ab65d967b1cff3b613ee868e38b660b4" +path = "static-publisher/static-content/file1598.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/virtualization/vmware_tools/index.html_9e8fe5a8dd3a0e9b9dc7f33cd1c501d35f2b0bf4c0ba4d0c9f2df51c8cad9e2b" +path = "../build/minified/site/guides/virtualization/vmware_tools/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/virtualization/vmware_tools/index.html_br_05e2588915b2875174597891211d64fa3cedd6dce66876123e57d0a0c99f4f9c" +path = "static-publisher/static-content/file1599.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/virtualization/vmware_tools/index.html_gzip_7d7b1f1420967f2ac37f33f91097b087f1b8a63506cbe978fbb684b4263a9fb1" +path = "static-publisher/static-content/file1599.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/web/apache-sites-enabled/index.html_85e88fa45712220924ae18db4c3daca229fdc4ed43262d59877d811e05396609" +path = "../build/minified/site/guides/web/apache-sites-enabled/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/web/apache-sites-enabled/index.html_br_53b9cfa0bd2dec3ed6a4db54bef79cddd43b031fca51a03d95530395e3fe81dd" +path = "static-publisher/static-content/file1600.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/web/apache-sites-enabled/index.html_gzip_82cd73b75a9835cdb8455eb2267ca22f78427594533f5606df2d65a4cdc2e497" +path = "static-publisher/static-content/file1600.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/web/apache_hardened_webserver/images/hardened_webserver_figure1.jpeg_da50edd5c951083f32bd4759c1720902f4bec154c271e207fdaa3e1569d83109" +path = "../build/minified/site/guides/web/apache_hardened_webserver/images/hardened_webserver_figure1.jpeg" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/web/apache_hardened_webserver/images/hardened_webserver_figure1.jpeg_br_a7559770ab9010c12c645e4c69a6c959957247dec2958da46b48d3cc1374c287" +path = "static-publisher/static-content/file1601.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/web/apache_hardened_webserver/images/hardened_webserver_figure1.jpeg_gzip_823c1ad5b363e14ff38fe12535bee4baaa167a1e0262d197930bb6688b7a1f50" +path = "static-publisher/static-content/file1601.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/web/apache_hardened_webserver/index.html_08047e878ee6154ae89f007d44126fc89d2cb7f25f362abb66fd4aa5318825db" +path = "../build/minified/site/guides/web/apache_hardened_webserver/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/web/apache_hardened_webserver/index.html_br_a4db1b01855d953ba480fdfbf3a62d8e088ed87d4b6b4dca16377f2d2bb3b831" +path = "static-publisher/static-content/file1602.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/web/apache_hardened_webserver/index.html_gzip_9b061aa1288b5bc77f1709fb55f2560c2bddf2752fde3136058783de41a7036d" +path = "static-publisher/static-content/file1602.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/web/apache_hardened_webserver/modsecurity/index.html_8ac1fdbff7ad80301de16c8b00627ec26ccdaaf9ed43c2c94c798bc1f2173a2f" +path = "../build/minified/site/guides/web/apache_hardened_webserver/modsecurity/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/web/apache_hardened_webserver/modsecurity/index.html_br_9b0b4495c8189db02426507325a7d848574183e5e51935cf514baddc75459f40" +path = "static-publisher/static-content/file1603.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/web/apache_hardened_webserver/modsecurity/index.html_gzip_1ceff32f7b0ac065cf03575d586b8af3cbe4aca804b3d0d5f804ed9d09b60548" +path = "static-publisher/static-content/file1603.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/web/apache_hardened_webserver/ossec-hids/index.html_520c4413eff10db0e3abba8d252dbbab4201004a7d4560f076d47059f1f62501" +path = "../build/minified/site/guides/web/apache_hardened_webserver/ossec-hids/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/web/apache_hardened_webserver/ossec-hids/index.html_br_7578e9cf13fac411e555d3fc12f9dd4130bee17d611f1f41f76522490d9ece30" +path = "static-publisher/static-content/file1604.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/web/apache_hardened_webserver/ossec-hids/index.html_gzip_18a43c9cd51101ffb77759cfd15d22534730783a160e7ee902fa332fa0d88c44" +path = "static-publisher/static-content/file1604.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/web/apache_hardened_webserver/rkhunter/index.html_23830b3a57175850bfe0b8f2d3c3d1dd9ca3a372db8634c4300b243fe4111011" +path = "../build/minified/site/guides/web/apache_hardened_webserver/rkhunter/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/web/apache_hardened_webserver/rkhunter/index.html_br_05afd136d7b091bfc9b423e57257ea2cc1a208879321180ea9f5ee7311bfc3fe" +path = "static-publisher/static-content/file1605.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/web/apache_hardened_webserver/rkhunter/index.html_gzip_d1ee271631564f45e7c3a612031c30c8ce352772d2ff415cba325effca92687e" +path = "static-publisher/static-content/file1605.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/web/caddy/index.html_5f40848b1efaa7471ba1e55d218d74c37ad13b9cd2491f3cfe2967dc3c3ba91a" +path = "../build/minified/site/guides/web/caddy/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/web/caddy/index.html_br_b23bbd98f2538030a49beb39b70486cbeef0be4f2f690f62d6d9e92acf6a5f59" +path = "static-publisher/static-content/file1606.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/web/caddy/index.html_gzip_7c13166768c6ee1f6d0249dcef5a654e0963a901265f4dbc18da40d2e076d5a7" +path = "static-publisher/static-content/file1606.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/web/mod_SSL_apache/index.html_31dccedad6be4411dc7ee6a58b6d16b8b1393faca16674a0b5326890a8efc49e" +path = "../build/minified/site/guides/web/mod_SSL_apache/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/web/mod_SSL_apache/index.html_br_26234b043e698a673fb836d68eb7c892c87f450a6beeca7fa0955c5929a0dfea" +path = "static-publisher/static-content/file1607.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/web/mod_SSL_apache/index.html_gzip_03c244decc43f102877a8c911e8b814e826af38223840873874796b936815e9c" +path = "static-publisher/static-content/file1607.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/web/nginx/images/Thumbs.db_78d93516a25ebdc995b1ac89dfedb9558e7fa4c8aae0e8cdb5cdb21e64afc27b" +path = "../build/minified/site/guides/web/nginx/images/Thumbs.db" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/web/nginx/images/Thumbs.db_br_c88bd4d2f03fa57581f702e5aeeafb3c3f95670d324e9d2dd68b57cfd1f088de" +path = "static-publisher/static-content/file1608.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/web/nginx/images/Thumbs.db_gzip_5ec29172931ce6ed0474155cbfd5c040131f80fdae528ddefd8e4949c1b58e11" +path = "static-publisher/static-content/file1608.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/web/nginx/images/multisite-nginx.png_b63b4be8d6facd8e4135697d84674d086abad7e581dedfc14fe4dfa31d131c35" +path = "../build/minified/site/guides/web/nginx/images/multisite-nginx.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/web/nginx/images/multisite-nginx.png_br_818bef0e37cd8d11068689d5b122f6bac3dcc5a4ea784e84edd1f1371dc2ae1a" +path = "static-publisher/static-content/file1609.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/web/nginx/images/multisite-nginx.png_gzip_a04d7067c31ec4e5a8477d77e84733788c91e37688e34e63c1d5fc59b71c6ef5" +path = "static-publisher/static-content/file1609.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/web/nginx/images/welcome-nginx.png_383968d7f66b7dca4e77ac57d1fa0a9d24bea4eb931fd516f2e15388abab427c" +path = "../build/minified/site/guides/web/nginx/images/welcome-nginx.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/web/nginx/images/welcome-nginx.png_br_47abebcfdf81c671cbf60e4ac05df257fef4b5542bdd7560ea8a9c19c8f92a1d" +path = "static-publisher/static-content/file1610.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/web/nginx/images/welcome-nginx.png_gzip_e66c6b1b6f7fbaff6be9787cede8e7d926bc63c6ce00ffeaf74ff06030f42730" +path = "static-publisher/static-content/file1610.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/web/nginx-mainline/index.html_60e53595c2ea7f9c37284e5a04156cdc9c763c9db550828d45bc2273d5d16a35" +path = "../build/minified/site/guides/web/nginx-mainline/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/web/nginx-mainline/index.html_br_c12b10fcfb36541fd427873897973ad497000daf9f3968fe9e9d8c8e798a8941" +path = "static-publisher/static-content/file1611.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/web/nginx-mainline/index.html_gzip_0e9f97f654871595606b85ed2e4dbebfdee59f34f0dea1ef63f6813523713ddf" +path = "static-publisher/static-content/file1611.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/web/nginx-multisite/index.html_932758ef4c5dbdd1d630a3052261ce89a3d75816101e52b0eb7c9a57faed0249" +path = "../build/minified/site/guides/web/nginx-multisite/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/web/nginx-multisite/index.html_br_a0aa0d1a2876f743637ea4d94113764741700fc47eb979c62f4d6379c2c2a640" +path = "static-publisher/static-content/file1612.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/web/nginx-multisite/index.html_gzip_4d6b25a1340375fe73817e828f84eb4fdfbcecfc58de4cdb034685266d4d9555" +path = "static-publisher/static-content/file1612.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/web/php/index.html_6488cdf9a4e41c348865a953517a7ef9546b163dcb29b0bd2a33d10f00c795b9" +path = "../build/minified/site/guides/web/php/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/web/php/index.html_br_05069d7450f15408984ad8cd7ec130ae5b0ce611fb167e44cc3fe0729b138819" +path = "static-publisher/static-content/file1613.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/web/php/index.html_gzip_6890d20796e78d2e144dda506c539d1997829c7061c00a1a37ba10cb52870b1f" +path = "static-publisher/static-content/file1613.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/web/tor_onion_service/index.html_2e6578064c9fff4b2d56933975a7f44909e6d61889403082bf14b24b16445f40" +path = "../build/minified/site/guides/web/tor_onion_service/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/web/tor_onion_service/index.html_br_4c41e9bd359d778d381c4d7f9fbbbb548ce9690769bab9221d2fffa8e92ac074" +path = "static-publisher/static-content/file1614.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/guides/web/tor_onion_service/index.html_gzip_e5493876c5c59d66c1e2473fb3ea1372669a748b7da16dfc546d8059bc796764" +path = "static-publisher/static-content/file1614.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/admin_guide/00-toc/index.html_0e7ee6404805f2f7df649fd053d19a3d6af4029587813df5f7234eef792729e1" +path = "../build/minified/site/id/books/admin_guide/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/admin_guide/00-toc/index.html_br_7c24585b1376d1d5f8a82393fa41c7031e0ec5a83d48e39913b1791686a87201" +path = "static-publisher/static-content/file1615.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/admin_guide/00-toc/index.html_gzip_860017f36a06c27b9ea26db018f967c16d7b98367a65db32bfa0bade054e1d5e" +path = "static-publisher/static-content/file1615.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/admin_guide/01-presentation/index.html_b203911eee91b0fb6708877db79e62db4806fe96111381ca749b18809183fc9e" +path = "../build/minified/site/id/books/admin_guide/01-presentation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/admin_guide/01-presentation/index.html_br_a49bb165891bb2acea9430a5f4b85d8837769066dd02c67fe1e6b117cc0b2357" +path = "static-publisher/static-content/file1616.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/admin_guide/01-presentation/index.html_gzip_0ef0c357c5a200bd82b89a483ca5fc7d0024a29c3d2ad41cfb025b9fdacc538a" +path = "static-publisher/static-content/file1616.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/admin_guide/03-commands/index.html_bbfa89606343a0be939675dad1074ea7018c04b2b26039007cb62bc9acce7ff4" +path = "../build/minified/site/id/books/admin_guide/03-commands/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/admin_guide/03-commands/index.html_br_45a2131cabf5cc19790359beccb8d2fd6104be4f5f8cdeffc1ddb5209ae91d4c" +path = "static-publisher/static-content/file1617.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/admin_guide/03-commands/index.html_gzip_555ee1da8414ef856a12eeb9eebebb517cb4b8c0fab15ffeb390ef5775598127" +path = "static-publisher/static-content/file1617.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/admin_guide/04-advanced-commands/index.html_53a8921a8770dc2a45b6ce8b2c50d324ce206b6561ec326b463712ed54532652" +path = "../build/minified/site/id/books/admin_guide/04-advanced-commands/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/admin_guide/04-advanced-commands/index.html_br_fd2729f4011765857017a99372bc1067eeca9deccb36d2c2d5a390671ea29713" +path = "static-publisher/static-content/file1618.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/admin_guide/04-advanced-commands/index.html_gzip_8284c52a9427fee33c66bedc0e7d08adfaa023bc4f44f51edbe7f90da7393277" +path = "static-publisher/static-content/file1618.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/admin_guide/05-vi/index.html_1816b436829cb2fdb6b33a536a0bc5bee62edbc7832b273eb6223a66e2e34cfb" +path = "../build/minified/site/id/books/admin_guide/05-vi/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/admin_guide/05-vi/index.html_br_18dadeae38323c7cef560517afcfe22a6546b7c7b28a2591c0a4770841fbe1e2" +path = "static-publisher/static-content/file1619.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/admin_guide/05-vi/index.html_gzip_56e91d50576423fa62cdeeac3d2fd6687d63e84321b3d095a7f10220ad97828d" +path = "static-publisher/static-content/file1619.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/admin_guide/06-users/index.html_4de9b2ca0d61ef00730bd97b4cd0745f97bd7ad77d04fea5dbf5e8bc36ea2f41" +path = "../build/minified/site/id/books/admin_guide/06-users/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/admin_guide/06-users/index.html_br_69b3d0a3bd98b9e340be811804b142613319999e4dccf5c256e57b5b894f6b8c" +path = "static-publisher/static-content/file1620.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/admin_guide/06-users/index.html_gzip_2e8ae6998ef34818c6a650b621e38aa04cc6da57619e74e707a7d2d2e85c9d8a" +path = "static-publisher/static-content/file1620.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/admin_guide/07-file-systems/index.html_209b23ba97ecc765b00dea35ad4e411baa6b7922e5354a65f17cb32a752d553f" +path = "../build/minified/site/id/books/admin_guide/07-file-systems/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/admin_guide/07-file-systems/index.html_br_38616fb0c6e4c6181af4f47e9581a43637136591269f4eda7585843762806da4" +path = "static-publisher/static-content/file1621.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/admin_guide/07-file-systems/index.html_gzip_e250ee14a96d455bbf8106058f50418961899faeb5aeb89c247fd16fc7244d17" +path = "static-publisher/static-content/file1621.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/admin_guide/08-process/index.html_9d2b313b4c78442a92aaa87d4add5837ba055e933ebd892b5ca9d291920538a0" +path = "../build/minified/site/id/books/admin_guide/08-process/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/admin_guide/08-process/index.html_br_dae364702c5a47e57572ae530704d5bf13f6388c3662fb24cfb3ed5540082433" +path = "static-publisher/static-content/file1622.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/admin_guide/08-process/index.html_gzip_c5a6b253023e1f5e7441ca95105ed4cc5e33e5844dcfc378e796cf9fb42793ab" +path = "static-publisher/static-content/file1622.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/admin_guide/09-backups/index.html_89be31e689a60c23a637c6f0f1b1455b5656a0b75271ec50fbb3d982d5a07aa4" +path = "../build/minified/site/id/books/admin_guide/09-backups/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/admin_guide/09-backups/index.html_br_a3f998fca801c5a1629af33b3c87b061c0d6f38ed5c4817f7ff7ae7cea39765a" +path = "static-publisher/static-content/file1623.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/admin_guide/09-backups/index.html_gzip_28f809051ab91b0d17193d611c330e058d0a584ffce4fabf21132bc071ca82fc" +path = "static-publisher/static-content/file1623.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/admin_guide/10-boot/index.html_74be2ff4127883f38839db7b6ae4a3a592b009c0dfd73b5c844c9af76d3571a8" +path = "../build/minified/site/id/books/admin_guide/10-boot/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/admin_guide/10-boot/index.html_br_6304505dc67271ff32f281c0f99d42204067c04165afa260a1f226ce02d680bb" +path = "static-publisher/static-content/file1624.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/admin_guide/10-boot/index.html_gzip_b9644a4b814df9a9c76d57666509c543f57d777e80892013ce5a36c07fe25e1c" +path = "static-publisher/static-content/file1624.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/admin_guide/11-tasks/index.html_5e8ce1f946a38d162d558f2e0fb30f3da145731bc15c3e9db2b57e1af66b75cf" +path = "../build/minified/site/id/books/admin_guide/11-tasks/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/admin_guide/11-tasks/index.html_br_258f1893eef9a87279c1f75fac625331fd8ca87455a5b96ae459821caa892e70" +path = "static-publisher/static-content/file1625.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/admin_guide/11-tasks/index.html_gzip_6f88f0615377e77964fe8ff4bb4eb10d99596bad1109661142719fb08b377d36" +path = "static-publisher/static-content/file1625.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/admin_guide/12-network/index.html_18370d781dde4de39a91f651c18520f9d593a747653410d0b1f09c97197e2206" +path = "../build/minified/site/id/books/admin_guide/12-network/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/admin_guide/12-network/index.html_br_37cffe0465e45aeb4d792e51051ec044ea874edf289c24ef202ece39019e051e" +path = "static-publisher/static-content/file1626.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/admin_guide/12-network/index.html_gzip_ed1ff2ddaf46365be09b9e7409478d14459e3f976d3c8b0ee625359650ee2aa3" +path = "static-publisher/static-content/file1626.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/admin_guide/13-softwares/index.html_1c3e7399523296a1f3b1d72f6faf46ff93d152c324422fe086b4b1137a6b070d" +path = "../build/minified/site/id/books/admin_guide/13-softwares/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/admin_guide/13-softwares/index.html_br_36803a711f29cba5e8e65a00e82f32d6f1a36e6e555937184cd90e0627464b28" +path = "static-publisher/static-content/file1627.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/admin_guide/13-softwares/index.html_gzip_d6e4f1516085eac0b1f6f3526598f7389ee2a13d6c4f80cc7a8631682196d4d2" +path = "static-publisher/static-content/file1627.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/admin_guide/14-special-authority/index.html_1e652b4f8500e7cafd9fdb195359eeb328e292d4e8687a560f7e23fc4026c855" +path = "../build/minified/site/id/books/admin_guide/14-special-authority/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/admin_guide/14-special-authority/index.html_br_314a2830528866b23e3eed33f53f6adce66fbdc07756f15824247f276a0be5d7" +path = "static-publisher/static-content/file1628.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/admin_guide/14-special-authority/index.html_gzip_00a42d440f6d51ac92127120dc2d4db585aa3d488f9185111ab8540c9cbe746b" +path = "static-publisher/static-content/file1628.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/admin_guide/16-about-sytemd/index.html_090143461ff8f37e12ff25334a964ce9afda5ff5acd314c2f2407e736770c1e0" +path = "../build/minified/site/id/books/admin_guide/16-about-sytemd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/admin_guide/16-about-sytemd/index.html_br_07ab7ae9f1fcb2422f051340fcaac976d8c96a91d5f8d4698834234a7ba1f246" +path = "static-publisher/static-content/file1629.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/admin_guide/16-about-sytemd/index.html_gzip_12288dd8dcd1634433b0eafce3d11c8139b0eac4ed5fd88bff462080e38a00ca" +path = "static-publisher/static-content/file1629.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/bash_programming/01-Shell-overview/index.html_a994af68f1923fbcc96e3c85fda518acc7d4c08bc3e40b1915a5bcbe6ac959dd" +path = "../build/minified/site/id/books/bash_programming/01-Shell-overview/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/bash_programming/01-Shell-overview/index.html_br_e885eef03e98800439f459ebf75abf3a55b0568b8063b0a8bfee39d07a5b796e" +path = "static-publisher/static-content/file1630.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/bash_programming/01-Shell-overview/index.html_gzip_67a41e0b8c90d5320a3ee23df8d0f4109548236ddef5e15af3528404caf397a7" +path = "static-publisher/static-content/file1630.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/disa_stig/disa_stig_part1/index.html_b68fd363d3b5c688736ad6faf7567e6ee6224bbec2d2ff8f5f6dc5e0ef8fd6c8" +path = "../build/minified/site/id/books/disa_stig/disa_stig_part1/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/disa_stig/disa_stig_part1/index.html_br_a004468f6504853bb1a717ada2ce2a827a5bfae1e813fd9339b8a7e6ef969984" +path = "static-publisher/static-content/file1631.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/disa_stig/disa_stig_part1/index.html_gzip_9de1ab96c4604a6b53f4b0e24783ac25b27f13a5173c5cd4a745176d30931152" +path = "static-publisher/static-content/file1631.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/disa_stig/disa_stig_part2/index.html_cab4d6edb55f25bab4ea0b7a4a18d9341be6ae66a1a5d1f60b9adf7968b71275" +path = "../build/minified/site/id/books/disa_stig/disa_stig_part2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/disa_stig/disa_stig_part2/index.html_br_56a59452e7214f712e6d116fdacc175ada81dad7551b2be5d15a5428d6c76962" +path = "static-publisher/static-content/file1632.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/disa_stig/disa_stig_part2/index.html_gzip_a31910a4a148148b81c64116742c7dc9c8c729b9abb1a7734b735b80085953f6" +path = "static-publisher/static-content/file1632.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/disa_stig/disa_stig_part3/index.html_07a5ffcf35e12578f1fd8a4b3cc7cff609a77efc3fdc8bf4424f4821d9730fe0" +path = "../build/minified/site/id/books/disa_stig/disa_stig_part3/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/disa_stig/disa_stig_part3/index.html_br_eb7376a07eda98310760bbf5938a45e4574bda00901f08d11003f7df319eaba6" +path = "static-publisher/static-content/file1633.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/disa_stig/disa_stig_part3/index.html_gzip_c73adeaef3103ca29a7250562d84837d1be26b2bf38e5ba25a5b803eed20700c" +path = "static-publisher/static-content/file1633.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/index.html_ae178c3ec8abe2761f2b7e7688c6e540c3488627aa9323a4b3b015ab5ddebc1c" +path = "../build/minified/site/id/books/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/index.html_br_58c36c55901be1563d7e36bd2ac5a9d5a69334b60a7e5a81192ba31ee367946c" +path = "static-publisher/static-content/file1634.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/index.html_gzip_8304c1886f7e846ca62cd2f38c4420d5a2aefd8e74877cdc57919600764eb2e2" +path = "static-publisher/static-content/file1634.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_ansible/00-toc/index.html_31f3a933fb7f5353f1714aa7afe68e14565d8595d97b1dbe02fb7619a621818d" +path = "../build/minified/site/id/books/learning_ansible/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_ansible/00-toc/index.html_br_0f2932d1a968853428452ee4eaee312e8e76bc785c307c39b8456e2af4330700" +path = "static-publisher/static-content/file1635.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_ansible/00-toc/index.html_gzip_b77e79063dee794592adc86136d0be388a813efa062a9d87352129e455ae6133" +path = "static-publisher/static-content/file1635.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_ansible/01-basic/index.html_28e333ee3b6f49a7212fe9797fe1ef1190fb9a2db8ca4e2212a0a58776bbba6f" +path = "../build/minified/site/id/books/learning_ansible/01-basic/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_ansible/01-basic/index.html_br_64f71c9e413a4de6eff60979165f8d269f8c356100e80e78be571a5fdb1109a9" +path = "static-publisher/static-content/file1636.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_ansible/01-basic/index.html_gzip_27673a407f238746e6cf1fd5d4a4055592d8ff19fd51a3d588799bb19ca4e398" +path = "static-publisher/static-content/file1636.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_ansible/02-advanced/index.html_dd70569c5521e945b2111b48b417424f28062bbb6369560be5415454d7dbe287" +path = "../build/minified/site/id/books/learning_ansible/02-advanced/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_ansible/02-advanced/index.html_br_49adb287e0054bc325c2228536e392f506f98e0c58ca76f132a04e80d32f844b" +path = "static-publisher/static-content/file1637.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_ansible/02-advanced/index.html_gzip_38dd4105aa013455404f15be9cafe2e1d93da006151d2113c0deaba7f26f4c86" +path = "static-publisher/static-content/file1637.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_ansible/03-working-with-files/index.html_2a7ed99b4619bce135e56a75e3099b6d729b6f4346687429c9ee3285d7660045" +path = "../build/minified/site/id/books/learning_ansible/03-working-with-files/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_ansible/03-working-with-files/index.html_br_884d98ece1c9c8e059d2b194fbd46740f4e8b9d7901292e4e43c10bf53b79eeb" +path = "static-publisher/static-content/file1638.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_ansible/03-working-with-files/index.html_gzip_9b25d7c7b05de1c826170a647c96af0647b73f8273d45b6b9843a7fa031b2030" +path = "static-publisher/static-content/file1638.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_ansible/04-ansible-galaxy/index.html_bd1603394c789d789219330538d751ea24435ab3b04a7fb10e5911b355e6dfe2" +path = "../build/minified/site/id/books/learning_ansible/04-ansible-galaxy/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_ansible/04-ansible-galaxy/index.html_br_695afadf441be29340d262a4f1f87a937b5c812844f4a5639ecf569b3e676946" +path = "static-publisher/static-content/file1639.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_ansible/04-ansible-galaxy/index.html_gzip_07a210790603ef74416d7c3662119db92a52e61f415926a6a1315416332822f1" +path = "static-publisher/static-content/file1639.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_ansible/05-deployments/index.html_59c1ab2e276bd4db1cee4374494f6b3bbd74241f4e55765bad9b1a3c33ffd4fd" +path = "../build/minified/site/id/books/learning_ansible/05-deployments/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_ansible/05-deployments/index.html_br_fef19b03d3b76f6c9c4ccd13b5b9bb1d75c9d51cd22160613ceae79a9d3da829" +path = "static-publisher/static-content/file1640.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_ansible/05-deployments/index.html_gzip_48b0d371d1a048993792fc9ef9674bccbacd1fabd843287c6f1b12a3630b5721" +path = "static-publisher/static-content/file1640.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_ansible/06-large-scale-infrastructure/index.html_3cc650e24d99b418910344a9f4f23c17d95a141b5ef3a190afbc0dc1e8440faa" +path = "../build/minified/site/id/books/learning_ansible/06-large-scale-infrastructure/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_ansible/06-large-scale-infrastructure/index.html_br_062171b53c72d343ad841bd8f7ca97856c65539fcf552564c9c401e12599b86d" +path = "static-publisher/static-content/file1641.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_ansible/06-large-scale-infrastructure/index.html_gzip_99e9d006538dd90d64a06e55df2567be18a5fc26aa5cee4d98c2ccd6cda56e05" +path = "static-publisher/static-content/file1641.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_ansible/07-working-with-filters/index.html_79c3d95eae645fd2d35cb64db5079946a390334ed6b580c671034dcdcf254aac" +path = "../build/minified/site/id/books/learning_ansible/07-working-with-filters/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_ansible/07-working-with-filters/index.html_br_e893e1df8e0f785c21bcdd1f1f958e8b400489b50c4204b880026e941603de41" +path = "static-publisher/static-content/file1642.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_ansible/07-working-with-filters/index.html_gzip_a9222818403c8a6d4f7510f139d949a6ded5991919f4f5aee1272afe3aa82c47" +path = "static-publisher/static-content/file1642.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_ansible/08-management-server-optimizations/index.html_71de5943c3a40fd36ed11eb0a0d7ddf48edddbccb9f413022a0ecba8df1af77f" +path = "../build/minified/site/id/books/learning_ansible/08-management-server-optimizations/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_ansible/08-management-server-optimizations/index.html_br_9af8e0f62296edf07b8c73a542b606e67481fc5d323849037ae6641d880c7e2b" +path = "static-publisher/static-content/file1643.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_ansible/08-management-server-optimizations/index.html_gzip_0aaf80994bed55f6af40616ee442122ce6e0d9f3ed2d0241df0e187a21e917e6" +path = "static-publisher/static-content/file1643.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_bash/00-toc/index.html_56e5a6c914c025e55560f7fd969bb63ce881fe4a7e6913b5f3ce14a5b9f87f59" +path = "../build/minified/site/id/books/learning_bash/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_bash/00-toc/index.html_br_ce0464fcd3d5cd891630aaced9eb0bed1f42fc078629b217879d59e6c787d414" +path = "static-publisher/static-content/file1644.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_bash/00-toc/index.html_gzip_58c37f140b0fab1d8179a5a6ee52a721309ca00ec4d0125cc664218bd5532889" +path = "static-publisher/static-content/file1644.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_bash/01-first-script/index.html_043c1a8e71403444eda9a277a1e2fe7da511ffafb505eb9814f90c931cb5f838" +path = "../build/minified/site/id/books/learning_bash/01-first-script/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_bash/01-first-script/index.html_br_8867fbe3d1497184880d905696084f2ae92ebb954d13903d3bec3fd184e72a57" +path = "static-publisher/static-content/file1645.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_bash/01-first-script/index.html_gzip_13ddb2dce60bf027b152cba3ed275776f46ced62433c1e0d0289218f9751139d" +path = "static-publisher/static-content/file1645.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_bash/02-using-variables/index.html_c78800c614ecb3cf751654636a0016b701c368a206653eed4860eb2f838bfa91" +path = "../build/minified/site/id/books/learning_bash/02-using-variables/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_bash/02-using-variables/index.html_br_438857cf495372dcc84b1ec47d8f72d827fdf6c12c0d72b4f19ef6e913d9bb83" +path = "static-publisher/static-content/file1646.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_bash/02-using-variables/index.html_gzip_7409cd466922cae2631d2808ac1294e21074c1115a08f0150d78357080a1265a" +path = "static-publisher/static-content/file1646.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_bash/03-data-entry-and-manipulations/index.html_7eb41d133a59add6dbb1feed0b127cbf5b5ea53a2835741dfbb1a1efea1eb051" +path = "../build/minified/site/id/books/learning_bash/03-data-entry-and-manipulations/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_bash/03-data-entry-and-manipulations/index.html_br_18f36d5064969e82f7eee1e5611cc4034384b93eac58d74173658c484accc83d" +path = "static-publisher/static-content/file1647.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_bash/03-data-entry-and-manipulations/index.html_gzip_53bbceda6c8c4df5c0c8f6fce5d18cd25c85150c2565bb468f69d8952f0be2be" +path = "static-publisher/static-content/file1647.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_bash/04-check-your-knowledge/index.html_992876a44fbe955df46c679954213416a2fd3968ca6a08d713708ec6345b2ef2" +path = "../build/minified/site/id/books/learning_bash/04-check-your-knowledge/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_bash/04-check-your-knowledge/index.html_br_801141ff0f7e420a949558c35ab4079144a18122637aeeb005688ce076814ed7" +path = "static-publisher/static-content/file1648.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_bash/04-check-your-knowledge/index.html_gzip_19eddf2ad6130761854bf8a8d4a83020486d014ad84b476d47af94854bd695dd" +path = "static-publisher/static-content/file1648.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_bash/05-tests/index.html_27d4ff4c28b94c363c757698d5eb0306b373da57c811304c07b0182990468fd0" +path = "../build/minified/site/id/books/learning_bash/05-tests/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_bash/05-tests/index.html_br_2e9c1d0209fe49531f42c2a439ba0b5c018522ea4820951b8ab8d4684ba9ebbc" +path = "static-publisher/static-content/file1649.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_bash/05-tests/index.html_gzip_3d1adcc6132317c4d598f9d28ba1af6df33716d2be4c0d92a01d06310c634fb7" +path = "static-publisher/static-content/file1649.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_bash/06-conditional-structures/index.html_1b545d64fa6dff1ace8d6a317ce3987c1fb8d9a87ce17516b9de5458729273dc" +path = "../build/minified/site/id/books/learning_bash/06-conditional-structures/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_bash/06-conditional-structures/index.html_br_3c9377591177e49120d8487abfb84b9b65b23b487633b8eb9518f36a32d483a0" +path = "static-publisher/static-content/file1650.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_bash/06-conditional-structures/index.html_gzip_b40daee39555251ee6bc8d8cf1c26a213bb2433339540a99fd3668684c48c012" +path = "static-publisher/static-content/file1650.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_bash/07-loops/index.html_b79eaed9ee3c8b3ec86d323015b6bf882d9f9847e3a5d3f9eecd0d5741b752d1" +path = "../build/minified/site/id/books/learning_bash/07-loops/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_bash/07-loops/index.html_br_3c9d1fddab2c511b90d613429ace162f8ad787ead318c517a5e85b2ca21c02fd" +path = "static-publisher/static-content/file1651.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_bash/07-loops/index.html_gzip_8db5684e1cf7531e4e6678da41feb71642b04cc71c41c19b46b143a6224ce403" +path = "static-publisher/static-content/file1651.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_bash/08-check-your-knowledge/index.html_57c55ecd6d519d4fe1723971257348f2df67995623d52524a8aea60257a08b0f" +path = "../build/minified/site/id/books/learning_bash/08-check-your-knowledge/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_bash/08-check-your-knowledge/index.html_br_5e77b6700ff12d5014dfc420c5a24817313fa0bcd59b368cfc5a88f4bee6425a" +path = "static-publisher/static-content/file1652.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_bash/08-check-your-knowledge/index.html_gzip_73e4e1eb15c63a08cfc2ac04754390ed50af97f0c2aad377e2911911f03226af" +path = "static-publisher/static-content/file1652.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_bash/appendix/02-variables-logs/index.html_a6c16df7d77fb352a1bd2f52abd344542c5aa6da566a6c3eb846642bfcb89501" +path = "../build/minified/site/id/books/learning_bash/appendix/02-variables-logs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_bash/appendix/02-variables-logs/index.html_br_6e47ccf025570269db0d23e8a5a17caa2533402512b5ec86bcfc78ee501dcc05" +path = "static-publisher/static-content/file1653.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_bash/appendix/02-variables-logs/index.html_gzip_c0b85b5b05d602f3d990cf4b2eadbd2aefec908b345b86cd32a71f7524a16197" +path = "static-publisher/static-content/file1653.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_rsync/01_rsync_overview/index.html_f9a242d5bda847b8952fd72305ba89899dda0f1534f16b1856c981b53638980d" +path = "../build/minified/site/id/books/learning_rsync/01_rsync_overview/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_rsync/01_rsync_overview/index.html_br_ecdda06ec2c8f5838de4d56d2f8ba8a1fb875722b3fb243da2059f0b058ca34d" +path = "static-publisher/static-content/file1654.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_rsync/01_rsync_overview/index.html_gzip_c2dcc935c8cd43cc49341f58f3e5ab74146f4bd2d5cb4b3bb8c5db59c6ba8f23" +path = "static-publisher/static-content/file1654.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_rsync/02_rsync_demo01/index.html_1d023afde87df4dfdb51b62754c8ba19ccd10256ed1b0f913253997a0631b234" +path = "../build/minified/site/id/books/learning_rsync/02_rsync_demo01/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_rsync/02_rsync_demo01/index.html_br_46a1a2cea5bf997d7555a9828158c0a8cf728b42c5d3009bedc70db674bd067f" +path = "static-publisher/static-content/file1655.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_rsync/02_rsync_demo01/index.html_gzip_685c12b6be093813d1c10828dae3eb09e636f634a05969dfc4acacbad58fe06e" +path = "static-publisher/static-content/file1655.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_rsync/03_rsync_demo02/index.html_96e1665dea4b501779fe992d53c92edb3e35fc06c89b29e03adb30047bcaefd3" +path = "../build/minified/site/id/books/learning_rsync/03_rsync_demo02/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_rsync/03_rsync_demo02/index.html_br_a53da14e20ca90d7c978a124180b9ad6689d792e9b8b090308cb53ba80a1acca" +path = "static-publisher/static-content/file1656.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_rsync/03_rsync_demo02/index.html_gzip_7d52a3608eab60308b7f6584e9ed22449369a6df2ab312a23ab12c83a6b2837c" +path = "static-publisher/static-content/file1656.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_rsync/04_rsync_configure/index.html_048b9f1e02473a4bdf9296c499c8e940359a5ca03bd618a2ff5b4f49524b242e" +path = "../build/minified/site/id/books/learning_rsync/04_rsync_configure/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_rsync/04_rsync_configure/index.html_br_b6c7310c5bc80290f34922726682e333772415d8bbbda129f03fdeb0420151c9" +path = "static-publisher/static-content/file1657.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_rsync/04_rsync_configure/index.html_gzip_049b6ff243387058d1d8999eb14a0d062fefcfe0f8992297a808e90f9e71f3a5" +path = "static-publisher/static-content/file1657.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_rsync/05_rsync_authentication-free_login/index.html_152d6e574a6b5bc8674225b7bc27e7f6eeb6c7a7cc3624bc7e79a084f0c3036a" +path = "../build/minified/site/id/books/learning_rsync/05_rsync_authentication-free_login/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_rsync/05_rsync_authentication-free_login/index.html_br_081e51b6060fc48879a7e73781a905c800963a6dba74e65401c0c3ecaee87129" +path = "static-publisher/static-content/file1658.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_rsync/05_rsync_authentication-free_login/index.html_gzip_c84ae356c3a08bc7f3f3aed83f088b854db2e0e049656623aac4194be6742d75" +path = "static-publisher/static-content/file1658.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_rsync/06_rsync_inotify/index.html_d3e92536de9e8d58cfb39b4a8505a9ebeedf11ce911fe912bb9f6948ed967bdd" +path = "../build/minified/site/id/books/learning_rsync/06_rsync_inotify/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_rsync/06_rsync_inotify/index.html_br_994e9afd7ec29f4788328cb51c19c2d0878bdf90eaf6643e3e37636a203f43d9" +path = "static-publisher/static-content/file1659.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_rsync/06_rsync_inotify/index.html_gzip_401c0bcfc6a70daf70fe4767a66c237e8766b8b95c64e8f099c9a902728241e5" +path = "static-publisher/static-content/file1659.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_rsync/07_rsync_unison_use/index.html_2feec4510e82922c2b8274d62c075f3f49bd43928a8456119f94a8b75fea4369" +path = "../build/minified/site/id/books/learning_rsync/07_rsync_unison_use/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_rsync/07_rsync_unison_use/index.html_br_d4adbcb3bfe1a7d4c5dd71c48136c7d09aa2a671bb54db79f9b05faf01c02793" +path = "static-publisher/static-content/file1660.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/learning_rsync/07_rsync_unison_use/index.html_gzip_e0328a03a40b359820d46c9e0bf23b4acdfc3152b58d943a88cd67ef4e0249a2" +path = "static-publisher/static-content/file1660.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/licence/index.html_c2044ffa5b1572c750344a9f49d4575d6ed6ebfa5390babb30ba96d37663044c" +path = "../build/minified/site/id/books/licence/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/licence/index.html_br_e220a4da6a6022a204b1c7ce1b1d278230e2abe57aa2023a36378cfab18ed7b1" +path = "static-publisher/static-content/file1661.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/licence/index.html_gzip_9bbad69cf87eaba317575f9231ded9a68e73fb520843f09cf378b36a53838663" +path = "static-publisher/static-content/file1661.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/lxd_server/00-toc/index.html_14df2105e16c3860f4f5593eba8f27039acaa45179833b8566bcafcc19f5ae9e" +path = "../build/minified/site/id/books/lxd_server/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/lxd_server/00-toc/index.html_br_1d07eb80a5b822f18b6ab3f0bf43a1a37e8c41929748bee3547d9f9ab16a6188" +path = "static-publisher/static-content/file1662.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/lxd_server/00-toc/index.html_gzip_9044aaf71b4075593c37a85cb0182661962806a30404691533571122e5cc8c5f" +path = "static-publisher/static-content/file1662.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/lxd_server/01-install/index.html_c6da9037643ab1e7bf824a2c255311c55fbf8edf69c1b20ae749d23948e06ead" +path = "../build/minified/site/id/books/lxd_server/01-install/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/lxd_server/01-install/index.html_br_749dc5c593559f375170bbe711e6acf71c48bf373491bfc237ae1866f2c93566" +path = "static-publisher/static-content/file1663.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/lxd_server/01-install/index.html_gzip_d91dcd3e4ecea55a6ae709a5c6839a6372ea3e4657f411d2a7cac783b34867eb" +path = "static-publisher/static-content/file1663.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/lxd_server/02-zfs_setup/index.html_f5566b16bdeb2f1afe6336a95aa0c4ca3c524341724e5a5a816b7d75f566e063" +path = "../build/minified/site/id/books/lxd_server/02-zfs_setup/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/lxd_server/02-zfs_setup/index.html_br_93cada71e156a918c9448a2cda544b3bd5edb448967218f6465fd8e5feddb65e" +path = "static-publisher/static-content/file1664.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/lxd_server/02-zfs_setup/index.html_gzip_d679148ea891f5ee3acb07151e89658d816298a273fb35402157064221d93c32" +path = "static-publisher/static-content/file1664.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/lxd_server/03-lxdinit/index.html_5af62b94fd29669ee3c951dd7b1ddc9058526786022193f727a0e9c269695489" +path = "../build/minified/site/id/books/lxd_server/03-lxdinit/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/lxd_server/03-lxdinit/index.html_br_0e9021c3cc47ae196803e07f776d9b3f2a095c10b1d95a0d0c5263bac5aa3302" +path = "static-publisher/static-content/file1665.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/lxd_server/03-lxdinit/index.html_gzip_a59d6106c8878c1091ebff9bb526588e276833ab94984a23a0c437e4efb6b886" +path = "static-publisher/static-content/file1665.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/lxd_server/04-firewall/index.html_d71c5b2aaa37f4fad64c11a99c69baafab392818998e19e0c77f9a40e8048db2" +path = "../build/minified/site/id/books/lxd_server/04-firewall/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/lxd_server/04-firewall/index.html_br_fde53988079c108fed7f216c63a2fd31cb488e1711b086c8f003d557d266730d" +path = "static-publisher/static-content/file1666.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/lxd_server/04-firewall/index.html_gzip_322fd3d9a69cbe1bc7c6d57c89386fa14e448c1ed51ba05d893553876cca9cbb" +path = "static-publisher/static-content/file1666.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/lxd_server/05-lxd_images/index.html_4fee0aadc68cb7e34de37b5da7773c9da34585755a7bbab81f32e9c6ba32f96a" +path = "../build/minified/site/id/books/lxd_server/05-lxd_images/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/lxd_server/05-lxd_images/index.html_br_1af7185a9619ce0ede8bdd063106688eae99e0a70c5bedfa2121d1aeaece4764" +path = "static-publisher/static-content/file1667.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/lxd_server/05-lxd_images/index.html_gzip_89ad63fe8f273d4887ac121bb4b2a1e0a502d15e2a58be4cbd63443baf0fe461" +path = "static-publisher/static-content/file1667.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/lxd_server/06-profiles/index.html_cd84871e3a885a139d3e28b69d67b97634709c24d0bfe51109fd60d25b410d42" +path = "../build/minified/site/id/books/lxd_server/06-profiles/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/lxd_server/06-profiles/index.html_br_375afc84e40e7e6681f3ed27a5084c179df05ddd88ce21b110c5091aed3d878d" +path = "static-publisher/static-content/file1668.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/lxd_server/06-profiles/index.html_gzip_68e03acceb3e955caf2e597d30733c51210376c2ebe7386d8564010bf0a039a0" +path = "static-publisher/static-content/file1668.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/lxd_server/07-configurations/index.html_2e013f963c1e6d83c2c1e9d11e30a9f703b3a8dbc2e4e06f62274b070fa23de6" +path = "../build/minified/site/id/books/lxd_server/07-configurations/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/lxd_server/07-configurations/index.html_br_9e51de5bd6460858fd6bf7fd2f7214517ebf1348bfb7a99023a0ebf4465a980b" +path = "static-publisher/static-content/file1669.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/lxd_server/07-configurations/index.html_gzip_7d6fed41105c12873cdd5655f83309650cd012f417ef21b20d12200e855de88e" +path = "static-publisher/static-content/file1669.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/lxd_server/08-snapshots/index.html_0ae0b6365a152c74e4622385ce5150daaafc36bff74ca5d6bc594e0c9f2e6fcc" +path = "../build/minified/site/id/books/lxd_server/08-snapshots/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/lxd_server/08-snapshots/index.html_br_32910fd92a4f04b66e892cddcf6cbf983b5f9fc11b60eb4c9e682c9ccc8bb1b9" +path = "static-publisher/static-content/file1670.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/lxd_server/08-snapshots/index.html_gzip_0a0ff305ef98c01377a1a3d8215dca01d6095fbff82b7cc1f05a73b2eedb2fb5" +path = "static-publisher/static-content/file1670.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/lxd_server/09-snapshot_server/index.html_a51f7d4342fa3828f5635e7099da9e0f501d087050a0068f753daaa437e1af71" +path = "../build/minified/site/id/books/lxd_server/09-snapshot_server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/lxd_server/09-snapshot_server/index.html_br_3513ac4b95df82ce00f73ca2f0dbc04f470bd4483e22a6b2ebbde5fc1dcf32d5" +path = "static-publisher/static-content/file1671.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/lxd_server/09-snapshot_server/index.html_gzip_9158a88475e114fb2836d746002a49be67e6a7ae431e6a445ada5e066240608a" +path = "static-publisher/static-content/file1671.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/lxd_server/10-automating/index.html_315ef12a6db8aac0eb46cd62180032f8ad054de67c69e9140efbfe56d3cb2384" +path = "../build/minified/site/id/books/lxd_server/10-automating/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/lxd_server/10-automating/index.html_br_70bf831cf3755f9f2fc16d30fb5d4fe8fcb5fcb07b4f4d254898bd599e1398ff" +path = "static-publisher/static-content/file1672.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/lxd_server/10-automating/index.html_gzip_18c2f57281af0ffeed77b296fc9cd142d61dd10e35fdf5daf4f3fc61347dd4a1" +path = "static-publisher/static-content/file1672.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/lxd_server/30-appendix_a/index.html_7cbee29bc1b8264ce7ad38e95eb4a887ca5b7b9cee5e697e2cf41dde7543b3e3" +path = "../build/minified/site/id/books/lxd_server/30-appendix_a/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/lxd_server/30-appendix_a/index.html_br_6dc9c46ac176692c8c99a807b543ab3195d965a90a4d9351f14b6b3061c5b44a" +path = "static-publisher/static-content/file1673.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/lxd_server/30-appendix_a/index.html_gzip_81dad2863e6e41e211bc0680b2b8b40cdce33f9f7ef975ef6e2f7e5a255b7e4f" +path = "static-publisher/static-content/file1673.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/nvchad/additional_software/index.html_6432fa8c4d1d8d1d2504cec8ab894c0151f729512706a7e2326eab9f657c6c8b" +path = "../build/minified/site/id/books/nvchad/additional_software/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/nvchad/additional_software/index.html_br_f1abf030862bb52b27fcbe9085ebf9d078a912fb396359b253560a08f9245878" +path = "static-publisher/static-content/file1674.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/nvchad/additional_software/index.html_gzip_0cec5e07b199ae146b0bc615a703a7130b5b2cda8bf03ee7be1247a35074a41b" +path = "static-publisher/static-content/file1674.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/nvchad/index.html_354d039513155f220b982a955d39bf0cb54dacb54e2f9ae549f5fc805e59115f" +path = "../build/minified/site/id/books/nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/nvchad/index.html_br_5615fd285368d4588cca30d7f26af2164f8749e42634b3a0e0950806beb28887" +path = "static-publisher/static-content/file1675.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/nvchad/index.html_gzip_a61b813efa98860b2baf9d931e74a409266a98930ca24bfc5a37d50b36d3e7dd" +path = "static-publisher/static-content/file1675.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/nvchad/install_nvchad/index.html_3d040d6f1ca10bc39db4ca3c6fad1469ae7c9eebc48ce2d684fc0183fa043923" +path = "../build/minified/site/id/books/nvchad/install_nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/nvchad/install_nvchad/index.html_br_61b7748fda99dcd10255b6cf4cb223e1ec319d49d571e66e4f432037cd2c4845" +path = "static-publisher/static-content/file1676.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/nvchad/install_nvchad/index.html_gzip_66356444609e18f6188ce379391b82cc5326f5295b371725d3c9031f8369aadf" +path = "static-publisher/static-content/file1676.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/nvchad/install_nvim/index.html_0c417afeed3242fa9d005ecf2ee8e7216fa5d0971856a9af73c95c645e767285" +path = "../build/minified/site/id/books/nvchad/install_nvim/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/nvchad/install_nvim/index.html_br_5ae876c6f1f8cb307640c08c23a42eb66a35979840611f196034ee6c88587bdf" +path = "static-publisher/static-content/file1677.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/nvchad/install_nvim/index.html_gzip_ee611dec084a0bcd1e0802b250b2377e85eeed52ebb37c97d48fde88894cbd16" +path = "static-publisher/static-content/file1677.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/nvchad/marksman/index.html_274370008c467afb46133978f93fc79c57e111dded4f30510ed4ba3cd2c17056" +path = "../build/minified/site/id/books/nvchad/marksman/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/nvchad/marksman/index.html_br_dae8f7b2c7786e2db4dc950e752d0dd13b391fee2146c5ab9b70bf8ab240f8eb" +path = "static-publisher/static-content/file1678.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/nvchad/marksman/index.html_gzip_5e1aea8bce04ea9b30da40d009c28ed3d8438f6140ea2bd8facf13efc2dcfaa8" +path = "static-publisher/static-content/file1678.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/nvchad/nerd_fonts/index.html_9d4b2126998c1671b4fad2ede3863b91a088d503f8e7fabcea480520ecec4d7d" +path = "../build/minified/site/id/books/nvchad/nerd_fonts/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/nvchad/nerd_fonts/index.html_br_51294e499bd18cf5a8b7efa2d37cb4886542792559254fed391b98fddb85ba83" +path = "static-publisher/static-content/file1679.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/nvchad/nerd_fonts/index.html_gzip_4d79923e3710f92cfa193afdf2362e9170aa45cf1f4b434e87cf06e70efaf8f7" +path = "static-publisher/static-content/file1679.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/nvchad/nvchad_ui/builtin_plugins/index.html_38aad6d7ca37304eee288819bb4ac2bae04f6a6ff5a0a8c33a3b57a21a570ea6" +path = "../build/minified/site/id/books/nvchad/nvchad_ui/builtin_plugins/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/nvchad/nvchad_ui/builtin_plugins/index.html_br_74ba8c06398f1c518af02bbb0705abd55be408e08d7d862279c8572499fc0bcb" +path = "static-publisher/static-content/file1680.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/nvchad/nvchad_ui/builtin_plugins/index.html_gzip_a6f1e12011552934fa8645a95fab316fb919e015b653b41f3d5fe5006d66822a" +path = "static-publisher/static-content/file1680.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/nvchad/nvchad_ui/nvchad_ui/index.html_7b773fe307df02d8aadd9154f40b8fd6756571aa4991803e7e885ed5431147c1" +path = "../build/minified/site/id/books/nvchad/nvchad_ui/nvchad_ui/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/nvchad/nvchad_ui/nvchad_ui/index.html_br_8b583ea8d21853c2511d42d54014a2fa0577e9a9b5ef6a036fb5da6b518c37e4" +path = "static-publisher/static-content/file1681.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/nvchad/nvchad_ui/nvchad_ui/index.html_gzip_a787d4033a3b7bcdd1322a4fb27e541167386e4c115c791bfbb4fca7ed6b0d9b" +path = "static-publisher/static-content/file1681.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/nvchad/nvchad_ui/nvimtree/index.html_73b18b3659dbfb7f9c4292ec1ca9f6f68cff8a8f9f7fd09e7ec4ed068d550306" +path = "../build/minified/site/id/books/nvchad/nvchad_ui/nvimtree/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/nvchad/nvchad_ui/nvimtree/index.html_br_6302fdbba400dd48030b03942114578e7b953f4dcb7ac1249d160509c3f46b3b" +path = "static-publisher/static-content/file1682.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/nvchad/nvchad_ui/nvimtree/index.html_gzip_e6c1e257e4903e9dde7e1693b40ef0e16feea5bf4a42050b0c65bd2f1e0e6459" +path = "static-publisher/static-content/file1682.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/nvchad/nvchad_ui/plugins_manager/index.html_0faee07a66c24c2431ffd9aa714fff46d3bb9974b3104cd7216eae33601a4860" +path = "../build/minified/site/id/books/nvchad/nvchad_ui/plugins_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/nvchad/nvchad_ui/plugins_manager/index.html_br_d2892b9aadee898dc945bb87131c88fb4a0f4149a16eff003f8a64ae71aa1a76" +path = "static-publisher/static-content/file1683.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/nvchad/nvchad_ui/plugins_manager/index.html_gzip_f3675e0dfbba2a1ccfd47085fcb7043a438d39950b635f39cb4ff88b80a73e8c" +path = "static-publisher/static-content/file1683.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/nvchad/nvchad_ui/using_nvchad/index.html_3be6837cc6a0b63f145ffead92b2a6c61bd39ad798d5364f1ede4f8333dc3503" +path = "../build/minified/site/id/books/nvchad/nvchad_ui/using_nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/nvchad/nvchad_ui/using_nvchad/index.html_br_f7c23b87e6662735283b8ff195a43ec5d37c9707fc39c74a2caf348743d16467" +path = "static-publisher/static-content/file1684.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/nvchad/nvchad_ui/using_nvchad/index.html_gzip_3d7157fefe198bbe7a96579762eecd6c4f0cf40b008c7bc004bf97fb470785f3" +path = "static-publisher/static-content/file1684.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/nvchad/plugins/index.html_233b1ba94c5523f04795ee3cddb1ae6e098725649d8be544d7f301aa98419b4d" +path = "../build/minified/site/id/books/nvchad/plugins/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/nvchad/plugins/index.html_br_a8196eb5e3f1ea31521ce658aa6953cf681c2fba4a15d59e329d6a4852731014" +path = "static-publisher/static-content/file1685.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/nvchad/plugins/index.html_gzip_815281aede7812705fbc98543c742c4f07413b99bed6eb71e993df41e3afa15f" +path = "static-publisher/static-content/file1685.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/nvchad/plugins/md_preview/index.html_5affcef60e3c0035b6249efaed064ea80c409f99ed869f9bfbee1871e3b0c778" +path = "../build/minified/site/id/books/nvchad/plugins/md_preview/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/nvchad/plugins/md_preview/index.html_br_0ed4d65965bdd99ac9d779b4a8d5b6ee7bea9e657ef413a62b61e7063debfd26" +path = "static-publisher/static-content/file1686.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/nvchad/plugins/md_preview/index.html_gzip_524066a4a161253e9333c0662389e99ac6c5fe77133234b8790649db29a0844a" +path = "static-publisher/static-content/file1686.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/nvchad/plugins/projectmgr/index.html_5c479e934d6c9cc4bfc163f43866d0313c1c35d55fdbf811620033e4adb77f63" +path = "../build/minified/site/id/books/nvchad/plugins/projectmgr/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/nvchad/plugins/projectmgr/index.html_br_913815107caf312fabe515737b05d2b6db8bb6eeb1ac84c488871e1095d3449c" +path = "static-publisher/static-content/file1687.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/nvchad/plugins/projectmgr/index.html_gzip_2019b0a118fb7600beb71ff2490680a53668fbd4fbb08ac7967235d1624eaf77" +path = "static-publisher/static-content/file1687.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/nvchad/template_chadrc/index.html_c6c6f1644e343feafaf7d6e972fd0369265969e6a8b578dd20a9b57d3e422170" +path = "../build/minified/site/id/books/nvchad/template_chadrc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/nvchad/template_chadrc/index.html_br_35baf808eca1db1a65a15ca1801c1ccd8608e48aaae8807306ccf51b541f94d0" +path = "static-publisher/static-content/file1688.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/nvchad/template_chadrc/index.html_gzip_248804afe3b1465ecd2abcb5d0729520657071018083c03cfa09b29b5782f61e" +path = "static-publisher/static-content/file1688.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/nvchad/vale_nvchad/index.html_dd1381c68adcace953fff29e420d1358eee5fcab624dfb8a3ceb580a8e691420" +path = "../build/minified/site/id/books/nvchad/vale_nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/nvchad/vale_nvchad/index.html_br_13dcc083c6522a9dde139b7cbe6be321bd3dbf544739a890bc5582244b013629" +path = "static-publisher/static-content/file1689.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/nvchad/vale_nvchad/index.html_gzip_ebdb0e57aef225d2f0df30753adc7bdcc483ad474471d708502951888c772474" +path = "static-publisher/static-content/file1689.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html_fea09389c64321f4540b2d9add65e24095916abbbc8ecaed0a0feed3d794e7d7" +path = "../build/minified/site/id/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html_br_519c46b005b57abe9e72164fb779b4d8e914136908fe245c14980a27d049b6dd" +path = "static-publisher/static-content/file1690.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html_gzip_30d5806133d9733257beb52989399e737f1a05416542390bf67e19839756443f" +path = "static-publisher/static-content/file1690.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/sed_awk_grep/2_grep_command/index.html_1b7dbe3e7de2b1f84b2ea810d4031bd8f7c5b3ef501dd71d6659520db00d90cf" +path = "../build/minified/site/id/books/sed_awk_grep/2_grep_command/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/sed_awk_grep/2_grep_command/index.html_br_cad1ba5bb51c862c51ed9f48f989b95d93a35c6b2a78b3fa439f52704f2fba07" +path = "static-publisher/static-content/file1691.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/sed_awk_grep/2_grep_command/index.html_gzip_51a0dc10e921d90c41fc0c799a6237aca0c56b31b701474251f03453fed5a639" +path = "static-publisher/static-content/file1691.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/sed_awk_grep/3_sed_command/index.html_d7e628e3d435dd80f0953e6ca6207e5a1f8e8ea9a8e6b653659b7060bf464a0c" +path = "../build/minified/site/id/books/sed_awk_grep/3_sed_command/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/sed_awk_grep/3_sed_command/index.html_br_1a77131c8828742daa3c2e5820a886afcce0045a34a1f176c0008b22fc7ed9f1" +path = "static-publisher/static-content/file1692.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/sed_awk_grep/3_sed_command/index.html_gzip_24ce630c08357bcfc56a275e147d3964969d5069d21c67495c8364f1d45d9427" +path = "static-publisher/static-content/file1692.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/sed_awk_grep/4_awk_command/index.html_e7cdb87692f5caf6b067905a4a70122cde33385b405d48014f687b2f9b66b932" +path = "../build/minified/site/id/books/sed_awk_grep/4_awk_command/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/sed_awk_grep/4_awk_command/index.html_br_656747e57ee5f151393ec8fd34897caaff25fae9bc8dbe3de4f0fbfaeea071c5" +path = "static-publisher/static-content/file1693.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/sed_awk_grep/4_awk_command/index.html_gzip_15634bba794cbef3fddc4c8ee503d93e899220ef26c4a30c6979dcf9dcff8681" +path = "static-publisher/static-content/file1693.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/sed_awk_grep/index.html_b6839b947434429b89207e6e64f747665d2de2c27dbce6ab49512405adf07597" +path = "../build/minified/site/id/books/sed_awk_grep/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/sed_awk_grep/index.html_br_25523f19abf0446b4ed7a47b54f57cfb848c309ec7a3dedf6978d3c6accc6464" +path = "static-publisher/static-content/file1694.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/books/sed_awk_grep/index.html_gzip_6ea191b1def9d4db7245c98518ca42416965342105053c3a4aebf9ead1b4d521" +path = "static-publisher/static-content/file1694.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/containers/docker/index.html_7ffa6112abaf5b0c2ccd4d54a613d8d456f3ec557b9b8315c6d46514011136f1" +path = "../build/minified/site/id/gemstones/containers/docker/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/containers/docker/index.html_br_1936dfd925a00fb2bf3b5652e2acde1c5029eb3bc50b3be90104d145d974cea2" +path = "static-publisher/static-content/file1695.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/containers/docker/index.html_gzip_940f099bfe97d998e77f06fa16c8f386adfd94edb34b0452590dbe96d836c583" +path = "static-publisher/static-content/file1695.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/containers/podman/index.html_2ca552c4b4acdb7e526bd716ade7be0f54023ca34b4908bc10044e26f705032a" +path = "../build/minified/site/id/gemstones/containers/podman/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/containers/podman/index.html_br_bd16790fa168aa58c48c5d0285cf6d6b15294bb1615b3fff2a59d514cffeedd1" +path = "static-publisher/static-content/file1696.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/containers/podman/index.html_gzip_b533c6c81116fe60ddf02195c113d7280fdcd49ca31675562d1e50bbfda9d6a7" +path = "static-publisher/static-content/file1696.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/core/view_kernel_conf/index.html_6303d65915448fdaeec6c3aadb1fd140c0a9f9cc7b86d839f093fb5beb99edb2" +path = "../build/minified/site/id/gemstones/core/view_kernel_conf/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/core/view_kernel_conf/index.html_br_b70eea90b90c581f415cef2685114a99c8a8b37d2d593c45032d5c3f88ee84f8" +path = "static-publisher/static-content/file1697.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/core/view_kernel_conf/index.html_gzip_4dcf72a5d8848eedd0fa08a271827d790daedda69e5994c7507597461f218fd0" +path = "static-publisher/static-content/file1697.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/dnf-swap/index.html_69b9b965715e48d484d6c7ff5828f71fc5ec42eb177e1688423cd06468859fef" +path = "../build/minified/site/id/gemstones/dnf-swap/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/dnf-swap/index.html_br_cc2df635e0522d2e566daf03239d1bf9536e63e22458dd5818bdc0deffeaf20b" +path = "static-publisher/static-content/file1698.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/dnf-swap/index.html_gzip_6097b5d6e7efa8836feaf62de5786da1ee99627d510f330616fba87c06298467" +path = "static-publisher/static-content/file1698.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/gemstone_template/index.html_9cb9a9b087070436310da368492f8898e55c88cef6e01233a2af26b225461487" +path = "../build/minified/site/id/gemstones/gemstone_template/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/gemstone_template/index.html_br_0690bd988799e14b0093846b6b695a07b9b4911601b43b3e334d9387fc99a624" +path = "static-publisher/static-content/file1699.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/gemstone_template/index.html_gzip_3ac353669e1bdabb2f3c419f8760facee3c1d4643b658a2bb1f8c628ca563739" +path = "static-publisher/static-content/file1699.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/git/00-gh_cli_installation/index.html_85941be9a285d61019d503d555d12f592752b65572d117afaee0bbec5cbec54d" +path = "../build/minified/site/id/gemstones/git/00-gh_cli_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/git/00-gh_cli_installation/index.html_br_c73543d89abb7bfd6c3599b8633d487336805e22202e33033a134b31256acd9b" +path = "static-publisher/static-content/file1700.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/git/00-gh_cli_installation/index.html_gzip_d1786ba92b466158c1e68ad1f83bbcdd8e488b4946cf82750adf7892e8160136" +path = "static-publisher/static-content/file1700.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/git/01-gh_cli_1st_pr/index.html_eb3f04eea0ed8167e953b01a6dc7e150d0d133c8dea67e113ce72d32dfce3bd9" +path = "../build/minified/site/id/gemstones/git/01-gh_cli_1st_pr/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/git/01-gh_cli_1st_pr/index.html_br_8c082c47c390517669c2f1fb613234598c780878a60dfec5625ae3f771e3c787" +path = "static-publisher/static-content/file1701.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/git/01-gh_cli_1st_pr/index.html_gzip_fda38c1cb04b3bde4512a8f0212cc38ab8c3345b6b8a32fb2b35281b42751ec8" +path = "static-publisher/static-content/file1701.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/git/02-gh_cli_edit_pr_title/index.html_b50d014a9ecb5605e998b59d4c2121bb0723032bdab5a3d6081bad4c3ceb07e3" +path = "../build/minified/site/id/gemstones/git/02-gh_cli_edit_pr_title/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/git/02-gh_cli_edit_pr_title/index.html_br_59dbbd55448cfe67ae35b1b344170767b658368c4d663345176d3b5cead985ba" +path = "static-publisher/static-content/file1702.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/git/02-gh_cli_edit_pr_title/index.html_gzip_0caea2247673bc9f2ed9a62e5088169b48dcc7c58cab1ba1d4e2724a2e1c1bc2" +path = "static-publisher/static-content/file1702.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/git/02_github_web_edit_pr_title/index.html_fd7ff7d4425f914a15c172aba806cc4bb6c707cbb59c9db8caf8aec82ff014a4" +path = "../build/minified/site/id/gemstones/git/02_github_web_edit_pr_title/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/git/02_github_web_edit_pr_title/index.html_br_63be5a8beeffc615b86745dea75487602ab1b2427cd3a1352f596e0609780392" +path = "static-publisher/static-content/file1703.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/git/02_github_web_edit_pr_title/index.html_gzip_cab8c4349f711134e7081d6a9fd63b6df63dfd18b7c09cd3d303e61f1717f8fb" +path = "static-publisher/static-content/file1703.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/git/feature_branch_workflow/index.html_5cd1bde120f7051408163f6770da352c79e6a8900b6f62db626ab0929a187c31" +path = "../build/minified/site/id/gemstones/git/feature_branch_workflow/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/git/feature_branch_workflow/index.html_br_3ec1e5533ab386429f8f1ed2fea805b160c2872efbbaaef99742aa60449b28e8" +path = "static-publisher/static-content/file1704.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/git/feature_branch_workflow/index.html_gzip_9dad6d829e388e1b8e785d4ef80df6835661f9c1f1bda0777f7d8dfdd203d070" +path = "static-publisher/static-content/file1704.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/git/fork_and_branch_workflow/index.html_b51c6c7287b2b3044f3381245b61401055a3527a7953bf8ff797f0a8d11be639" +path = "../build/minified/site/id/gemstones/git/fork_and_branch_workflow/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/git/fork_and_branch_workflow/index.html_br_29faf13dafe2e755dc2d1feb4a2d20dc14fcc8cac546c6f8adb4b4b96b87cca3" +path = "static-publisher/static-content/file1705.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/git/fork_and_branch_workflow/index.html_gzip_3ac1d036be6e609c4d65bc59aa3eb79f808463ccf34db9e6ec3d1f37654262b5" +path = "static-publisher/static-content/file1705.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/git/git_pull_vs_git_fetch/index.html_729d884c0f78402438a999faee93ce2e6a6700c498303c5d380e19336af67aa3" +path = "../build/minified/site/id/gemstones/git/git_pull_vs_git_fetch/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/git/git_pull_vs_git_fetch/index.html_br_7f3a48458fb067698081473ef3e9c2c102a08344934ed930a67ff8c65d81443b" +path = "static-publisher/static-content/file1706.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/git/git_pull_vs_git_fetch/index.html_gzip_d66da4863ba10d5d83481ac2a98062958d501cc1b6c0a046d5aeab6bb30c1f07" +path = "static-publisher/static-content/file1706.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/git/git_remote_add/index.html_7cc291537379430790d17b625549bfbe4cbaffc6bf9b7efed5cd6d66146f50e5" +path = "../build/minified/site/id/gemstones/git/git_remote_add/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/git/git_remote_add/index.html_br_9416c2bf9ebb9bd8daf178bf8300aa40f3cbd39c422016cab9ad27f181d40b0d" +path = "static-publisher/static-content/file1707.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/git/git_remote_add/index.html_gzip_c91684f2c54e07e64dc72179c0bd373f3a12d44185fbca1ed58d914e76b81ca0" +path = "static-publisher/static-content/file1707.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/git/tracking_and_nontracking_branch/index.html_5e6494d033f94096a5dede61a3ce5c4749da10c797e891c6aefbf4cadfd802e4" +path = "../build/minified/site/id/gemstones/git/tracking_and_nontracking_branch/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/git/tracking_and_nontracking_branch/index.html_br_df383817d89e9fef2dd10fdce8a1dd550327637d72da04c5ffabebc0c1710ffa" +path = "static-publisher/static-content/file1708.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/git/tracking_and_nontracking_branch/index.html_gzip_184334d3288d3eb7dff3a2e07f1360362b2caaff06ce8f7bf25e19ba211f4b20" +path = "static-publisher/static-content/file1708.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/htop/index.html_917b75ba5d0fc5ee61b5f68233d4b72e4a99cfec1de53bdc5c0dcad80a56b540" +path = "../build/minified/site/id/gemstones/htop/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/htop/index.html_br_26c451e5b648ae718c87f9e258739041a4868096d80adbb78b602726339143fe" +path = "static-publisher/static-content/file1709.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/htop/index.html_gzip_a0f9adec7c81de1b2855ecabad631a54b0c4d186620f43430a2e2abd9e166e48" +path = "static-publisher/static-content/file1709.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/https_rsa_keygen/index.html_c4cae80226319d98522b152b64a014717b21eda29334ae554f8682485c44d794" +path = "../build/minified/site/id/gemstones/https_rsa_keygen/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/https_rsa_keygen/index.html_br_61c667c895782547b931ec601f073f8d6c1ed275defd156ad84841603e513d0c" +path = "static-publisher/static-content/file1710.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/https_rsa_keygen/index.html_gzip_056e47fd9bdbf8afd21a2f77eeb334c8b907b4ed1c5eafeb70690d472e7aaffd" +path = "static-publisher/static-content/file1710.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/index.html_ab596a2a6c8b2ab42bc15472f3587943756f093b6f5d5162435488690e4832db" +path = "../build/minified/site/id/gemstones/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/index.html_br_076223138d8dcb63538c1798f91bff84d0ac1c16310010de61dac133cee3b0e3" +path = "static-publisher/static-content/file1711.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/index.html_gzip_39ccf61cba6095288b919b49a1f8999a9b018967ee3859fc31f53b30eda0d937" +path = "static-publisher/static-content/file1711.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/markdown-demo-v2/index.html_b3c4517725a96acaed70d56e27230a13709e0bed2ef6bdfc215f23cf38c9edc7" +path = "../build/minified/site/id/gemstones/markdown-demo-v2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/markdown-demo-v2/index.html_br_cbca8c7772aceed160a753d03d53aabd629aa4cc2df0b042a5194cfe3782e2c3" +path = "static-publisher/static-content/file1712.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/markdown-demo-v2/index.html_gzip_24d8b1edb032b39cc30b30816267e5326441ddf7eeac169e9df9c43bfa03b2d8" +path = "static-publisher/static-content/file1712.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/network/RL9_network_manager/index.html_bcc17fac324040d79e1329c18b9cc71b9f76d31aa632e361a653fdea422743aa" +path = "../build/minified/site/id/gemstones/network/RL9_network_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/network/RL9_network_manager/index.html_br_d47eebff9f3af1cc1d566dd7720ac61deaf885ebd7db662b0502d8643a6566ae" +path = "static-publisher/static-content/file1713.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/network/RL9_network_manager/index.html_gzip_700b363ed35b3a1f596014b919155f13ae53917bb984cece1a0c7d02870446df" +path = "static-publisher/static-content/file1713.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/network/iftop/index.html_66cbd4d1f49b8a499d98932d35f7fda46e42f55ac65715b8a2204ec8dde7562a" +path = "../build/minified/site/id/gemstones/network/iftop/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/network/iftop/index.html_br_c9d20c0027da3101e03c9bb9fd8d3210f293e44c1020cedb033f04297ae1de1f" +path = "static-publisher/static-content/file1714.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/network/iftop/index.html_gzip_f84dc3860f9de8c37d4422352279d154d8ab374776faa911c29c4d023668ae28" +path = "static-publisher/static-content/file1714.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/network/mtr/index.html_6ff99e1ddd193d3199a797c443cf6ab83250911a2634b84799d0d2c9d2c77fac" +path = "../build/minified/site/id/gemstones/network/mtr/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/network/mtr/index.html_br_1da248ba1602ecd8f9c815301b64e05f2d407eb34b2d37ec84d61f65d7c5b2f8" +path = "static-publisher/static-content/file1715.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/network/mtr/index.html_gzip_1d0f6d9ec671964eef277429445830b0347cb3ba5a36c8baa7c175797ca3065c" +path = "static-publisher/static-content/file1715.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/network/nload/index.html_288d05dc634d0a6b8fce3e86b32af6e9b415eb7f5a84cc17ff48173d6e47a4c2" +path = "../build/minified/site/id/gemstones/network/nload/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/network/nload/index.html_br_b06d3627620164d9382be79d990dc686727888700c4d26c172c686ace483b3b4" +path = "static-publisher/static-content/file1716.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/network/nload/index.html_gzip_419739baa384d53ddaec2c2e04cff6d0b6c0fe5b89e1546212b9bc6a444ce345" +path = "static-publisher/static-content/file1716.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/network/nmcli/index.html_61e347ca8507d60eab3dd3ef2f97b9c4eb07ee0b4575b8aa4382df4aec79e60c" +path = "../build/minified/site/id/gemstones/network/nmcli/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/network/nmcli/index.html_br_fff799eb3b3da6e68c983ce2c0fc88ce213b1a847a1fde35eccdc854777fc338" +path = "static-publisher/static-content/file1717.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/network/nmcli/index.html_gzip_07f68983158fb9f1a0f2ac21d9c7566b1a628898e4f4a41bb6928c2f3a4beb2f" +path = "static-publisher/static-content/file1717.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/network/nmtui/index.html_2688696c9cfc1dd288e7a5c1db117f9730a800ba541b1861639894ff4765581e" +path = "../build/minified/site/id/gemstones/network/nmtui/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/network/nmtui/index.html_br_f0a6556d69622448abf33f047ac0b6305a94e95f6ef4f9377687b92faa7c90bc" +path = "static-publisher/static-content/file1718.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/network/nmtui/index.html_gzip_bf055fe703b67f81123ac186f42fd68b70c48bbbcad1e27c4cc6b04de8039f62" +path = "static-publisher/static-content/file1718.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/perl_search_replace/index.html_090bb428135b42fa417763a656c2cdfc020689c4e50396aa4de633b4596b9591" +path = "../build/minified/site/id/gemstones/perl_search_replace/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/perl_search_replace/index.html_br_dee588ec9d4dd812398560b34f93b7d28bb00ca7e4093946985fd0e6949c4379" +path = "static-publisher/static-content/file1719.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/perl_search_replace/index.html_gzip_be0980c3a7882249b5df00464c5d2c57500a4095469949c4a982e780cbfd5d7c" +path = "static-publisher/static-content/file1719.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/rpaste/index.html_aab4b7a09f2a4980d6051b1b539f4de301a4ab7297724a5fde8c7aeaedecbf79" +path = "../build/minified/site/id/gemstones/rpaste/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/rpaste/index.html_br_3f0bf68ae07221e41d257f423093fbd58500df1f6bf8882ac37e8182b3c53094" +path = "static-publisher/static-content/file1720.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/rpaste/index.html_gzip_337ae7606ecca4c0ff20566785fdc2b2eff869fe96bd8f7dbae5f22f8849934c" +path = "static-publisher/static-content/file1720.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/scripts/NoSleep/index.html_d88ae626493d5f34d0694ac58c2cf23aff43f4275d7fa9fa52228fd83fd27af9" +path = "../build/minified/site/id/gemstones/scripts/NoSleep/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/scripts/NoSleep/index.html_br_5acd3d4e34667b20e385af0fbcb91de1fd7aec7f9777ef1fc892f2f540f7467d" +path = "static-publisher/static-content/file1721.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/scripts/NoSleep/index.html_gzip_c217214ede768d165ef9aa227d60a5a3441815da7330fe284f64895745c1f7e8" +path = "static-publisher/static-content/file1721.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/scripts/bash_stub/index.html_ce1671a9637925d3e11ace34d5ff477021a62038f3733981328b1e4f45ee1991" +path = "../build/minified/site/id/gemstones/scripts/bash_stub/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/scripts/bash_stub/index.html_br_e352ff464671b6d58787033ea3786a82fe30c18adf20ffc233c71f485c0036da" +path = "static-publisher/static-content/file1722.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/scripts/bash_stub/index.html_gzip_859131c0ec400fd1a5b5f05b24bb1912b0e2f55845696ced04a7dea9b3a839e8" +path = "static-publisher/static-content/file1722.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/sed_search_replace/index.html_73aea72994e1ca3999d712a06b8a2bf38af671a57f82896eb65080202bca938b" +path = "../build/minified/site/id/gemstones/sed_search_replace/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/sed_search_replace/index.html_br_fb795ce0d11b0c1d8c1c1031996ba52a66f4f33fac48915a854432b29033a048" +path = "static-publisher/static-content/file1723.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/sed_search_replace/index.html_gzip_d10a4bca4ec07d771f04fc9ceef0c1bc1957667f0dd44c3ae3b7df2f534a3d93" +path = "static-publisher/static-content/file1723.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/setup_local_repo/index.html_176081da38c056be1118844e7ae6de3bceb1648a9612734ff240a2a2e68c9a0a" +path = "../build/minified/site/id/gemstones/setup_local_repo/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/setup_local_repo/index.html_br_b1de5ecea5494336c7d7312d4411c33987afe63f880a638aea63279c463bc81a" +path = "static-publisher/static-content/file1724.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/setup_local_repo/index.html_gzip_2bcb29ea73e179a8f661e2f0b2e1e20340c9a80c4074fa6c41a0fac7ccb5b6b3" +path = "static-publisher/static-content/file1724.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/string_color/index.html_a953fb0e25fd07d45e10e7611071c0f8b24bec6a8b768673223cf8f067f4f26a" +path = "../build/minified/site/id/gemstones/string_color/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/string_color/index.html_br_704400d2c23ce259ad9394819cd16a95cebfaabebd65a61f5246ca90ccc7d831" +path = "static-publisher/static-content/file1725.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/string_color/index.html_gzip_6c058113409d82f1372d2c677d48ec736d69be8f9a3f6a6195cbc1b45e2b56a3" +path = "static-publisher/static-content/file1725.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/systemd_service_for_python_script/index.html_5a0db215e38895b1ae7d14c8bc3d604f3deb3991163a6946e251ed312c54ae85" +path = "../build/minified/site/id/gemstones/systemd_service_for_python_script/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/systemd_service_for_python_script/index.html_br_b0ca36c6e96d2b1921f0e5485b27536284e57fae495e82cdafb2876eb827044e" +path = "static-publisher/static-content/file1726.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/systemd_service_for_python_script/index.html_gzip_f776d0813c06b143879b66d4d278f7e6d0cc3d1d77816b77d0f175b7af7f0710" +path = "static-publisher/static-content/file1726.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/test_cpu_compat/index.html_3050ef30559edc282f62f58be0cf2ed0a6a140dc7aa23ebc0420275bdcbde605" +path = "../build/minified/site/id/gemstones/test_cpu_compat/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/test_cpu_compat/index.html_br_8d0fbdd753c8a409966b495ae22e6bd5c24349b13ba1d43700b1cc3dc92eeb71" +path = "static-publisher/static-content/file1727.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/test_cpu_compat/index.html_gzip_7f94cefc2d5a116112b14023b2ca85c1c3ffbe9c559fdac3ddc95ab8aad800aa" +path = "static-publisher/static-content/file1727.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/torsocks/index.html_561abd4cca94882adb9b2b53168db65dff927784d3cbf490cfcd2657725f3a16" +path = "../build/minified/site/id/gemstones/torsocks/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/torsocks/index.html_br_2102e359e00b25bae81357d654a921cac9fb9734db6d4f9f01a8c561895a2b7c" +path = "static-publisher/static-content/file1728.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/gemstones/torsocks/index.html_gzip_39cba4ec3b1a359834a671bcbb77aa2456047fcd7c49738aae8f204d1150e93a" +path = "static-publisher/static-content/file1728.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/8_6_installation/index.html_1d1d5f81dbf257140905775e4125ef76b5cfbf4f3475ac2158f85e7235139312" +path = "../build/minified/site/id/guides/8_6_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/8_6_installation/index.html_br_6f5a87242997bc1430100cc98487fb092cf8c4ab69d858b5b10411e6c4a81570" +path = "static-publisher/static-content/file1729.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/8_6_installation/index.html_gzip_80276c4e8c105710cef5fd1f92041593de2663929d32a0439296a5d4ba654d0f" +path = "static-publisher/static-content/file1729.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/automation/anacron/index.html_4d01206e9e8448389246e19065c77bb4c97b2c7841383c06a36fd1a8b3f0056b" +path = "../build/minified/site/id/guides/automation/anacron/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/automation/anacron/index.html_br_eb3f406a5005bc513c8c10ca2583cbc2c47c1814cf331697af8912f6652509ac" +path = "static-publisher/static-content/file1730.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/automation/anacron/index.html_gzip_1f4f7bd45938fe360a3c981310ff4d3c15c22f60748194f0775d4cedc2baef14" +path = "static-publisher/static-content/file1730.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/automation/cron_jobs_howto/index.html_ce8505788ba25cc94f729da9da9063838fb8674ed652c864e8cc57479d0d876e" +path = "../build/minified/site/id/guides/automation/cron_jobs_howto/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/automation/cron_jobs_howto/index.html_br_6992136a46821b57016235d0fc98227972ee72078e0f15d3424b85cd9abfb30f" +path = "static-publisher/static-content/file1731.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/automation/cron_jobs_howto/index.html_gzip_6953ecf622ee9a941f606aa09e18596695b1fb3ed84e8c725910b0adda2ec1f6" +path = "static-publisher/static-content/file1731.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/automation/cronie/index.html_5eb531312a264d85d97bfda3bca537e76a4c2811b82c996ce825ef3da94ca959" +path = "../build/minified/site/id/guides/automation/cronie/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/automation/cronie/index.html_br_bc1da82beb0f2983cee8aa2b3e879c6df1fd5bb82d14443dec1648629b0ab6ab" +path = "static-publisher/static-content/file1732.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/automation/cronie/index.html_gzip_d3bad34d4d270a3d75373a17e21cf8a1aa16975b6f8553202ef43588f4ebe6be" +path = "static-publisher/static-content/file1732.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/automation/olivetin/index.html_ff54a3828c252d43ab414301133a6d982fde4590c733ade31df2411c80b54b39" +path = "../build/minified/site/id/guides/automation/olivetin/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/automation/olivetin/index.html_br_2a1c55e11e106300d7dfb59955c9a89ff000b854ee308ddd13ff079fbdf4be55" +path = "static-publisher/static-content/file1733.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/automation/olivetin/index.html_gzip_d9677234f9fe539535c29f43b40d2c95b1583f00fe5782c585fabc53c247ebcf" +path = "static-publisher/static-content/file1733.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/automation/templates-automation-packer-vsphere/index.html_547c619ceec7816c15b6b4d4ae1e58f4cde98cf80b5728547a84029f40c7fe1a" +path = "../build/minified/site/id/guides/automation/templates-automation-packer-vsphere/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/automation/templates-automation-packer-vsphere/index.html_br_353a03aaff9e6972a8b7f76d12d55186b0f16cbf16cb55d8e52600c1c2980262" +path = "static-publisher/static-content/file1734.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/automation/templates-automation-packer-vsphere/index.html_gzip_d171592a845a73fbfd3ad139b3099396b0449614306fb2044e13ef521bb7a322" +path = "static-publisher/static-content/file1734.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/backup/mirroring_lsyncd/index.html_91ac76fde84a1e8d45e2da0ee0d928c1f69d81cf18966e28c86a8ea986d5eeb9" +path = "../build/minified/site/id/guides/backup/mirroring_lsyncd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/backup/mirroring_lsyncd/index.html_br_3777726ff26cf424c3a0ba54a93eb228816f66ef9a48ccb861912c0ad47c823c" +path = "static-publisher/static-content/file1735.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/backup/mirroring_lsyncd/index.html_gzip_265e8ad45043aed1985f900eaafa06f0c74181755b1ff5ff26f6314002c58473" +path = "static-publisher/static-content/file1735.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/backup/rsnapshot_backup/index.html_4d87b362d04b409e5c26347fa9df77780ab772b993cccc4397ceafa22b1681b9" +path = "../build/minified/site/id/guides/backup/rsnapshot_backup/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/backup/rsnapshot_backup/index.html_br_6b0b67e0f7417480d1b5b50f32c7ef4343128d725601f87739103ece6cd2dc89" +path = "static-publisher/static-content/file1736.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/backup/rsnapshot_backup/index.html_gzip_eb94b7423221b62a446ab0f4ea77e47c305c4edae1bf447e8bde56c967625ed2" +path = "static-publisher/static-content/file1736.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/backup/rsync_ssh/index.html_b9c5248df11df2b409b9fba76c463a585bfc04da91ff263546f06971ec9afc8b" +path = "../build/minified/site/id/guides/backup/rsync_ssh/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/backup/rsync_ssh/index.html_br_bd70ab31ec0b0501037d504a5992bb05e29990d01c56a839ec1bc257a3a8cbdd" +path = "static-publisher/static-content/file1737.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/backup/rsync_ssh/index.html_gzip_0aaa4639d70b7b0cb11289e77c410790b63923b8281a7fd14b39db44d20ccd0f" +path = "static-publisher/static-content/file1737.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/cms/cloud_server_using_nextcloud/index.html_5f69af582d396a2dc987bcdfcf3bac81a04875d6f2f71d0cddba5f77ad118211" +path = "../build/minified/site/id/guides/cms/cloud_server_using_nextcloud/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/cms/cloud_server_using_nextcloud/index.html_br_0b1450dac7789b5ccfc702ff45d7e20f831091f6d45a6712d0fa7a0ac53a8eb8" +path = "static-publisher/static-content/file1738.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/cms/cloud_server_using_nextcloud/index.html_gzip_5fafa7c4b79251ba346bf522e6afd4a12fe85c294007fb90b3f8285702bc28a9" +path = "static-publisher/static-content/file1738.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/cms/dokuwiki_server/index.html_2fc837fd5af5e49ed461fe9bf76362cdf6f858a39e71bf6c9ad818bd01aba221" +path = "../build/minified/site/id/guides/cms/dokuwiki_server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/cms/dokuwiki_server/index.html_br_eaee03191ef251dd547fa7c0324025d501f947cb42806e460a7ac4b3db1e8cfb" +path = "static-publisher/static-content/file1739.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/cms/dokuwiki_server/index.html_gzip_2a97ce7b461bd46b9c4722b524b8ac6929c298dde93e1b2e2efdc7f581d98258" +path = "static-publisher/static-content/file1739.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/communications/asterisk_installation/index.html_24ba1f6160971d90d5f2a645941bc13c053fcd0ae051b1b73978f0e13f6601ae" +path = "../build/minified/site/id/guides/communications/asterisk_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/communications/asterisk_installation/index.html_br_c01e966bdd468e58e3c89fb2456a766b8570c0aedcc6c695d669e0b36af9901b" +path = "static-publisher/static-content/file1740.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/communications/asterisk_installation/index.html_gzip_ee197508df14000d209f717aec1794db9dffff85e2f96e26bea50da74c240850" +path = "static-publisher/static-content/file1740.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/containers/lxd_web_servers/index.html_e069aced7dc381ad499767b89cb54de153638570dc7bbc490782f1eff04199ff" +path = "../build/minified/site/id/guides/containers/lxd_web_servers/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/containers/lxd_web_servers/index.html_br_4136f3bb5390de337a8096b9d112bf491968fd9771d92acfd9c5ed18a7fbd427" +path = "static-publisher/static-content/file1741.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/containers/lxd_web_servers/index.html_gzip_e86701c334ca556db9a291843d3c085b38e22551bed7bc1b0f55c52a97a166bf" +path = "static-publisher/static-content/file1741.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/containers/podman-nextcloud/index.html_7edbed8e18e3fb68eb7fbf6b035f6fbf3a864dd2cc333c7ecfdd2428309788fd" +path = "../build/minified/site/id/guides/containers/podman-nextcloud/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/containers/podman-nextcloud/index.html_br_39b332b5e17b75e83cadd28ca8b9e314ce1c660298fa206a5100d8c3deb06236" +path = "static-publisher/static-content/file1742.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/containers/podman-nextcloud/index.html_gzip_b675f6bfe9bc2847bd070334a449dba75145caf4efc4b428687fbfc1f02b291f" +path = "static-publisher/static-content/file1742.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/containers/rancher_and_kubernetes/index.html_a3af9c0331b36db09fcd86fa8ceef17cf3a0a494f84be29504aa4020f7218805" +path = "../build/minified/site/id/guides/containers/rancher_and_kubernetes/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/containers/rancher_and_kubernetes/index.html_br_dd5e65fccf51be977fcccb7d6e0b335b37cdad97375079c7cafaac8ddf65d760" +path = "static-publisher/static-content/file1743.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/containers/rancher_and_kubernetes/index.html_gzip_e8f832da2b365ef52f81a9a2e06f511c9c34e87329e8a1d0cbb50dbc4b5f2389" +path = "static-publisher/static-content/file1743.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/contribute/beginners/index.html_666f00ad5b86b0a55348f6d2608ed91fc39fd81cab217ae859e74d0199e9c2f2" +path = "../build/minified/site/id/guides/contribute/beginners/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/contribute/beginners/index.html_br_427b5c880ad3ccbba8c3052bc1b2643e520c853d6f6c4e1c320c505427be2c07" +path = "static-publisher/static-content/file1744.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/contribute/beginners/index.html_gzip_bdf0ec915474aa0625dd7dc5933823aaa2b6439fa92dcaee26e04d6d41de532d" +path = "static-publisher/static-content/file1744.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/contribute/createnew/index.html_a09a204a80949f8c878c3dda1a394947a9bb28e09bbbc34ac85f0555c9853539" +path = "../build/minified/site/id/guides/contribute/createnew/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/contribute/createnew/index.html_br_5f0a9eec85f33aa3bac1307021d412b4edf3b9d95136271b50ec29d3ffdd7226" +path = "static-publisher/static-content/file1745.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/contribute/createnew/index.html_gzip_c2473fc3163f97286934a18efed523d37459bbb77f7c06600e2d2d44b3ea6303" +path = "static-publisher/static-content/file1745.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/contribute/index.html_888b9b9f8058dfb83ddb1db389f8123cf3735da8807c05a6e9caaa10e219ad8c" +path = "../build/minified/site/id/guides/contribute/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/contribute/index.html_br_3ecdd49b47ca6a4f2e06ac9980ef6490cdb305e55c33a25094a345a17dd14b29" +path = "static-publisher/static-content/file1746.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/contribute/index.html_gzip_b6c681791d37de6e76405478bdbd4aa7e6d96356d62b0aa7f5b97bfd1534579f" +path = "static-publisher/static-content/file1746.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/contribute/localdocs/index.html_bbbefa4762ca4dcb40259f8074d8269c9f340fbc894b52a63d05646051e588e2" +path = "../build/minified/site/id/guides/contribute/localdocs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/contribute/localdocs/index.html_br_16fc60dbd60b9cbd89b4bec34ab4d013afe87b6e76766a0271604eab0e08af9f" +path = "static-publisher/static-content/file1747.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/contribute/localdocs/index.html_gzip_eb33b03baf75180eaccb6c0f0ee657550c04a2f108b6e3b0575af3a30851f3a8" +path = "static-publisher/static-content/file1747.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/contribute/localdocs/local_docs/index.html_8176be1351fb544dd6302ce414df15c1439dc8f3d4e0780fa0473b7f660e38ea" +path = "../build/minified/site/id/guides/contribute/localdocs/local_docs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/contribute/localdocs/local_docs/index.html_br_efcf569f15cbea6895086c0851ead475acfa54efa48064d4a61abdf495f4cbae" +path = "static-publisher/static-content/file1748.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/contribute/localdocs/local_docs/index.html_gzip_354fcbc4d0429802de60b5a455bfcb0d70618e3536b845916619ab46c81fac9b" +path = "static-publisher/static-content/file1748.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/contribute/localdocs/mkdocs_lsyncd/index.html_ae7890c324cbfe656dbb2672420a8de798b0cb6097029d09283010093971b810" +path = "../build/minified/site/id/guides/contribute/localdocs/mkdocs_lsyncd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/contribute/localdocs/mkdocs_lsyncd/index.html_br_c70fb5fb44f73d83facff6c5c1fa93b4c512dcf94c9c4bc074d333001b1a7390" +path = "static-publisher/static-content/file1749.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/contribute/localdocs/mkdocs_lsyncd/index.html_gzip_df155db31503745caff7c9edc524b95811e7e72489b0e1190f1e1349af610348" +path = "static-publisher/static-content/file1749.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/contribute/localdocs/mkdocs_venv/index.html_a1ea426b2a243c79b0d75603d519f6c3c57f02558d9f3b3a612cfc2b519d1895" +path = "../build/minified/site/id/guides/contribute/localdocs/mkdocs_venv/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/contribute/localdocs/mkdocs_venv/index.html_br_361b378bd2ec9543b3838cad969d9ef060e0d3c1020f94c9d88df03d36e2681e" +path = "static-publisher/static-content/file1750.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/contribute/localdocs/mkdocs_venv/index.html_gzip_b0b64c773fa52f5f490d54ca3396c6bbb835ed7e430cb7845001195ed078d2c8" +path = "static-publisher/static-content/file1750.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/contribute/localdocs/rockydocs_web_dev/index.html_03b8da13eeca43da3f60c826a8d40a951aa0d720bb1b6d374f2e77a7c94afdd9" +path = "../build/minified/site/id/guides/contribute/localdocs/rockydocs_web_dev/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/contribute/localdocs/rockydocs_web_dev/index.html_br_63ff53fa5a820ebff49a0e79b5e495ca937e89fec7f130af0f5555ec931fe4fd" +path = "static-publisher/static-content/file1751.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/contribute/localdocs/rockydocs_web_dev/index.html_gzip_c97f469133b0758ef5310f9695d321cb32632666e08d4c0958fd9bc7708db506" +path = "static-publisher/static-content/file1751.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/contribute/localdocs/rockydocs_webdev_v2/index.html_ec827278cc55ce42b440ba6d0d4f35ae71be27928b13891591198f6fc3eee701" +path = "../build/minified/site/id/guides/contribute/localdocs/rockydocs_webdev_v2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/contribute/localdocs/rockydocs_webdev_v2/index.html_br_38015c17c29e7691294671e5b982060f136dabdd2b74102c81bf30609395be17" +path = "static-publisher/static-content/file1752.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/contribute/localdocs/rockydocs_webdev_v2/index.html_gzip_b92cf8d96287675fed6561441304a2ae540547a14f14f655f76778c55eb082cd" +path = "static-publisher/static-content/file1752.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/contribute/navigation/index.html_6610eab5eb435b3b647eb2a0d68442965302d33986b478c56b0781248f55d382" +path = "../build/minified/site/id/guides/contribute/navigation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/contribute/navigation/index.html_br_41b38d6e12a3fcbc3421f0755db48eeaa0effa0ba7de0ef6a9d245d2649aa293" +path = "static-publisher/static-content/file1753.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/contribute/navigation/index.html_gzip_23d7722fe5b6380c991a38d70b1552cf29098cc6555c6ff7e1fb8b4ed6c50c48" +path = "static-publisher/static-content/file1753.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/contribute/rockydocs_formatting/index.html_d46d75090e8d06d5acce28d5e3b061ea396e9ee2ca2b7176fa2ebb2774f93b82" +path = "../build/minified/site/id/guides/contribute/rockydocs_formatting/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/contribute/rockydocs_formatting/index.html_br_b8d48ab7786e317c903ddde55c33143927df12a93d8afc1c066a856177881034" +path = "static-publisher/static-content/file1754.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/contribute/rockydocs_formatting/index.html_gzip_fe717be1f51dc4f57852aa78f42f8c71ffca7aa841a1188675977231c0b527fd" +path = "static-publisher/static-content/file1754.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/contribute/style_guide/index.html_f51c95573ead137e6b38aeefc38bd0e667ccb2db382cc4104b7af73a4b86b149" +path = "../build/minified/site/id/guides/contribute/style_guide/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/contribute/style_guide/index.html_br_33a1899614f7522106d455ab127792b7666982089f82b4e0e5099e56df6e35e8" +path = "static-publisher/static-content/file1755.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/contribute/style_guide/index.html_gzip_5a612052b5e5f1c19ddea9957c21b2423e476b9a1c6d710f9297b162c553a608" +path = "static-publisher/static-content/file1755.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/custom-linux-kernel/index.html_af4ae90842143ea5bdc89533e4678724d68898ff7e4de0a250426e05fcdc2d9e" +path = "../build/minified/site/id/guides/custom-linux-kernel/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/custom-linux-kernel/index.html_br_f0bc3e0071e0e7e94e1cdf418811844b73a5d6c9ee1ed52c65c95708fd5233ac" +path = "static-publisher/static-content/file1756.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/custom-linux-kernel/index.html_gzip_6e87b8b09e93309e6a2da22037c4fbc35f6a89c0d154d212a742247dfe5ff780" +path = "static-publisher/static-content/file1756.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/database/database_mariadb-server/index.html_a82599b94c9f859c807bd3d19e413913a3b98aba7bb01548155e5b962e528c6d" +path = "../build/minified/site/id/guides/database/database_mariadb-server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/database/database_mariadb-server/index.html_br_8db160b7d2e96587742c3c62f370550c7a44c77ea649489a365cc0eb8d59b1f3" +path = "static-publisher/static-content/file1757.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/database/database_mariadb-server/index.html_gzip_3c2f3c3267bd4778cb888d46b5f75daf84b6e3485fe4cadb75bfccc1f3a39f55" +path = "static-publisher/static-content/file1757.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/desktop/kde_installation/index.html_4e1a89ad4af57a4b6987bb6cbb2bad441d659d70db5a3c545f0f4e1f29550af1" +path = "../build/minified/site/id/guides/desktop/kde_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/desktop/kde_installation/index.html_br_2b3921f966ac0f42a46e841ec535244792aa5cf7ac6831d1365233749ba3ac5e" +path = "static-publisher/static-content/file1758.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/desktop/kde_installation/index.html_gzip_0c957ff015fb7f7a9e556040ec4a02a214845d7af1c4f6cd763d17394fea0958" +path = "static-publisher/static-content/file1758.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/desktop/mate_installation/index.html_51b097f67300d478770c2f7f82ede476dc341841f446140d772914a94cf8f99b" +path = "../build/minified/site/id/guides/desktop/mate_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/desktop/mate_installation/index.html_br_597e6ad3f5fd7771b3a4180bfa643b872ed2e5afcae2dd08578b5c4a78ff3262" +path = "static-publisher/static-content/file1759.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/desktop/mate_installation/index.html_gzip_04e32f3e9b2b72821b17c751d2cca5c85c3c69fbbb2d95e86407d21dc7052daf" +path = "static-publisher/static-content/file1759.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/desktop/xfce_installation/index.html_d7207ae4c54edebb59543b25ad2d430c20053e38ab1c66132dc1465365cc9d64" +path = "../build/minified/site/id/guides/desktop/xfce_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/desktop/xfce_installation/index.html_br_72b2e1aef1c191f2f458492548d1be67d9f4881bb77a9e4b79966e99e7c092b3" +path = "static-publisher/static-content/file1760.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/desktop/xfce_installation/index.html_gzip_71a65a07b6ca63cfe9accd5c052cf7d01329f158fc0741ac1ed12fd75c69bb13" +path = "static-publisher/static-content/file1760.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/dns/private_dns_server_using_bind/index.html_849c16efc113a8920277acd27ce9f404dfe0788c05b54ef1d270ebe0a7b50915" +path = "../build/minified/site/id/guides/dns/private_dns_server_using_bind/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/dns/private_dns_server_using_bind/index.html_br_611af89903411e9041afa5ae34a7cf373556ff97b591245b8f0f8d2329fd348c" +path = "static-publisher/static-content/file1761.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/dns/private_dns_server_using_bind/index.html_gzip_c97f9159cdd33d9c918356cd12d97cd7d899d6e4c8bcacb0144edcecd538e65f" +path = "static-publisher/static-content/file1761.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/editors/micro/index.html_13087d15e4b02264ea97274394143fd17fb451e914fc08ff8cd02925605da651" +path = "../build/minified/site/id/guides/editors/micro/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/editors/micro/index.html_br_1f3ab484c6d0125a3f0552a0ed63b5bd4857df6c1a097a6dd35911a9a626092f" +path = "static-publisher/static-content/file1762.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/editors/micro/index.html_gzip_ed71f7abf40caf2096c50816803a1cf06a4d250927aaeb23ed05bb6804560786" +path = "static-publisher/static-content/file1762.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/email/01-email-system/index.html_5fe429f950ee6632d2552c293423043e0ff5d22639607b2291f802152fa1e34d" +path = "../build/minified/site/id/guides/email/01-email-system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/email/01-email-system/index.html_br_f7fca58791495867a53045c96498fe14b3a40da29eca030ad02eca6e9d23271c" +path = "static-publisher/static-content/file1763.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/email/01-email-system/index.html_gzip_a85064a7a730f88fae2e60d9be581821ffed464e87ab26b91d8b8df44ec729d2" +path = "static-publisher/static-content/file1763.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/email/02-basic-email-system/index.html_d1775fd6915b7f23d02cf88827147db413f02803d9571ca05a9f6b0896d260f0" +path = "../build/minified/site/id/guides/email/02-basic-email-system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/email/02-basic-email-system/index.html_br_405cc119c21033af3c6aefd9bee54111f13fd271a6e3f06688cbc64c032c2eeb" +path = "static-publisher/static-content/file1764.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/email/02-basic-email-system/index.html_gzip_45ecdb832f3b13c7eb0f50e65821898f1b8ba158f226204be5700afa957b81df" +path = "static-publisher/static-content/file1764.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/email/postfix_reporting/index.html_436c6eb95860edb8cfc87f4c5233820ef6c2e7d1dd5f9f72352f070017f13400" +path = "../build/minified/site/id/guides/email/postfix_reporting/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/email/postfix_reporting/index.html_br_b19522ef07ee816d2b0807c93cf674c7bd9d2faa344dcaf2c22b11203978a496" +path = "static-publisher/static-content/file1765.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/email/postfix_reporting/index.html_gzip_ba152dbdf2e3eecccdba09176f45eedbbc134b57bd966ac67f8adb4e0158aa68" +path = "static-publisher/static-content/file1765.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/file_sharing/glusterfs/index.html_0c725f440e425ab184132013e20defea9fff98fe1974c1af97d0ff1ff4144d1b" +path = "../build/minified/site/id/guides/file_sharing/glusterfs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/file_sharing/glusterfs/index.html_br_1e571a6a9b54127e2e7f70f42e25d2a0d1a88b55a1e591a7863a5ad4adbb761a" +path = "static-publisher/static-content/file1766.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/file_sharing/glusterfs/index.html_gzip_d03982fd86050b58f6c8fe9d80c6996a213672aaf39036666e8254acccca422c" +path = "static-publisher/static-content/file1766.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/file_sharing/nfsserver/index.html_8ffc46935eb3fd209544c35ac4c7bbb983db0b6862c5c2922930de6edc33bd7c" +path = "../build/minified/site/id/guides/file_sharing/nfsserver/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/file_sharing/nfsserver/index.html_br_e9cd18fb0af0149908f527d03be34f59f18476e58f3c0ec09f0a167257dc7108" +path = "static-publisher/static-content/file1767.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/file_sharing/nfsserver/index.html_gzip_0b9a785d5e9d5a954609acbb176b50e53679f4e81704c67b75d30b4093332026" +path = "static-publisher/static-content/file1767.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/file_sharing/secure_ftp_server_vsftpd/index.html_75ec64136b8e65a97991ea9afb5fdd340c7ce0e351325ef0f103d29ecbeff595" +path = "../build/minified/site/id/guides/file_sharing/secure_ftp_server_vsftpd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/file_sharing/secure_ftp_server_vsftpd/index.html_br_540c97306c73c73400f985f622c89bdde79befa5b14dba54bfb7d1e481871e0f" +path = "static-publisher/static-content/file1768.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/file_sharing/secure_ftp_server_vsftpd/index.html_gzip_ae1e2b6d0c587e621cbcadd8f21f19c73a9207c09f81fa32a033695ff9b19166" +path = "static-publisher/static-content/file1768.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/file_sharing/sftp/index.html_cd4e2fd6684ea8e18ff5455a5fe7b4a49ca087aaf3816b9ee73c31a302eaac4a" +path = "../build/minified/site/id/guides/file_sharing/sftp/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/file_sharing/sftp/index.html_br_3b32eebcf61f90d4631e822ec97f115faaf44c99e86f2fc98b154729f206a3de" +path = "static-publisher/static-content/file1769.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/file_sharing/sftp/index.html_gzip_10d3ab1f3d00fe3ac8d795e3db10bc831356e822faee9915d7ff6dce4988f261" +path = "static-publisher/static-content/file1769.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/index.html_b7b799cb7478e16fc4cead0e61eba77981b8e990a6f4a784da28aaea0806828f" +path = "../build/minified/site/id/guides/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/index.html_br_26f7aecec6c8915a9f7e5e9f2eefa68bd3221777ee45f31497aea8e9952606c3" +path = "static-publisher/static-content/file1770.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/index.html_gzip_af0837afbac0e0d5a1e0a13950db22fe535634321dc304970b9667aed5cf4407" +path = "static-publisher/static-content/file1770.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/installation/index.html_c7391c8fd4f39adb4012e31aaaf9b06c3f7cf417ae6a010407d8d9929ce416cd" +path = "../build/minified/site/id/guides/installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/installation/index.html_br_0da588aa7026765db1b4d5b2179cfdc1ae6e4acc400c659610aea43ab9a7fc3e" +path = "static-publisher/static-content/file1771.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/installation/index.html_gzip_e2b764415d04aeff8a07b34df7c3fdaa16d12a9da1ab203acc4c5d7ca9eef3e9" +path = "static-publisher/static-content/file1771.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/interoperability/import_rocky_to_wsl/index.html_33c41ee513b773e5b74eb9907954d94d24e04b19dc8a0f70734ca19a55d62358" +path = "../build/minified/site/id/guides/interoperability/import_rocky_to_wsl/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/interoperability/import_rocky_to_wsl/index.html_br_9dc8dbb0d5ade266e5fe9706c535a849e2c122a60e15ed58e8b43bb3de2d5f6b" +path = "static-publisher/static-content/file1772.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/interoperability/import_rocky_to_wsl/index.html_gzip_24cda52b691f57b08108060d72b20d9e94f22b3ce4ea47aa469ab65528ab48da" +path = "static-publisher/static-content/file1772.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/migrate2rocky/index.html_1069dfd9d915b97e1073b45ca34462078576d79686558bfb01c95cee0cd20a88" +path = "../build/minified/site/id/guides/migrate2rocky/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/migrate2rocky/index.html_br_4efcd54111e6d773d85b8693fb138cdca726ead160958f2512bcc0ee2815e4e9" +path = "static-publisher/static-content/file1773.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/migrate2rocky/index.html_gzip_ca452d26cd622095d961b8ffa040d1cd9858e93a384ee43e4b6582d6175d6b68" +path = "static-publisher/static-content/file1773.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/mirror_management/add_mirror_manager/index.html_11b1aaccef433b1b777531460595060ed5cb24794de12aa5455ac6c8f65f9aea" +path = "../build/minified/site/id/guides/mirror_management/add_mirror_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/mirror_management/add_mirror_manager/index.html_br_f26356082e98dc0c23dbe046ce06ba2b1e04d5f6a3bd10ad85dd651dae3f4694" +path = "static-publisher/static-content/file1774.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/mirror_management/add_mirror_manager/index.html_gzip_77aef6afdd55c34e6c52af4f1339b9d93a631c863d78c609ee9e9f067a54c677" +path = "static-publisher/static-content/file1774.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/network/basic_network_configuration/index.html_e6d712aca5befabed26a729b91f2a0fa5042ea01cea98a43b733bd1e9d847692" +path = "../build/minified/site/id/guides/network/basic_network_configuration/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/network/basic_network_configuration/index.html_br_0905ac79f7be707ecf83802f8ce6365161697730de24253889ffff6cc2e452fc" +path = "static-publisher/static-content/file1775.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/network/basic_network_configuration/index.html_gzip_6ac205d04a2e72dc14ebc76016cc0c189757c3c733f32d36479de961912b2675" +path = "static-publisher/static-content/file1775.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/network/librenms_monitoring_server/index.html_bf4e16af43a6861ecfb871d2056d648417f8e29fee69c5dbfbd1b35da54d1a46" +path = "../build/minified/site/id/guides/network/librenms_monitoring_server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/network/librenms_monitoring_server/index.html_br_1273fcc6fbb2dac825398515f310a822fc4e202611511fc22587279d1857629e" +path = "static-publisher/static-content/file1776.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/network/librenms_monitoring_server/index.html_gzip_f9453ddc9c2f26dad003fb3f9e5d97d357bd51b9442bdf78c4952cf323bd3c2c" +path = "static-publisher/static-content/file1776.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/package_management/dnf_package_manager/index.html_3ef495f65ee24fd27b28c7e6e0e52803516f7d09ccaee50dfdf7950f4b68d6cc" +path = "../build/minified/site/id/guides/package_management/dnf_package_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/package_management/dnf_package_manager/index.html_br_43c16d1d99adefc7f3022de52a29458c643b24803606c743422ab021f0814048" +path = "static-publisher/static-content/file1777.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/package_management/dnf_package_manager/index.html_gzip_b40a213c981e27ee65d4ec1787a4a5762b43a9d1c324e0ae5cdb687520e60f4b" +path = "static-publisher/static-content/file1777.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/package_management/index.html_27119a69c138433c996396410231ea4d4fee42fc32909c6c457d05db68aa0a31" +path = "../build/minified/site/id/guides/package_management/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/package_management/index.html_br_1cfdd53a53bb8dfa166c4b19a239cfd51dd01746719728cf81a689d5d0da24aa" +path = "static-publisher/static-content/file1778.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/package_management/index.html_gzip_08528ae202edd1c07905d2e1d0f63d76a2430b69256f808299a20a3ab1441b16" +path = "static-publisher/static-content/file1778.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/package_management/package_build_troubleshooting/index.html_59f531b5c34ac5f5e63693e832b5974f863bfc2ef51776eff996263f9b78e979" +path = "../build/minified/site/id/guides/package_management/package_build_troubleshooting/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/package_management/package_build_troubleshooting/index.html_br_65c3add800f0f59d4e7b23ee20ec8478d43c22d3a550fd6f49c29f63f1e5941e" +path = "static-publisher/static-content/file1779.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/package_management/package_build_troubleshooting/index.html_gzip_baba72c6c9f6fe0101cc20d8160dfb0153ce457dbb642e603aa8330edfe1bf47" +path = "static-publisher/static-content/file1779.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/package_management/package_debranding/index.html_c27c3145d6cb21f66e4dabb1bbe44b56f853a36cb3b25cfd871fc619c1bfdbc5" +path = "../build/minified/site/id/guides/package_management/package_debranding/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/package_management/package_debranding/index.html_br_d25b5b89e450be68363020261706530a05760fa4441a76397d8dcd9f12ce6452" +path = "static-publisher/static-content/file1780.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/package_management/package_debranding/index.html_gzip_df10404baf440495017a6518cde3c9da243f14cce33da04d3de13647d8968acc" +path = "static-publisher/static-content/file1780.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/package_management/package_dev_start/index.html_1d1948f9377446cdc976cb1cfbd6ea24427ad5c614228778aea74af55a30359a" +path = "../build/minified/site/id/guides/package_management/package_dev_start/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/package_management/package_dev_start/index.html_br_51d3bbfbfb832ee652be3a0e93d65dcaa4065ebe6c932816eb0156bddd07a6e3" +path = "static-publisher/static-content/file1781.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/package_management/package_dev_start/index.html_gzip_ebf10630431d9e7f88c38a5e6c94f9a4a5223c1ff530035a9e67c4138528163c" +path = "static-publisher/static-content/file1781.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/package_management/package_signing/index.html_0d57d5b5799e9e943287ac4a9ada5d09d83fa80d246c6b715eb2ad77e1ad605b" +path = "../build/minified/site/id/guides/package_management/package_signing/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/package_management/package_signing/index.html_br_febdefd084cd30547bdee31143786729e73fa34fe2a80082022ad4c0463f7ed9" +path = "static-publisher/static-content/file1782.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/package_management/package_signing/index.html_gzip_55f97ed3d3abad237b6a3aeb7094fb9823b3f2caf0229bb5036f6c8ac3515fad" +path = "static-publisher/static-content/file1782.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/proxies/haproxy_apache_lxd/index.html_71f7c43ba8f00b5aaf15f6d982e28c93baed030569bccaaa96572fd83ac7307e" +path = "../build/minified/site/id/guides/proxies/haproxy_apache_lxd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/proxies/haproxy_apache_lxd/index.html_br_d51a6e2bbbc77d627d67b45b17e5074a919359aefc587f44da7a1ac5adf522c7" +path = "static-publisher/static-content/file1783.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/proxies/haproxy_apache_lxd/index.html_gzip_0b52b0d83ad370d563a8e4bd4431c8352f3ea75c7fa3390890493063154f23bc" +path = "static-publisher/static-content/file1783.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/proxies/pound/index.html_8e8d6c4fbd4f58019671e12410dcf3752aab2d56b6946d794ff14284fea70b3b" +path = "../build/minified/site/id/guides/proxies/pound/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/proxies/pound/index.html_br_9a3cafff6cedba2c24e1789e3f5df37dfb9e52e26ba9772ee3dbf00789549b16" +path = "static-publisher/static-content/file1784.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/proxies/pound/index.html_gzip_a8abd96e7f978b66bfe8bfcda91109b5726bc038cd468c8210c5ac652d40f142" +path = "static-publisher/static-content/file1784.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/proxies/tor_relay/index.html_399081359226d5bba730e2193bac9898039bc56c354a89780695b3f39fcd8e7e" +path = "../build/minified/site/id/guides/proxies/tor_relay/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/proxies/tor_relay/index.html_br_fc37e5b7e31f48bd48fc1c234439ac02687b5ef3a3af95a681fae9192c7addaf" +path = "static-publisher/static-content/file1785.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/proxies/tor_relay/index.html_gzip_3b372a59177f35771b9b380d94a3e4f431c1f5a5484ec6c991035529fd9b1302" +path = "static-publisher/static-content/file1785.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/security/authentication/active_directory_authentication/index.html_e1c413b05936b72f5f4dae5a482a9259a995fb955c2e9fc03ac43d6559355a6c" +path = "../build/minified/site/id/guides/security/authentication/active_directory_authentication/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/security/authentication/active_directory_authentication/index.html_br_3acaf66343f695084aa0a2ce34180e223680766a6c1d13df3955292672c2bdcb" +path = "static-publisher/static-content/file1786.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/security/authentication/active_directory_authentication/index.html_gzip_dbbdbecfa61c1fd4340f1345969520f9f68aa005104b211e79af9f5a6590236b" +path = "static-publisher/static-content/file1786.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/security/dnf_automatic/index.html_007fec0eee313f3f5106a18306e582be7a1c985c1cdd221bb10d0fbbd497c775" +path = "../build/minified/site/id/guides/security/dnf_automatic/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/security/dnf_automatic/index.html_br_6368ad1d4d4173c24c76fecd8739b650921aabc4f00412c029b9c048974ee8a4" +path = "static-publisher/static-content/file1787.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/security/dnf_automatic/index.html_gzip_f5ceaf4db848b9f45ff15177852cb82cfb0d37458cba3e9e8c0b1860e3da6e3f" +path = "static-publisher/static-content/file1787.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/security/enabling_iptables_firewall/index.html_9367403f4735c265d3ce148ae6c405776b5bb37044ce9880653986dccdfff058" +path = "../build/minified/site/id/guides/security/enabling_iptables_firewall/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/security/enabling_iptables_firewall/index.html_br_d92046ff603d3a6711fc19fcf7791e0ed5f103c5f283c2041fe0b1ec17ff3f20" +path = "static-publisher/static-content/file1788.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/security/enabling_iptables_firewall/index.html_gzip_92fce54764ea5b32bc32c5ecce983e1f306d1032ae330f75d929a47469380afc" +path = "static-publisher/static-content/file1788.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/security/firewalld/index.html_af6bfde1a62d7a85388a3851e3eeec42e9a8b266897ada8e221ea2d804c590da" +path = "../build/minified/site/id/guides/security/firewalld/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/security/firewalld/index.html_br_f601c25834b948369d712e60749b0fb487169812a85b5c46815b3c96bdc34a2f" +path = "static-publisher/static-content/file1789.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/security/firewalld/index.html_gzip_872a1271a195e069cdc2fff9e6225cf9bb04bbdfba4e58967294d123714cedcd" +path = "static-publisher/static-content/file1789.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/security/firewalld-beginners/index.html_b5a4c4a02d33e9e6a6284810a5408d6e91a88abcf0dd51866bccffe83e0b5d07" +path = "../build/minified/site/id/guides/security/firewalld-beginners/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/security/firewalld-beginners/index.html_br_500d78fcfed82667f3a3bfb72bcf4e5193a5348c8420136ec9173f563b9fb14e" +path = "static-publisher/static-content/file1790.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/security/firewalld-beginners/index.html_gzip_bc605d26c823e0ef09215286ba2f8db943358d6ca9f1b0fa761f2fb875f7e036" +path = "static-publisher/static-content/file1790.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/security/generating_ssl_keys_lets_encrypt/index.html_98b37afc0b11ef52d474745963968696f4847f2706a3ac88de86ce2545b55bd0" +path = "../build/minified/site/id/guides/security/generating_ssl_keys_lets_encrypt/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/security/generating_ssl_keys_lets_encrypt/index.html_br_87a9837a4e04cf73351a5c6ae4aff8dd2cfcfd43fa255b1b47f9a1f6153d479c" +path = "static-publisher/static-content/file1791.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/security/generating_ssl_keys_lets_encrypt/index.html_gzip_4e1010e62167fd8366377b9b45ed0219c6be6c509b9ae7277a78b93b9ec87941" +path = "static-publisher/static-content/file1791.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/security/learning_selinux/index.html_2924275f12430bf9887b7e0011050fb08f05ac66bda6fa67cd33c070857b701c" +path = "../build/minified/site/id/guides/security/learning_selinux/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/security/learning_selinux/index.html_br_3095443f92526e5dd68b5fc6e01aff4b7c4c8c44e0e4a093831130716ae99d37" +path = "static-publisher/static-content/file1792.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/security/learning_selinux/index.html_gzip_485f939ef480d28f5259e0a185af4aea4354e70b7b469e01bab2343c64835441" +path = "static-publisher/static-content/file1792.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/security/pam/index.html_e37858d9c90d4fc752c0572ae2fd46f149fd7247686739e640260e4713a16903" +path = "../build/minified/site/id/guides/security/pam/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/security/pam/index.html_br_2bfc4391f1a720454b06eb0a04e60e28eaf1a915a21363b54cb662c48169f025" +path = "static-publisher/static-content/file1793.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/security/pam/index.html_gzip_0f6581d848c8628c269b0b6e3013d0ca871bf56619e2213ffd1d86681a2c5fea" +path = "static-publisher/static-content/file1793.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/security/ssh_public_private_keys/index.html_c0f9f13c53ab0a48113fcfaf9a7e78dcef1058f79a4d6db8d083532e940b8bdb" +path = "../build/minified/site/id/guides/security/ssh_public_private_keys/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/security/ssh_public_private_keys/index.html_br_fc60dee00ca2b3840f512d410e75f2152b312ca271132221802daab4570a6e16" +path = "static-publisher/static-content/file1794.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/security/ssh_public_private_keys/index.html_gzip_33de9a5ce759611c719da796ce515badf66f3436c09a48e8f268e8fc13986a7f" +path = "static-publisher/static-content/file1794.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/security/ssl_keys_https/index.html_1dbe5ffc2f5529507df17b9a673c9a4b8187873237c17787dd3bb752fc2a6cb6" +path = "../build/minified/site/id/guides/security/ssl_keys_https/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/security/ssl_keys_https/index.html_br_bf3f1372d4b928d98286399ab9696c5f20a51be552a5686240ef4777c8f1a6b0" +path = "static-publisher/static-content/file1795.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/security/ssl_keys_https/index.html_gzip_24d89d3391c7780d5dd7bbc7c8de9a4e5e10a4ff03da3aa004089738c3c9d53d" +path = "static-publisher/static-content/file1795.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/security/tailscale_vpn/index.html_e161ccf4ed6c12ea54d477ab8c237815fd39cbf548b181964dcc45489ca4fcdd" +path = "../build/minified/site/id/guides/security/tailscale_vpn/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/security/tailscale_vpn/index.html_br_59b63d0e04fb9614c36659421010228b48c145e49e07d2d50e0b748f86408ecf" +path = "static-publisher/static-content/file1796.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/security/tailscale_vpn/index.html_gzip_e4b171699d4590a659c8736999a6b662bc400c067122c0f79caa471f7cb2b57a" +path = "static-publisher/static-content/file1796.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/virtualization/cockpit-machines/index.html_efa20c2c6bd26ca4ca9b0c2260d32dc7ab7996945bce3ba4013142b5b088fb55" +path = "../build/minified/site/id/guides/virtualization/cockpit-machines/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/virtualization/cockpit-machines/index.html_br_bf4e0fe405a4d988fec8a7dfa81f19ebcc4c82d59abaee7ecae601d470daefad" +path = "static-publisher/static-content/file1797.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/virtualization/cockpit-machines/index.html_gzip_865d55a95d1dadf21783fa54a827b9d2a37e39a4409a0162a5e2aa74343c932c" +path = "static-publisher/static-content/file1797.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/virtualization/vbox-rocky/index.html_3ce1f8c0af91800c0181d8a84bc685220a023d2cb3a6c7796c9cf52cd7df0349" +path = "../build/minified/site/id/guides/virtualization/vbox-rocky/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/virtualization/vbox-rocky/index.html_br_1d23691cba75b018b2b7a86a99f8f436ee8f84704cccc81c4bf8590f9a7f9498" +path = "static-publisher/static-content/file1798.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/virtualization/vbox-rocky/index.html_gzip_6769307a112bce890a1703c513665c0aed85ef72048272ceda41798cf5b945ac" +path = "static-publisher/static-content/file1798.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/virtualization/vmware_tools/index.html_f6bba07fa06a45ed6d0dfe8979e291039b68163cc3514ba8595bbd7a133cc186" +path = "../build/minified/site/id/guides/virtualization/vmware_tools/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/virtualization/vmware_tools/index.html_br_0dedc13698a8cb01c703bb623e150b789b2c711d4a29f07bbdae26b29152f687" +path = "static-publisher/static-content/file1799.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/virtualization/vmware_tools/index.html_gzip_490bdf53b599805d22027bfb4b492a6b3a0db238f53e6c93b945ef34f2bfc3bf" +path = "static-publisher/static-content/file1799.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/web/apache-sites-enabled/index.html_9ba7fa969b0a8b81012de3df2688297104b8e7b4e417fd5b99b90c186026bafb" +path = "../build/minified/site/id/guides/web/apache-sites-enabled/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/web/apache-sites-enabled/index.html_br_d05c84011be582d113b05fba04fc3dfbe405ae90e8c32e4b64ea1b5a1dd2e7c8" +path = "static-publisher/static-content/file1800.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/web/apache-sites-enabled/index.html_gzip_fbb30cede0500548dc7b3820c200ba318a4f9351537dfe80c1af627d030c4285" +path = "static-publisher/static-content/file1800.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/web/apache_hardened_webserver/index.html_1097e015216e71f9c837a65814edf46b310ed9850dd8f7157e043afd10be239d" +path = "../build/minified/site/id/guides/web/apache_hardened_webserver/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/web/apache_hardened_webserver/index.html_br_40723f5e5c368875122feac08b109c3e7f793bec8327c6eb999d8c2f342093ef" +path = "static-publisher/static-content/file1801.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/web/apache_hardened_webserver/index.html_gzip_7cfd30663ddb13cfbdfc437cc0a35e90b6d47fabcff89119ca8caeeef2557713" +path = "static-publisher/static-content/file1801.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/web/apache_hardened_webserver/modsecurity/index.html_4a06ffab1e3793aa7501e7ac3c61e276929e901a5ade28f7b5fecd7063b42289" +path = "../build/minified/site/id/guides/web/apache_hardened_webserver/modsecurity/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/web/apache_hardened_webserver/modsecurity/index.html_br_c74ca61ea765aa97664964cbfecb46820d1636e0a387b4cba71b2b9d3fbbcd48" +path = "static-publisher/static-content/file1802.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/web/apache_hardened_webserver/modsecurity/index.html_gzip_049b8436b838a1d919fb0be87b2a3f8c5c96165fa0967b98d3e73875d44e8745" +path = "static-publisher/static-content/file1802.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/web/apache_hardened_webserver/ossec-hids/index.html_e58c7b4674fce00d15b02e5d1f55e06a0e054ae119d56c4d1bf9b3b194e8fc6c" +path = "../build/minified/site/id/guides/web/apache_hardened_webserver/ossec-hids/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/web/apache_hardened_webserver/ossec-hids/index.html_br_5fa6c072aa7ca180863149bbb3648dadddc4159881fa449f10db73d2ccaf3496" +path = "static-publisher/static-content/file1803.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/web/apache_hardened_webserver/ossec-hids/index.html_gzip_89c227ffe845307e6bb6872b553f538027baceb017547ad88d722597e244d6f3" +path = "static-publisher/static-content/file1803.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/web/apache_hardened_webserver/rkhunter/index.html_15d85ff8fe303bffafeb389cb975e617364efa128435367c5225a8f3277334b1" +path = "../build/minified/site/id/guides/web/apache_hardened_webserver/rkhunter/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/web/apache_hardened_webserver/rkhunter/index.html_br_91daa76a9996d826e0c041f8ebd40ede80decd43461587dc39f6db1f4c35c4bb" +path = "static-publisher/static-content/file1804.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/web/apache_hardened_webserver/rkhunter/index.html_gzip_2c306659bf4beec5c4b316d9716e99a2391efbe7981204e17d6f7e0dfaba6c09" +path = "static-publisher/static-content/file1804.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/web/caddy/index.html_71505ba9f04f9202bd926ddfc85be21d7261a17957c0acd19de50ed9c336c82a" +path = "../build/minified/site/id/guides/web/caddy/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/web/caddy/index.html_br_7cda40531e30ecf0e45d45f0fc0f2e2949e002fb4d8db79955c8a6af0e8335cb" +path = "static-publisher/static-content/file1805.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/web/caddy/index.html_gzip_935ff5b031fe53ab26b41d12f9b3eda2689f7d6c9c2065db5fe340a2ad515a28" +path = "static-publisher/static-content/file1805.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/web/mod_SSL_apache/index.html_a7f6ed2e3e288c2c4ffae5d431a0d62c67695301ee280a584c639bb86d3a1fdc" +path = "../build/minified/site/id/guides/web/mod_SSL_apache/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/web/mod_SSL_apache/index.html_br_9e130ad8f2e3f19bf10393976a84a1e4d9a2a79ac0479d44adcdbffe0ba5c304" +path = "static-publisher/static-content/file1806.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/web/mod_SSL_apache/index.html_gzip_80b5f5d85978ba4c630e3fa99cc48cd8ebbe7892e6102ded203e761897d44952" +path = "static-publisher/static-content/file1806.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/web/nginx-mainline/index.html_9037033d544859a64faab6c5b34de1f287b1fa6c447528714fec000a96fd0efc" +path = "../build/minified/site/id/guides/web/nginx-mainline/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/web/nginx-mainline/index.html_br_907f11f7d31d3eb790eb6cf6e2ffb12777fffe3443a8117de89f748f1c447a2f" +path = "static-publisher/static-content/file1807.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/web/nginx-mainline/index.html_gzip_e2b28ad1c161c6268a0e37eb3e1581f9b8d5953b1256eacc7922b7adf5148213" +path = "static-publisher/static-content/file1807.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/web/nginx-multisite/index.html_e35db59075a777f40fb3ac6485855c158510af43c66159f3f44787bc15a1c4ec" +path = "../build/minified/site/id/guides/web/nginx-multisite/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/web/nginx-multisite/index.html_br_3f9de382640f9549e990fea04a559c52eee959da8bce1d9342e7ed4532ac0f52" +path = "static-publisher/static-content/file1808.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/web/nginx-multisite/index.html_gzip_ccde7291baaf23fa4efd09c40a7970b3cdc5771c1a1a96eb52954e2b9e9d57f5" +path = "static-publisher/static-content/file1808.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/web/php/index.html_7909f5bf8b28c14205c346aa42b535e6cbad8fc775a04ee88b609aded094f58e" +path = "../build/minified/site/id/guides/web/php/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/web/php/index.html_br_0d139694c77733dda62c57bd100ea5c0ed2ae47c6f70bf8f500682bd00bbf2c1" +path = "static-publisher/static-content/file1809.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/web/php/index.html_gzip_e37df92956c3497aabc3315ee2ab7cf539b73ae0cdd9ca230625e725d497d706" +path = "static-publisher/static-content/file1809.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/web/tor_onion_service/index.html_ab72367442b24df9b467f1e409ef730706b8739c4e3015e72b9d90eeff704784" +path = "../build/minified/site/id/guides/web/tor_onion_service/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/web/tor_onion_service/index.html_br_ede27b91c5909c840a2cbc73c33688c010935f4054577e820a41836b153a7548" +path = "static-publisher/static-content/file1810.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/guides/web/tor_onion_service/index.html_gzip_4e351fb7ad66e3564394b5d4def6af9462d1f438c2ef9eb145ecc483a535af45" +path = "static-publisher/static-content/file1810.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/index.html_2a5ceab480574fd19ba0f0abe7f6980efc6ae1563d07e2531d339d2519785142" +path = "../build/minified/site/id/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/index.html_br_3d65f7cb59b204844a08872d765040affbd2e69b2043a3172d103a1f0e55a466" +path = "static-publisher/static-content/file1811.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/index.html_gzip_1ca88d3bf8ff9e50f0090bdb2695506f8e4d6ab8c445599a2469c6790dacbd49" +path = "static-publisher/static-content/file1811.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/labs/index.html_13533c282a2398f7408018c49c06fadffa2711f042034c61ee2b7101c51aac9f" +path = "../build/minified/site/id/labs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/labs/index.html_br_468a7bda9e69e9d6f089b425f699f6725b064f27b2ea12cafa600f14a208a7f6" +path = "static-publisher/static-content/file1812.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/labs/index.html_gzip_00d2b0af6c4c96130e489354d2ee8820091bef2e0f36a0e07e5e787b40a90a18" +path = "static-publisher/static-content/file1812.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/labs/networking/lab5-nfs/index.html_16133334b52c4c9dbd0767178f9034f2cb9c4ecad909d5053266d6584eeaf7cc" +path = "../build/minified/site/id/labs/networking/lab5-nfs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/labs/networking/lab5-nfs/index.html_br_534452e9b0326deb0709f1e155250e8c04bf76400b178eb80ffcfedda2535093" +path = "static-publisher/static-content/file1813.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/labs/networking/lab5-nfs/index.html_gzip_9756acc67007cb711fa55be2a2a16882d1c46bf271fb33335b0b698e9ee99362" +path = "static-publisher/static-content/file1813.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/labs/security/index.html_399a90930ee96012faf82d4e871069baa91d1ae28081445e07a32feda8d2f231" +path = "../build/minified/site/id/labs/security/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/labs/security/index.html_br_95a19f118e0d61754acf19115197e5f79bd22b776e4dde43d36052f5a548bf94" +path = "static-publisher/static-content/file1814.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/labs/security/index.html_gzip_42b67d862cd48a6851a17d821538d914e54198724523f4e8e20b0b97f6d8a1b5" +path = "static-publisher/static-content/file1814.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/labs/security/introduction/index.html_60f8e5df3fca3c2a3eee3816bf63c15a00f4848d0fa297bcf27be213871ff40d" +path = "../build/minified/site/id/labs/security/introduction/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/labs/security/introduction/index.html_br_5f4580502b40d874d020a7c3febf050b76c9dbc970bf81a5682a015e6c5f449d" +path = "static-publisher/static-content/file1815.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/labs/security/introduction/index.html_gzip_867185f90d3f25283766d41e3042d0d7c11b626cbb0b515370d396863a3db872" +path = "static-publisher/static-content/file1815.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/labs/security/lab3-auditing_the_system/index.html_63f2bdff777e5549b1a9c202bba484477f672d92607bf3561783691000d252ff" +path = "../build/minified/site/id/labs/security/lab3-auditing_the_system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/labs/security/lab3-auditing_the_system/index.html_br_f71908bddd5e683055215406474a381b868d485cbb8bf0c4dbd08187d13bdfa2" +path = "static-publisher/static-content/file1816.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/labs/security/lab3-auditing_the_system/index.html_gzip_da1d807a0abf898142afe371732619dd31a5371215f23fbc132ba96e91e6e5db" +path = "static-publisher/static-content/file1816.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/labs/security/lab8-iptables/index.html_0e4461147514c7697aea6693ca2ccae22963433247e85a006e04b45310cc9d3d" +path = "../build/minified/site/id/labs/security/lab8-iptables/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/labs/security/lab8-iptables/index.html_br_56c885cf6a1d6f31c30e36511722f765ee9601c9920c4e77b6e8ed374d54f1c8" +path = "static-publisher/static-content/file1817.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/labs/security/lab8-iptables/index.html_gzip_3613e5f93f06a36debf7f5ac01938b847cd9a7db6881a2a7b6b5c43d493400b9" +path = "static-publisher/static-content/file1817.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/labs/security/lab9-cryptography/index.html_d119ed1fbbbbd43dbd383af4b28154b542972144e2572a431c24b395a3ea6f12" +path = "../build/minified/site/id/labs/security/lab9-cryptography/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/labs/security/lab9-cryptography/index.html_br_70a8033dedff35640267cb68c61e9d4ab738118180d4020597bfb344e59bc3b6" +path = "static-publisher/static-content/file1818.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/labs/security/lab9-cryptography/index.html_gzip_c1b835f2c15e9ec67d4ebb3118495ff1acd0ba9fbb25c00adab81bc8e8da8d3c" +path = "static-publisher/static-content/file1818.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/labs/systems_administration_I/lab3-system_utilities/index.html_c331ba359c7e9e315ea87972e80bf40281de80482dd9836aeec7a143186c2e50" +path = "../build/minified/site/id/labs/systems_administration_I/lab3-system_utilities/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/labs/systems_administration_I/lab3-system_utilities/index.html_br_a0f2caf74143a9978c688b27c578873f71048c989e537951e83ee19ccdfadfec" +path = "static-publisher/static-content/file1819.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/labs/systems_administration_I/lab3-system_utilities/index.html_gzip_bd7fc4c5a026c94a7273aadacac1110a7e75661271dd4f3bae2a9bddcef63dda" +path = "static-publisher/static-content/file1819.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/labs/systems_administration_I/lab5-networking/index.html_e891d544b2c287b8500f7cc9ada86f5cf044cc34174bb8fb662bf95ddebb6395" +path = "../build/minified/site/id/labs/systems_administration_I/lab5-networking/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/labs/systems_administration_I/lab5-networking/index.html_br_a53d397596e1f91605e49242cb7714faffc9b056e2c0a542299e17eb80eacb3f" +path = "static-publisher/static-content/file1820.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/labs/systems_administration_I/lab5-networking/index.html_gzip_61f0bbbc6dd922544ad43ed40ec3031a9698e9f726ee3312b3e4d7c2299ec404" +path = "static-publisher/static-content/file1820.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/labs/systems_administration_I/lab6-user_and_group_management/index.html_404afd7ab805908a009566fec0687e75c69a374d691335bd85c7ce76c12a093a" +path = "../build/minified/site/id/labs/systems_administration_I/lab6-user_and_group_management/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/labs/systems_administration_I/lab6-user_and_group_management/index.html_br_9a38c68753106ff1ffb8cbe3d2acc707fc705f2538cdbf0378c6b53c8f611bc5" +path = "static-publisher/static-content/file1821.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/labs/systems_administration_I/lab6-user_and_group_management/index.html_gzip_3f6862fccd6c464101de117795797f24eae23fbe4fa663ab2622f153277351b7" +path = "static-publisher/static-content/file1821.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/labs/systems_administration_I/lab7-software_management/index.html_5b1bc08ed5c07d5dc40f5c82c85ac5c2d21cec794531dc7f72ade75bb361b884" +path = "../build/minified/site/id/labs/systems_administration_I/lab7-software_management/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/labs/systems_administration_I/lab7-software_management/index.html_br_f409f09a0e107601467115648a14807f913873e5f9b51d30149607a4c7f8dea4" +path = "static-publisher/static-content/file1822.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/labs/systems_administration_I/lab7-software_management/index.html_gzip_ec59c2aa2634faf1f90b33e45be66f6818609901279013005ec9639a212d6cd3" +path = "static-publisher/static-content/file1822.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html_2a9d7f7a88a548a3cdf1ab87391fb2c68c4206222ea05b05d2495df463a2f137" +path = "../build/minified/site/id/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html_br_2a8eac8606c8010f43c487b3bb035de1e558546c0ad490c2d2b2afaa161ed4e3" +path = "static-publisher/static-content/file1823.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html_gzip_bad259ae7104d99fe5ef9c9fae37bcd26061608c5dfe3679c83b57aed377a17d" +path = "static-publisher/static-content/file1823.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/labs/systems_administration_II/lab3-bootup_and_startup/index.html_377997fe31fd953d356658316e1a06f6723935d961b14d17fd89522eeb1fce34" +path = "../build/minified/site/id/labs/systems_administration_II/lab3-bootup_and_startup/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/labs/systems_administration_II/lab3-bootup_and_startup/index.html_br_7403026a6849041b61cc371da1b4e61d70f50d50ee1300f315d48829a2cd6407" +path = "static-publisher/static-content/file1824.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/labs/systems_administration_II/lab3-bootup_and_startup/index.html_gzip_a8aaa159674563bb8cfea9dffcf5a24ca752c860d2cde0675be68be07b43620f" +path = "static-publisher/static-content/file1824.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html_b8fb7e7a24c59e71af767ca76d91d3ff2699a6f4f94aa996dedfa214afcef718" +path = "../build/minified/site/id/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html_br_46dfa3b86c539d839e96942c99b8f0403eac89f0edcdd6936b8ff9f319463b39" +path = "static-publisher/static-content/file1825.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html_gzip_b2c3afd44c774ed3af948da4dcfa0e8f8f3e8822186f17576540d8efd921a8cb" +path = "static-publisher/static-content/file1825.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/labs/systems_administration_II/lab6-the_file_system/index.html_6cd6af62f8d9a35010e548c67c5bf4d213fc6add061e21d82268c3a7283d2396" +path = "../build/minified/site/id/labs/systems_administration_II/lab6-the_file_system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/labs/systems_administration_II/lab6-the_file_system/index.html_br_04195145d667399d3c5ac8ce9cea4986f0fe4b90716241f47c3f788b4462c6e8" +path = "static-publisher/static-content/file1826.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/labs/systems_administration_II/lab6-the_file_system/index.html_gzip_cb98e503045664ae8d9493f0d54c25ff24b9edb8775a94a66e077d1c29739ae3" +path = "static-publisher/static-content/file1826.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/labs/systems_administration_II/lab7-the_linux_kernel/index.html_1d9d9269fb1c25f07a1b108d1178462b35854154fad4d4455b2f11a35fb2904c" +path = "../build/minified/site/id/labs/systems_administration_II/lab7-the_linux_kernel/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/labs/systems_administration_II/lab7-the_linux_kernel/index.html_br_3c7e290af24246477b7ae2d1c6773e524e27fdbbcc0cef09cf852d253251172a" +path = "static-publisher/static-content/file1827.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/labs/systems_administration_II/lab7-the_linux_kernel/index.html_gzip_4b273f07de71b953c4443d53bcd73a87a162c7ef06c0061d4b10620c9f9652f0" +path = "static-publisher/static-content/file1827.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/release_notes/8-changelog/index.html_93d82af42b7c2e77a1e556ed95b2f53540cb819d27d1a56971c820e82e302217" +path = "../build/minified/site/id/release_notes/8-changelog/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/release_notes/8-changelog/index.html_br_486ef80374673bb9cafeac15c6d0b46898b2bc8346061df9982892300505e548" +path = "static-publisher/static-content/file1828.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/release_notes/8-changelog/index.html_gzip_3db035089ecf78acb6c29ec30c3d7b2ccc83148d546ff7aae56e24bfa9d4c143" +path = "static-publisher/static-content/file1828.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/release_notes/8_4/index.html_406a35450f835f1607b42eaab30531daabe2043580745558efabfe4a3fe6ed54" +path = "../build/minified/site/id/release_notes/8_4/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/release_notes/8_4/index.html_br_13434d068b087b5857daac3fd9efc92dfb4bd741c4b353df89a2532b6715f656" +path = "static-publisher/static-content/file1829.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/release_notes/8_4/index.html_gzip_3119ef5669c1695cc7285bdb2c3223ea191dfdb55e8db21ff6153c93bbcaae04" +path = "static-publisher/static-content/file1829.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/release_notes/8_5/index.html_c61077355d3ddba7f753f31073bf4db4dbbae659a88f6aa2e0c8248f9c09382a" +path = "../build/minified/site/id/release_notes/8_5/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/release_notes/8_5/index.html_br_f5008b0298cb11b167efd5257c9a39a8d7e8b56505dad04f6f36c16561f881d8" +path = "static-publisher/static-content/file1830.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/release_notes/8_5/index.html_gzip_cfa2a712ced5ced57efa1bfdce834b708559d8250c0fef346702eede8f998003" +path = "static-publisher/static-content/file1830.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/release_notes/8_6/index.html_3ceab535d7cce02548d4ea3f312ac1a438e3c85b1851f9e93d7a57353c413a5e" +path = "../build/minified/site/id/release_notes/8_6/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/release_notes/8_6/index.html_br_b677c7482a9ab1141ff83a8223e11d2ae2596810617a92b71f8c50d35f076313" +path = "static-publisher/static-content/file1831.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/release_notes/8_6/index.html_gzip_647879213a6713c60934818ab83cf047153a1df7604f3b711d95f70103e6b929" +path = "static-publisher/static-content/file1831.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/release_notes/8_7/index.html_fb52baba5c2f5b91b9362c3960f7b8b850be5f4f5e3d9778ad217aeba828e0a4" +path = "../build/minified/site/id/release_notes/8_7/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/release_notes/8_7/index.html_br_8a087f54c82331efd3e07bf790a85d3b07f649cff0010abf761a484cbcd1ad84" +path = "static-publisher/static-content/file1832.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/release_notes/8_7/index.html_gzip_e2d646aece9957e3343005be6e9e58963da614c14e5920be403ff14dc2f43968" +path = "static-publisher/static-content/file1832.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/release_notes/8_8/index.html_573e7280caaef8a380eeb226bea8f3c291bfe5d91e0eab72d1185edba1486bc1" +path = "../build/minified/site/id/release_notes/8_8/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/release_notes/8_8/index.html_br_544b0196924582a63212c5acc87793bbe3f708d295a805c260938783ef706d38" +path = "static-publisher/static-content/file1833.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/release_notes/8_8/index.html_gzip_c9062fc10b71c12ee9205869b37465391ec9b84682a500c4293726f37c80b84c" +path = "static-publisher/static-content/file1833.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/release_notes/8_9/index.html_4822a283711056b59b9f4fc70dc134aa566813a81bc4552762810ba985d54749" +path = "../build/minified/site/id/release_notes/8_9/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/release_notes/8_9/index.html_br_66cdc40cd0723331d805a6a5931acc6e678cbcddacf27cf21ffcc604c24d269a" +path = "static-publisher/static-content/file1834.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/release_notes/8_9/index.html_gzip_f40699ccfbbafd5708e6035f2be37dd01e13b9fec774d0b55ded90b28b978fef" +path = "static-publisher/static-content/file1834.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/release_notes/9_0/index.html_29c77301331ef128bfb351dd76eac6ef2cab7b9a249fb3c0e61a91bd314391cb" +path = "../build/minified/site/id/release_notes/9_0/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/release_notes/9_0/index.html_br_f8f114a2683b67eac019abad373f9afcab0cdfe78e13375554ae26dbfbdf2462" +path = "static-publisher/static-content/file1835.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/release_notes/9_0/index.html_gzip_9fb5fcfea4627082835a23600aa4ad470dc38b937028dd45f01bfa1af4f6e141" +path = "static-publisher/static-content/file1835.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/release_notes/9_1/index.html_8ce6bba9e5a213f1be6d7e2a123fe0b92af399a9154310696de765ad5f119b7b" +path = "../build/minified/site/id/release_notes/9_1/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/release_notes/9_1/index.html_br_a29a2723222a94628fe7babad4bd904354cf2be67eff18f25c49c3f662c17521" +path = "static-publisher/static-content/file1836.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/release_notes/9_1/index.html_gzip_69a75df271005483e5d1aa9b0a7168b132e5242a27fd5a452b2f370780489f22" +path = "static-publisher/static-content/file1836.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/release_notes/9_2/index.html_52f81a8774971a6064d0a99b3651cb7956b732fd60f4ce6c4ba80e711580fa4d" +path = "../build/minified/site/id/release_notes/9_2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/release_notes/9_2/index.html_br_bdea05cc2ad47897a4f7b9f1ea768bb979145fc807a2894992535afbda7566d1" +path = "static-publisher/static-content/file1837.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/release_notes/9_2/index.html_gzip_0c16972bb612e44a2ed6c55c0d9ca868822d3a19f3bcb9a679a66b83dde6ed69" +path = "static-publisher/static-content/file1837.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/release_notes/9_3/index.html_ce9d7f1825f06c858fcfe21282d956fd1e842b4266dc11ff7a33a414827aa672" +path = "../build/minified/site/id/release_notes/9_3/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/release_notes/9_3/index.html_br_8471bbd54d84dd5d153f8f40e581cb04643039e3b9db37af79bb33709475cd60" +path = "static-publisher/static-content/file1838.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/release_notes/9_3/index.html_gzip_9ec516ae123d780796a39c4489b92c9b192d49db22372b60d76297ff7aeea5d5" +path = "static-publisher/static-content/file1838.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/release_notes/index.html_6bf84b0dcb4660ebbeb04684a00dc7e986134f61a111c650a9bf9898fa62d920" +path = "../build/minified/site/id/release_notes/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/release_notes/index.html_br_6d8fc25fd12ce504e72a23194e02573b976c584be8344bf164b69acdc3ce64ef" +path = "static-publisher/static-content/file1839.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/id/release_notes/index.html_gzip_1f6470b13ae0a00ab44bdf8b05007993273b0108d16baa967d1182847f9600d3" +path = "static-publisher/static-content/file1839.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/index.html_adba029c866a1d9aaacdabbf80cd5419b0b7cb624af00962a2748ed1a6e193f9" +path = "../build/minified/site/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/index.html_br_337f25e6abc538ec6371468552ec61c073bf98f80bd03d3e1bc77e9d1681eed8" +path = "static-publisher/static-content/file1840.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/index.html_gzip_d5a2171eea08fb2213d994b0cd8379b9dd6b221ade35be7100a713e5e13f354d" +path = "static-publisher/static-content/file1840.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/admin_guide/00-toc/index.html_a377011617b5de355b42d19f9b67fad914764931e1675bc9f661884b109d17df" +path = "../build/minified/site/it/books/admin_guide/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/admin_guide/00-toc/index.html_br_edf5038644457da27937736e48d85ac4c6b7e44bbd34120d9231fac6e5485fc9" +path = "static-publisher/static-content/file1841.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/admin_guide/00-toc/index.html_gzip_d4fe49a37bd0200ed8a5364d32595510ff988476479d815f9d81860eb9a7777d" +path = "static-publisher/static-content/file1841.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/admin_guide/01-presentation/index.html_046b5ad31aaaed6e5a020b25b1ef8e3d31efff6faa9419cacc8e41aa6739050f" +path = "../build/minified/site/it/books/admin_guide/01-presentation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/admin_guide/01-presentation/index.html_br_ba1b65f1404700f54de3f3536c85bc84c6df21a20bd9a1e2e5954a2326c2160a" +path = "static-publisher/static-content/file1842.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/admin_guide/01-presentation/index.html_gzip_31a59d1496e57a5c6656c3f3eb5c5aab8e23774519f7490dc26e0ab61779f702" +path = "static-publisher/static-content/file1842.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/admin_guide/03-commands/index.html_d9053e8bda0ff613bf2a81615104a92cdb3f0c021ac56a6aaa597be78ba5aa0f" +path = "../build/minified/site/it/books/admin_guide/03-commands/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/admin_guide/03-commands/index.html_br_417c1257c2f2c0d93f668872d91dd93a1117ea4e1c9ee24798e8abffd87e093c" +path = "static-publisher/static-content/file1843.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/admin_guide/03-commands/index.html_gzip_6876d89c76f952c242de5b4c643b8c9899450f64a456ef94d280b5abc70d3b4d" +path = "static-publisher/static-content/file1843.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/admin_guide/04-advanced-commands/index.html_27af1a7b66c4210b082526d4ee3f29417faf7250e9829df6d144d0cc136f47d4" +path = "../build/minified/site/it/books/admin_guide/04-advanced-commands/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/admin_guide/04-advanced-commands/index.html_br_d586c66ac0660b6ce48d7c454508760be5a7559854ad88e857cfae534935e8da" +path = "static-publisher/static-content/file1844.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/admin_guide/04-advanced-commands/index.html_gzip_304dde6d0645c3b7981f35de8b01e67cd2195e2364c1f36dfb8f3ef326914407" +path = "static-publisher/static-content/file1844.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/admin_guide/05-vi/index.html_6bad66bd2bbfb5c21abebd2f831a047f3e8917ee1dd5164bd86f114841a721b0" +path = "../build/minified/site/it/books/admin_guide/05-vi/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/admin_guide/05-vi/index.html_br_0401aeeacb40671911b88b3ddb59e56df0bf397954aead3fef302f587fff9889" +path = "static-publisher/static-content/file1845.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/admin_guide/05-vi/index.html_gzip_ddc66e88ed8a481382044a8c797e1f7624aff9b14313c110b0290d28a9eb2545" +path = "static-publisher/static-content/file1845.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/admin_guide/06-users/index.html_b337358e7df27bad037e482d1ccd582854f51976a84820c0bb759b18ea1cf2e6" +path = "../build/minified/site/it/books/admin_guide/06-users/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/admin_guide/06-users/index.html_br_d6d53672821658c94770999d060e524fafd1fd08c7788e033500571d62837e79" +path = "static-publisher/static-content/file1846.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/admin_guide/06-users/index.html_gzip_6fa006fa71b9ec243fd061327e7104c170b4a8972581c9b77477ec10f1d19fa9" +path = "static-publisher/static-content/file1846.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/admin_guide/07-file-systems/index.html_62e0ae336e983f58183a12d585eae296ab578878bc4014a8da8ff990d4200270" +path = "../build/minified/site/it/books/admin_guide/07-file-systems/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/admin_guide/07-file-systems/index.html_br_0104717c030caef4f7ff00be7e2e4fab41772ad7a8afdb7e55d3e35affa3e6b6" +path = "static-publisher/static-content/file1847.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/admin_guide/07-file-systems/index.html_gzip_6e51105ae544cca6618a2cad29ffb461aa7b000097be9572044dba8cd85884ba" +path = "static-publisher/static-content/file1847.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/admin_guide/08-process/index.html_19adff346c4f48f00a1e7637306ea17c12594394b3f599e09139e78e73686120" +path = "../build/minified/site/it/books/admin_guide/08-process/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/admin_guide/08-process/index.html_br_6ad1644cc6b49791bf0efe0625bf2c41355e35b972da2e9d8d232db7a345c7c5" +path = "static-publisher/static-content/file1848.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/admin_guide/08-process/index.html_gzip_eceb6429d3f52299bfdd42ad610ba2a3d27d1f7dc735b5faeb25a8eed6800509" +path = "static-publisher/static-content/file1848.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/admin_guide/09-backups/index.html_9f6b4c11d1f82b03c76cf571876a761000db63158e7af62e7c694b6c9a3d0ff1" +path = "../build/minified/site/it/books/admin_guide/09-backups/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/admin_guide/09-backups/index.html_br_60046a5c1422c3f8953285bf0cd56c19b92018614ada20e2185cc28c3bc75b10" +path = "static-publisher/static-content/file1849.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/admin_guide/09-backups/index.html_gzip_75f87559b902d4a67f3372d358f2636ed3f9691d9c86730075fd9e21518aaec3" +path = "static-publisher/static-content/file1849.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/admin_guide/10-boot/index.html_cbd3e2c1480f6c524938469b23be49765e68c3d546af8eab0b849289494efde5" +path = "../build/minified/site/it/books/admin_guide/10-boot/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/admin_guide/10-boot/index.html_br_94a4b61db0e7898b8da5635d8dc7862ec9966a69023a9c2b8e1c4c2aa7ad82e5" +path = "static-publisher/static-content/file1850.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/admin_guide/10-boot/index.html_gzip_8566f6e9791fb757131679d8cae2cb0a540b53c439bab44f71b33143a18c654d" +path = "static-publisher/static-content/file1850.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/admin_guide/11-tasks/index.html_94d495c14e59fc693d31ea606d592824c0d1219e242db1fb51c46778b6a9192c" +path = "../build/minified/site/it/books/admin_guide/11-tasks/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/admin_guide/11-tasks/index.html_br_13467b99a6ea8ec97fb255a250edec9bb03e963c9e7160f3a134c607bc3c7c54" +path = "static-publisher/static-content/file1851.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/admin_guide/11-tasks/index.html_gzip_c0845b0a7eeabb027207d94ddde1e7cb2ed29cf2366f0d598441ce1cb457667d" +path = "static-publisher/static-content/file1851.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/admin_guide/12-network/index.html_da0be183e9b1cf74f763beeb4af51422ae83177cd887e5b1cd09931dec1f2599" +path = "../build/minified/site/it/books/admin_guide/12-network/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/admin_guide/12-network/index.html_br_74974ee2ac2d3c2a7e6831955e9e4ccb1fe8d8a150794ad5ae8c63a14db3918d" +path = "static-publisher/static-content/file1852.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/admin_guide/12-network/index.html_gzip_b648374e33bcc0fbdc3650cb10d371a03ae9033940509d314dbfe35515a363cb" +path = "static-publisher/static-content/file1852.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/admin_guide/13-softwares/index.html_efa23e20ab893df0b7196f35593ade564f97dd650bb9c494fa90d863a0b8938f" +path = "../build/minified/site/it/books/admin_guide/13-softwares/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/admin_guide/13-softwares/index.html_br_b4b542c87afb12f88eef6876782626743f1721ce0018d20bc3c381c5deb11089" +path = "static-publisher/static-content/file1853.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/admin_guide/13-softwares/index.html_gzip_d2061dad65c9f9e82cad4ef878c33258fed7c7f72545cebd16adbb6800d940df" +path = "static-publisher/static-content/file1853.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/admin_guide/14-special-authority/index.html_2f2144ff7bdb5193b934a3a8fa55e212638b3d4c89e9cfc1d35305d6234c6769" +path = "../build/minified/site/it/books/admin_guide/14-special-authority/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/admin_guide/14-special-authority/index.html_br_0b0298a4122382464295a56a442f1943627280f1de67ca835476fabc71c8aad2" +path = "static-publisher/static-content/file1854.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/admin_guide/14-special-authority/index.html_gzip_9fc1203c9d9e74ad0fcaa5db1fddd5839facbc61d77ce3f0fb8b0a1d31ebed73" +path = "static-publisher/static-content/file1854.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/admin_guide/16-about-sytemd/index.html_9829d3cc8e624d90023276a539cd2bef700dbdc44b20d98cb0cdcecf51284aba" +path = "../build/minified/site/it/books/admin_guide/16-about-sytemd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/admin_guide/16-about-sytemd/index.html_br_2f13c13c4701e84d39a6e47003a9803c92545ad19257b340b25eb2591f30d5af" +path = "static-publisher/static-content/file1855.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/admin_guide/16-about-sytemd/index.html_gzip_050c476a10755045695b38d95e3026368ffb139c52426cdcf9563e9172ca8cbe" +path = "static-publisher/static-content/file1855.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/bash_programming/01-Shell-overview/index.html_30fffbb4d084696d99d635a18c2a37b7f6578dce9ad97e18f1185ab2b3e8afe2" +path = "../build/minified/site/it/books/bash_programming/01-Shell-overview/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/bash_programming/01-Shell-overview/index.html_br_a17286f0779af79481ac5bd9297339475cab692ec5b13ef5543feacdada323b6" +path = "static-publisher/static-content/file1856.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/bash_programming/01-Shell-overview/index.html_gzip_90c6248011c8b9279efaa119047dfe4d9d7184e3eb4d7f7ffc450be7faa8fe4f" +path = "static-publisher/static-content/file1856.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/disa_stig/disa_stig_part1/index.html_14404eb8cd8ab55136335f0e240232e4ec580f43725181a5750480e97011c862" +path = "../build/minified/site/it/books/disa_stig/disa_stig_part1/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/disa_stig/disa_stig_part1/index.html_br_82db6353fc4757d475f11c8cf19b11dab9ea31b9922b569b56817e9ed8375d96" +path = "static-publisher/static-content/file1857.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/disa_stig/disa_stig_part1/index.html_gzip_39e097eb53d7676b676ec2d6011dffc11ad962255fd7bd77d44389058de00e00" +path = "static-publisher/static-content/file1857.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/disa_stig/disa_stig_part2/index.html_e8604af73e63ada93375dba0239f48715b7bab9653fa524d1dc8dcac7a3c4116" +path = "../build/minified/site/it/books/disa_stig/disa_stig_part2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/disa_stig/disa_stig_part2/index.html_br_edb9ded69758dc458b749fb3f31a7c9f30916ea1ffac83de731215553e9ab9cf" +path = "static-publisher/static-content/file1858.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/disa_stig/disa_stig_part2/index.html_gzip_8ab399e742e4b0b7616f4d21e7c85cf8a7224b93512f5d90ca4ce9f2878f0fe6" +path = "static-publisher/static-content/file1858.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/disa_stig/disa_stig_part3/index.html_5412a9174ff6ae2836fbe548c4652c290c4be17a59a375a0523c5fc14c609a5f" +path = "../build/minified/site/it/books/disa_stig/disa_stig_part3/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/disa_stig/disa_stig_part3/index.html_br_6098e3f84a5f506ac6e3bd30ecea5f33c92e2853c42874f47d8065f1350c309f" +path = "static-publisher/static-content/file1859.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/disa_stig/disa_stig_part3/index.html_gzip_2fddfb05cbd6964180f9c839b7f123de8a1daf260205a6758b4f839f554e0346" +path = "static-publisher/static-content/file1859.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/index.html_16c38878828a9ffc6cae28081c9a955f3d4f80f98339d71f2ed5d8e92a532428" +path = "../build/minified/site/it/books/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/index.html_br_a23c2532d5c6fa704f49b5dda04c800f133952d840c0fe161d6d5e9eb11c843a" +path = "static-publisher/static-content/file1860.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/index.html_gzip_27cae69d5a2ef05f43d0016ca0713739c603727a6bb238f4a3bcb191287588d6" +path = "static-publisher/static-content/file1860.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_ansible/00-toc/index.html_3ef1f54c0f3e40825c47af3d9d0be47fe305cbce238abd850bcc80869e08fc13" +path = "../build/minified/site/it/books/learning_ansible/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_ansible/00-toc/index.html_br_f3c38964f96945dc8896734195a69c183446502041ecd8494d01f426821f1e43" +path = "static-publisher/static-content/file1861.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_ansible/00-toc/index.html_gzip_55cd9026959335c200df8db8e5820ba1c4c2a6cf68902b0bb588c089b4de75d1" +path = "static-publisher/static-content/file1861.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_ansible/01-basic/index.html_2f48ff644e3608d817d2fb57aef18cc6c5bd75b991b2b6cd6c38ab5700748271" +path = "../build/minified/site/it/books/learning_ansible/01-basic/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_ansible/01-basic/index.html_br_f1428ab1a7ae29a5fe72ca7fb321369320f1ed48c097c1482dac713f910cd16a" +path = "static-publisher/static-content/file1862.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_ansible/01-basic/index.html_gzip_60b9bbb25f075af3590b35e67a1e7e7006c44a8617efb1d950e9890175ff9fab" +path = "static-publisher/static-content/file1862.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_ansible/02-advanced/index.html_042c844d428675c446ea0dc03a24374da999a5a1460c61405c4f4f9648db16a5" +path = "../build/minified/site/it/books/learning_ansible/02-advanced/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_ansible/02-advanced/index.html_br_9de5bebf637b4e939050e4bf24cafe384af74c338143f30a940e9664591e5e9c" +path = "static-publisher/static-content/file1863.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_ansible/02-advanced/index.html_gzip_5614614e49b8ced5f5d1ccdb7c2dfbf8b78ee7d132f0fcd78d1b6aea516de9af" +path = "static-publisher/static-content/file1863.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_ansible/03-working-with-files/index.html_2ee93acd184a6b4c4c1476e41b06c4afb05ee8b52d2b48283d29756b7f35c534" +path = "../build/minified/site/it/books/learning_ansible/03-working-with-files/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_ansible/03-working-with-files/index.html_br_09237a159c7dbb268966522bbb40b5b2e5c38343ca309e720d6044871222d3b0" +path = "static-publisher/static-content/file1864.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_ansible/03-working-with-files/index.html_gzip_13c290bc320e173db1d5f4c2da3929b45060becd4216448577ee2cf91a9247cd" +path = "static-publisher/static-content/file1864.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_ansible/04-ansible-galaxy/index.html_6eb86f61be4e34e322b6222acfc227409ad419ada1c23550935f246790ac2a2e" +path = "../build/minified/site/it/books/learning_ansible/04-ansible-galaxy/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_ansible/04-ansible-galaxy/index.html_br_bac7e1f7b05eef43de0575fe18b7b24300c2c4fb20dce04c68a1bc3781154c6f" +path = "static-publisher/static-content/file1865.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_ansible/04-ansible-galaxy/index.html_gzip_c873bfeab80ea5f799463f48db47724d71877476b6a9f5e9683c6cb9a241e44c" +path = "static-publisher/static-content/file1865.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_ansible/05-deployments/index.html_f45f9f934fb52b65f47f523cb6799ca6da8647ca13fffbbcd7ff259b4f3a1d48" +path = "../build/minified/site/it/books/learning_ansible/05-deployments/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_ansible/05-deployments/index.html_br_13bb37745ad9aeced2e5e9bda47af074f95c56a013c8c0bd1c0e432738c6a16f" +path = "static-publisher/static-content/file1866.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_ansible/05-deployments/index.html_gzip_ba8ef4cd5c7f340276edd6986d4f5eb3f0f7a718f0b4bddecf6720afb278603a" +path = "static-publisher/static-content/file1866.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_ansible/06-large-scale-infrastructure/index.html_7dd02c7ae4041ecda79376f2d219ae2201b521b4dfecb25a7f7d21565813c59f" +path = "../build/minified/site/it/books/learning_ansible/06-large-scale-infrastructure/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_ansible/06-large-scale-infrastructure/index.html_br_dc874c2efe6abfe705a9fefc12c575abebd9318f4fce4414f74948ac3c9c8934" +path = "static-publisher/static-content/file1867.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_ansible/06-large-scale-infrastructure/index.html_gzip_3798ca011144365329f6ac855a992bd32e554822ccfc374e93bab6a33ff7ea22" +path = "static-publisher/static-content/file1867.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_ansible/07-working-with-filters/index.html_610ead83974510cb58e96a5ac56611b1087dace8a7ef543f24dc6101225cee1f" +path = "../build/minified/site/it/books/learning_ansible/07-working-with-filters/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_ansible/07-working-with-filters/index.html_br_654fcefe1001eb6e65a868566e3bb2e58fbaed6528a48254b51e5f9bc340b252" +path = "static-publisher/static-content/file1868.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_ansible/07-working-with-filters/index.html_gzip_ad2f9ed940a50208750dfabc2d6f99207ebc2b9ff1f3982ec764c9d7db403f79" +path = "static-publisher/static-content/file1868.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_ansible/08-management-server-optimizations/index.html_7fa7f78fab8ff8b9618a7ff53fbeb5936c770789b60c06782857b89dd1100e65" +path = "../build/minified/site/it/books/learning_ansible/08-management-server-optimizations/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_ansible/08-management-server-optimizations/index.html_br_81152d6057a2e1d00f66cb7443d06f2a9b7d7e7576d10a3c8f1344b60aa2ab4a" +path = "static-publisher/static-content/file1869.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_ansible/08-management-server-optimizations/index.html_gzip_24c4f2f516071cdf158ca816087af67ade746665755f78417f6112dee0633e62" +path = "static-publisher/static-content/file1869.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_bash/00-toc/index.html_19890ed37f14255b516bc8275333f7023a182a048676b3e33cda2a817b26e99f" +path = "../build/minified/site/it/books/learning_bash/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_bash/00-toc/index.html_br_cd293735df67719fc10be45b7cc653af161eed77fa7b8481936cc686aad79e26" +path = "static-publisher/static-content/file1870.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_bash/00-toc/index.html_gzip_1b05053121429f9cf08c05690ddb7d17857dbc8012f7eae570285d4f11554e3f" +path = "static-publisher/static-content/file1870.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_bash/01-first-script/index.html_2ae148c6d567eff894bce9f58683a59e071e7cbc381784561878404f3c551ef2" +path = "../build/minified/site/it/books/learning_bash/01-first-script/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_bash/01-first-script/index.html_br_9b38b82c586008fe39741527f034575474c5fb66bf435af8d9a938bb5292a37a" +path = "static-publisher/static-content/file1871.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_bash/01-first-script/index.html_gzip_3e204180faa11e6aadad1196cc498660793b555df3c282e331c24c856b6f68df" +path = "static-publisher/static-content/file1871.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_bash/02-using-variables/index.html_40775e1382f02bb8390f357561c1b26709f742716f81989e69df474d78faacc9" +path = "../build/minified/site/it/books/learning_bash/02-using-variables/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_bash/02-using-variables/index.html_br_63a173c5cbb0baae5e16008373e08dee77633e1e0e2758a81db724604e3c2608" +path = "static-publisher/static-content/file1872.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_bash/02-using-variables/index.html_gzip_69be932334f694b25c8499baf8bbcc135e606effa9ec8753f8834d30f8f547a5" +path = "static-publisher/static-content/file1872.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_bash/03-data-entry-and-manipulations/index.html_f0ef1707eed398f21871d8f437955ee7943c0e3ed659864683fdb49912583c40" +path = "../build/minified/site/it/books/learning_bash/03-data-entry-and-manipulations/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_bash/03-data-entry-and-manipulations/index.html_br_57f14f48575fc341bdf7db387ca03f7533d547109937ceb71604a0fdffd8fc21" +path = "static-publisher/static-content/file1873.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_bash/03-data-entry-and-manipulations/index.html_gzip_9c154ea113042de8b59ec1b80536302eea01acb73ae0d0ae87fa7c989828e712" +path = "static-publisher/static-content/file1873.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_bash/04-check-your-knowledge/index.html_5a008d0a36549c8540a9f55ead51046acfddda3f217a2a16eae0c1ba4e65d572" +path = "../build/minified/site/it/books/learning_bash/04-check-your-knowledge/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_bash/04-check-your-knowledge/index.html_br_7cf49a9ee0b41916220f8d0e59bcb48b1bc99f7ad8548f807d63e007118e9b0d" +path = "static-publisher/static-content/file1874.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_bash/04-check-your-knowledge/index.html_gzip_dd1cedad36450e6f8b8197f64299bb631c25eea3f8f0df7be5101afe757cb909" +path = "static-publisher/static-content/file1874.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_bash/05-tests/index.html_75cab134b93485e0fd62b3c13df1da1ffaad2db6d052903e47baa2af20e14c77" +path = "../build/minified/site/it/books/learning_bash/05-tests/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_bash/05-tests/index.html_br_ed0a982c28556cbf47265fcb9de19d05d2cac418e4958b0780116413ea78a8b4" +path = "static-publisher/static-content/file1875.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_bash/05-tests/index.html_gzip_9e677b9a7aca9a1219054768b585ebf7a325985e984082166eefa1ebf884e43a" +path = "static-publisher/static-content/file1875.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_bash/06-conditional-structures/index.html_bb596628159672b0497f096e0e958c5451fecf191438e3fedca9346eca444bfa" +path = "../build/minified/site/it/books/learning_bash/06-conditional-structures/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_bash/06-conditional-structures/index.html_br_332835b5b05d70b79f93a05e55169e339d43cc91fca330ae091e35c403f7ab76" +path = "static-publisher/static-content/file1876.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_bash/06-conditional-structures/index.html_gzip_2b203db3c71c47a022ad623f1b90d726b9cad0e2dddca6145f9ec15dc7cadd50" +path = "static-publisher/static-content/file1876.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_bash/07-loops/index.html_7c608ececbdec96073ea6a3fdc5aef251b976e2c5cedba23760cb838d7fe5b10" +path = "../build/minified/site/it/books/learning_bash/07-loops/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_bash/07-loops/index.html_br_738df69ec4530ea5df7204c0a5ea61a55071fde73c08d2205adba724fd42f969" +path = "static-publisher/static-content/file1877.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_bash/07-loops/index.html_gzip_64c1f9a5a723a3a2b76b31e667231a381206e1fb1090ec24654894d1e523a199" +path = "static-publisher/static-content/file1877.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_bash/08-check-your-knowledge/index.html_96c8c83159e94f9128b631870b5653cfdea60852581270d8a34272dda040eabb" +path = "../build/minified/site/it/books/learning_bash/08-check-your-knowledge/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_bash/08-check-your-knowledge/index.html_br_98bf4895ba6ce31f91d9a17a05b9fd3db0ba626da6c149418a72ba3179abbc60" +path = "static-publisher/static-content/file1878.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_bash/08-check-your-knowledge/index.html_gzip_51acc8b1649d7ec01992bc73fa32de6cd9ae6c9a67cafe3a1e8ed2aa259857f4" +path = "static-publisher/static-content/file1878.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_bash/appendix/02-variables-logs/index.html_fa62c18ce557bc499dfeabaccc8d3ae8ade126ba47c8da2c479a99a7ae5da433" +path = "../build/minified/site/it/books/learning_bash/appendix/02-variables-logs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_bash/appendix/02-variables-logs/index.html_br_b21a7ffa3475bdcd8baf260367eba8f87c776c897e651d680374aa23e2ae687b" +path = "static-publisher/static-content/file1879.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_bash/appendix/02-variables-logs/index.html_gzip_b79dc75db4a9b83f82ad844715e28fad032724c4ddd7c3c3e3dd5a70a8a533e3" +path = "static-publisher/static-content/file1879.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_rsync/01_rsync_overview/index.html_e7f34d7aa537459258f0eaf290ebe0a75c7d87f9e6a20bc4fa95c2ee225b9c68" +path = "../build/minified/site/it/books/learning_rsync/01_rsync_overview/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_rsync/01_rsync_overview/index.html_br_9859f2fe17e96258a1645cb17be6a16f7edd1925ec5eb87bca40276607ebe6c0" +path = "static-publisher/static-content/file1880.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_rsync/01_rsync_overview/index.html_gzip_abcef8e65dbee2c404409e8d60d572b92eee351abc0fb4bde358c47cc76ced0e" +path = "static-publisher/static-content/file1880.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_rsync/02_rsync_demo01/index.html_987e4ece086c2ef1ca55a53895f11ee5e46d6089489691e3a04789da9159bc84" +path = "../build/minified/site/it/books/learning_rsync/02_rsync_demo01/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_rsync/02_rsync_demo01/index.html_br_531fae11d87c8971cb39003845d094dc54c2c9d637059e31f56865f6e9f3738c" +path = "static-publisher/static-content/file1881.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_rsync/02_rsync_demo01/index.html_gzip_6a67e32bae870f1f84c0ac8cd20da8969e413ce2d71aec12ea2bdd41ffa942f7" +path = "static-publisher/static-content/file1881.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_rsync/03_rsync_demo02/index.html_81f921e538819eb8c4b1c5a07347d33d171024ffdd4cf2015d3ab291ef0fe00f" +path = "../build/minified/site/it/books/learning_rsync/03_rsync_demo02/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_rsync/03_rsync_demo02/index.html_br_4aa2bdc423ec2a341122746e100ee60c4e89e0f94254c7ad15f7ee94fd229bdd" +path = "static-publisher/static-content/file1882.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_rsync/03_rsync_demo02/index.html_gzip_2c13571b59926157200067df25f772df16066edf19e28168300b39b014ed4fa4" +path = "static-publisher/static-content/file1882.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_rsync/04_rsync_configure/index.html_a95f9a5093b7718965724e1bdf4c63014ec3791dbdee01b2c3b820ccfe28fc5b" +path = "../build/minified/site/it/books/learning_rsync/04_rsync_configure/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_rsync/04_rsync_configure/index.html_br_60e51dc99752db9ae54a490dfc8be497e26b38f33a3f035b76dd82cdc798c596" +path = "static-publisher/static-content/file1883.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_rsync/04_rsync_configure/index.html_gzip_9f76be1aba70bd596c29879b881e47aac1d52c94a0afe8f9bc9e24b067167955" +path = "static-publisher/static-content/file1883.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_rsync/05_rsync_authentication-free_login/index.html_89860ed76165c0c771407fc8e3e2b48c555471a5de66960af34de1c1dda49391" +path = "../build/minified/site/it/books/learning_rsync/05_rsync_authentication-free_login/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_rsync/05_rsync_authentication-free_login/index.html_br_8fb456a3636221a9f4a1182b37dba777f792d98d8f2be7b0cf7701ac85176e0d" +path = "static-publisher/static-content/file1884.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_rsync/05_rsync_authentication-free_login/index.html_gzip_5d20614e56cb7dc0bcaff82b5a7eab1b1c73192e0464afda0ffae6e5bcc9108b" +path = "static-publisher/static-content/file1884.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_rsync/06_rsync_inotify/index.html_646c3fd9ebed1f8da11d260c8a7eb6e071e150e890a67146b4729b24f30b11bc" +path = "../build/minified/site/it/books/learning_rsync/06_rsync_inotify/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_rsync/06_rsync_inotify/index.html_br_3968c3769f0ba73f33a9a70dc5aeb36710fa264f89fbe175fe7bd3977add28a8" +path = "static-publisher/static-content/file1885.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_rsync/06_rsync_inotify/index.html_gzip_b6aeffe70e3f1de46da26b1744116e732b8099c94b7f94c732f975330bc7bafb" +path = "static-publisher/static-content/file1885.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_rsync/07_rsync_unison_use/index.html_e38a3bb9581c5e4de590df9c507ad02491da60d5fb69bd3ab3b4e55f06b67ffc" +path = "../build/minified/site/it/books/learning_rsync/07_rsync_unison_use/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_rsync/07_rsync_unison_use/index.html_br_09a8b837bb6d4364cdb2a9e5836accfc065a2765c463a945002c092f5479a277" +path = "static-publisher/static-content/file1886.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/learning_rsync/07_rsync_unison_use/index.html_gzip_4d74ce3f7fe6409d91af3ae42b73d4323e4e207e73093dcd659f031fff5a9b49" +path = "static-publisher/static-content/file1886.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/licence/index.html_48412f07bbf266ca4eeefd07cf03025ff40adc3bec698b8dabe698a11d38aeeb" +path = "../build/minified/site/it/books/licence/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/licence/index.html_br_aa20d21c47a87fa8d2df62d4b27886959ef7e4fe08ae7574bbb798d632c7faea" +path = "static-publisher/static-content/file1887.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/licence/index.html_gzip_fdedcf7e876463a0220f3718ef700ad467cbe3f78be8c87419fc55f150e0ffa5" +path = "static-publisher/static-content/file1887.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/lxd_server/00-toc/index.html_dd1639f3f7c4ddad421785e9bcfa1168eb59927e214f88be639d1bc5d95cffce" +path = "../build/minified/site/it/books/lxd_server/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/lxd_server/00-toc/index.html_br_fa415ba6aabf8fb33a6489cd4bcc92f57d70551f99d3142e708f9c32d3eb401a" +path = "static-publisher/static-content/file1888.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/lxd_server/00-toc/index.html_gzip_7ce9c050d2f778a41f369a3c21cc4866860c7722ab877ad51a2bbbc80e28fd5f" +path = "static-publisher/static-content/file1888.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/lxd_server/01-install/index.html_3c81fcc51a51056fbf8b86555d23ae25575ba9764381faa09077264ae2c34852" +path = "../build/minified/site/it/books/lxd_server/01-install/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/lxd_server/01-install/index.html_br_8c35dc7fcc12a14b4994022217d1e1dfec8a444c760c075ab7444010f10169eb" +path = "static-publisher/static-content/file1889.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/lxd_server/01-install/index.html_gzip_ef370c41820db69a0a439873d042fc4aa08522440c0f574d71203d3f33fb816a" +path = "static-publisher/static-content/file1889.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/lxd_server/02-zfs_setup/index.html_1809c531656bb046f771286a0f913ebddc51989746d62ed5da6c261bf9be1d57" +path = "../build/minified/site/it/books/lxd_server/02-zfs_setup/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/lxd_server/02-zfs_setup/index.html_br_6be9c441b46e0e9bd4e67fc12378b826491a3caed661bf38ed753fe2fdaf9653" +path = "static-publisher/static-content/file1890.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/lxd_server/02-zfs_setup/index.html_gzip_0a21e5e0d83b9e52fde7f00aa240b1ac2d4b68ae6568ecf7e72f2eabdbd273c3" +path = "static-publisher/static-content/file1890.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/lxd_server/03-lxdinit/index.html_233ba7cce169a5c1597555a35275b3a5e30042078a26179ce59b263c0907971a" +path = "../build/minified/site/it/books/lxd_server/03-lxdinit/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/lxd_server/03-lxdinit/index.html_br_ef2c707f850f1d7fab0086f616c5896ca5bf2ff5af0609c1b5bf8298602cca26" +path = "static-publisher/static-content/file1891.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/lxd_server/03-lxdinit/index.html_gzip_7d243fde97c97a3856e630d63c4ad2edc9498ae7dbc08483699c82f1662a805e" +path = "static-publisher/static-content/file1891.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/lxd_server/04-firewall/index.html_be37d679fab4c1076dc64fef9dc502434d9c929e5c17640b561a97581a9da3b1" +path = "../build/minified/site/it/books/lxd_server/04-firewall/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/lxd_server/04-firewall/index.html_br_9df436539f930edb08ec8208afd26549061b3e49e1309a6a4a40e3c960d32bca" +path = "static-publisher/static-content/file1892.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/lxd_server/04-firewall/index.html_gzip_013c87780ca4279e57b409a0a3d769fb346beb39807af2f9f5476c4ed5eacdd3" +path = "static-publisher/static-content/file1892.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/lxd_server/05-lxd_images/index.html_1a167978268cf2c97668e51076790c22b383fd5fe88ba8c8a163817cf1434421" +path = "../build/minified/site/it/books/lxd_server/05-lxd_images/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/lxd_server/05-lxd_images/index.html_br_8b016808b8c8c1d90af2ca27e492cd9c172c55509f2572f0c89b677b820da1d8" +path = "static-publisher/static-content/file1893.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/lxd_server/05-lxd_images/index.html_gzip_9911b243cc86975e0ae5b3021084ff17995b44af32a42a31316509eca633134f" +path = "static-publisher/static-content/file1893.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/lxd_server/06-profiles/index.html_caaadaffb7b59a5668997910ed0c23c9377c1603dc98add8a24bda041e1c021d" +path = "../build/minified/site/it/books/lxd_server/06-profiles/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/lxd_server/06-profiles/index.html_br_a5c573302e11c03ddd7ff98b54aae2e457f13777d883e638cda1bf16da6c0e27" +path = "static-publisher/static-content/file1894.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/lxd_server/06-profiles/index.html_gzip_ca2fd444ee41ff4e209cdfb3100cb0143a2524820e13893fde8b19977ea03978" +path = "static-publisher/static-content/file1894.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/lxd_server/07-configurations/index.html_79651e9cea0be3403f6d6aa93a830f6e5fa0d18d8d5f3b98f2dd041b076eece7" +path = "../build/minified/site/it/books/lxd_server/07-configurations/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/lxd_server/07-configurations/index.html_br_7ed7f63deab2d8ea050d0e299080e440ee8f3e824b532ebd52c0ff0e2ded2ab8" +path = "static-publisher/static-content/file1895.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/lxd_server/07-configurations/index.html_gzip_dffa437f514c3ae9fc223a1010086527c94637c09d8145793fdde0a2f03b8582" +path = "static-publisher/static-content/file1895.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/lxd_server/08-snapshots/index.html_54c72185bd550a3179001f68336f133a63bda1095728312808276eff129cca77" +path = "../build/minified/site/it/books/lxd_server/08-snapshots/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/lxd_server/08-snapshots/index.html_br_88c7d292d7fd83396320cc14ec1c24c00e34682e31e68f6366314fac33e5cad1" +path = "static-publisher/static-content/file1896.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/lxd_server/08-snapshots/index.html_gzip_b10ee562ec271333350b6ae7fd929c4531737079ffa28c2d89abcb90c8302de9" +path = "static-publisher/static-content/file1896.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/lxd_server/09-snapshot_server/index.html_3dd2c39e794b234715e40802e682324ca278c9276955f25736ce8e9f099a0e1f" +path = "../build/minified/site/it/books/lxd_server/09-snapshot_server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/lxd_server/09-snapshot_server/index.html_br_61311e3fcf30a9fbe63b702cc00d134f7b16da774c428087bf875b8cb7dbdef5" +path = "static-publisher/static-content/file1897.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/lxd_server/09-snapshot_server/index.html_gzip_951682dc4b0e52bdcfcb02e9c9dedfe890eb4d0b33607e81e7cff1454a7a7aff" +path = "static-publisher/static-content/file1897.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/lxd_server/10-automating/index.html_64a9139541e804b099e0f7eefdd1faa70a560cd55088632e7123985166e573c2" +path = "../build/minified/site/it/books/lxd_server/10-automating/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/lxd_server/10-automating/index.html_br_0dc8eaf41e44cc74f2d1bfc7ff04a35d1789836d2f1a039200c2c7bc7c4876ce" +path = "static-publisher/static-content/file1898.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/lxd_server/10-automating/index.html_gzip_50e86e7176d76339b5533d5495feeec0850a48e4a5cdc8a295558430c536732f" +path = "static-publisher/static-content/file1898.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/lxd_server/30-appendix_a/index.html_c6e748c6d00008a1a90c6f2188e0620a32cfc82a5ae7b3828f62ef62dc7ebd24" +path = "../build/minified/site/it/books/lxd_server/30-appendix_a/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/lxd_server/30-appendix_a/index.html_br_964ca26a16539b8fb7dd838705ab4b26e963aa7238998f7c1158fed52715abc9" +path = "static-publisher/static-content/file1899.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/lxd_server/30-appendix_a/index.html_gzip_279334bd13a5e2b6429926ecfe83e921006886cfd40c69ad590d8787c7a3e17e" +path = "static-publisher/static-content/file1899.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/nvchad/additional_software/index.html_12b92626699b34f6ceeb5ece6f6c6f84f6ca4e695c47721d36e003b734af1c23" +path = "../build/minified/site/it/books/nvchad/additional_software/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/nvchad/additional_software/index.html_br_b1e51496f968ca5f61cc944a957e9ee0ccd175b83c168ae1ccf18c68db183687" +path = "static-publisher/static-content/file1900.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/nvchad/additional_software/index.html_gzip_42e61b8c9495ed61db7f02fd21596aaaf8a87febf5538cfba750154c186b8321" +path = "static-publisher/static-content/file1900.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/nvchad/index.html_16e1f2a4a3adec1367b96f836c92cbc8b9727e8a1ccd66a50fe6cb827ceb3a6d" +path = "../build/minified/site/it/books/nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/nvchad/index.html_br_25f84b0eded032b8b263dded5ae0ad07c89654d173c5a534ce344bc7d0dfc100" +path = "static-publisher/static-content/file1901.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/nvchad/index.html_gzip_262ecad86b4dd67091cfa1011de234cb4bfb3b7357678e21231086d22a668aa1" +path = "static-publisher/static-content/file1901.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/nvchad/install_nvchad/index.html_eac72aabf5585d74649c4b5406ed788981c5698473ceb6ff325083169291146f" +path = "../build/minified/site/it/books/nvchad/install_nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/nvchad/install_nvchad/index.html_br_35979cd9998a6c5f5f4fbb2b525c62e1b89689afc83341812739421a7fd56adc" +path = "static-publisher/static-content/file1902.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/nvchad/install_nvchad/index.html_gzip_9f27ec2e643b3734d869873dde8ffcc9afaef4033c6384e264cc17bfab216b0a" +path = "static-publisher/static-content/file1902.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/nvchad/install_nvim/index.html_975daed7f0514b6d0e4954e70b217c4f3d3508baf661a93168eeb84d9de2f7da" +path = "../build/minified/site/it/books/nvchad/install_nvim/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/nvchad/install_nvim/index.html_br_6695939b9b2034a4e0ebf16d39f2cb2b71c65a6723f266e3b19f03e903f42e5b" +path = "static-publisher/static-content/file1903.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/nvchad/install_nvim/index.html_gzip_e9f5318d8f439c3bd0fe55299e9040093511508c198bdd1e71a45f2539d6ae37" +path = "static-publisher/static-content/file1903.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/nvchad/marksman/index.html_15a57a429324606143be28352f19272e1b62e978b037b7ad15d3f66c8743f9c6" +path = "../build/minified/site/it/books/nvchad/marksman/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/nvchad/marksman/index.html_br_13e0cd88c7197dc1200a67eb02e7a1ee44740a62fd0cbed16cc32a173a25ae90" +path = "static-publisher/static-content/file1904.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/nvchad/marksman/index.html_gzip_d0993145831c3991458dca41121f709333b28fb27696f7cbc78d610cba25f700" +path = "static-publisher/static-content/file1904.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/nvchad/nerd_fonts/index.html_d3acc35704cbebd2aba6820de4dddb22e23f18ecc870864b7111ab650ba81087" +path = "../build/minified/site/it/books/nvchad/nerd_fonts/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/nvchad/nerd_fonts/index.html_br_f2dcde7eee31bbefb8472fe589b64c2557f50b090dc5fcd0f59132a2e3289af9" +path = "static-publisher/static-content/file1905.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/nvchad/nerd_fonts/index.html_gzip_7964f4e286015ecaa0feb641755f1baed7349ce5c5c4f325817c4b9b7c663bfc" +path = "static-publisher/static-content/file1905.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/nvchad/nvchad_ui/builtin_plugins/index.html_3a1ad34f715c69c619cd553a609cd9f1e2f6a7dccb1e82ee6328a4c21177aaca" +path = "../build/minified/site/it/books/nvchad/nvchad_ui/builtin_plugins/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/nvchad/nvchad_ui/builtin_plugins/index.html_br_c932cc1bfd5f93561c9073f92236077bf0a9d0ed7a436cd6850a0d7852320efb" +path = "static-publisher/static-content/file1906.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/nvchad/nvchad_ui/builtin_plugins/index.html_gzip_914d97af4438e157112e3fdeb572543421246d31fd80fca795aae5c3eb7936e2" +path = "static-publisher/static-content/file1906.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/nvchad/nvchad_ui/nvchad_ui/index.html_dc6eacb616af3872eb811455de663dd5d7f1d360562f0aab4afcd0c608185463" +path = "../build/minified/site/it/books/nvchad/nvchad_ui/nvchad_ui/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/nvchad/nvchad_ui/nvchad_ui/index.html_br_2b0889ca610771fbc6759e88a721d3c8bd3ebc03fc51183774cd12033a929af7" +path = "static-publisher/static-content/file1907.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/nvchad/nvchad_ui/nvchad_ui/index.html_gzip_528399b8add559b1d8901c771c3ffbb9ddb2a46e236a968d5e4f55b3f3d97da8" +path = "static-publisher/static-content/file1907.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/nvchad/nvchad_ui/nvimtree/index.html_60e47b4c906092dfdf3cf71b0ece2f7ff3c5a896567260383d6f7860b00841d3" +path = "../build/minified/site/it/books/nvchad/nvchad_ui/nvimtree/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/nvchad/nvchad_ui/nvimtree/index.html_br_23ac82e54937a1908d6d256c282244d3b5f80572069397c4d2e860fa036ea4d8" +path = "static-publisher/static-content/file1908.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/nvchad/nvchad_ui/nvimtree/index.html_gzip_78c4d0b32c893cdc0c51ddae2795110022eb811d4fde58d41ecfe71a43c04b8b" +path = "static-publisher/static-content/file1908.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/nvchad/nvchad_ui/plugins_manager/index.html_7b69d8548887e69143d24bf864f9a99b0e82adf6daf30f7e5174aef52e55c02d" +path = "../build/minified/site/it/books/nvchad/nvchad_ui/plugins_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/nvchad/nvchad_ui/plugins_manager/index.html_br_0e6166a919175d31c509b2fe388245eaec4f7e019ba95b22c79b1c6891c0af3d" +path = "static-publisher/static-content/file1909.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/nvchad/nvchad_ui/plugins_manager/index.html_gzip_909b6fb210caeea69c24e6e32e8c709d10f6777abacfa524a9cb4f398dce1e12" +path = "static-publisher/static-content/file1909.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/nvchad/nvchad_ui/using_nvchad/index.html_65652e7c647960d1d3585704550d3eb5ab003ec9bf117b16f5f95e7f48b93f92" +path = "../build/minified/site/it/books/nvchad/nvchad_ui/using_nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/nvchad/nvchad_ui/using_nvchad/index.html_br_82c5e6c24d332979e0d931a2cc49d92a437fe94117c610fa89bf64e4096602f0" +path = "static-publisher/static-content/file1910.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/nvchad/nvchad_ui/using_nvchad/index.html_gzip_2a8e72d34f7030d5446423148436f236bc8af2fb9cc940a34aec122120642272" +path = "static-publisher/static-content/file1910.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/nvchad/plugins/index.html_7e830c41345972625389b51e8a2bc266255d15e5839aee70b1e546c15ce9301c" +path = "../build/minified/site/it/books/nvchad/plugins/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/nvchad/plugins/index.html_br_c9dd2fa94763eaba14e9538e46efae4b1545bac1a3dfa4d018565eac94a13993" +path = "static-publisher/static-content/file1911.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/nvchad/plugins/index.html_gzip_5caf045fc4ee4cd071b37cd0513cc7677fcbe92f261018c49170de6c62cd3def" +path = "static-publisher/static-content/file1911.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/nvchad/plugins/md_preview/index.html_0468393f55e667938754aecd4708d1f760f9425cd0b535b12d492bc4445f099c" +path = "../build/minified/site/it/books/nvchad/plugins/md_preview/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/nvchad/plugins/md_preview/index.html_br_7c0336905659cc3b3a2de170f8ca2685cc6b1335f0653060a69508bc54eb689e" +path = "static-publisher/static-content/file1912.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/nvchad/plugins/md_preview/index.html_gzip_66d68256f6467a364dbda0b0946770e597edaf2158111c8e2a224b5f2296ffb2" +path = "static-publisher/static-content/file1912.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/nvchad/plugins/projectmgr/index.html_708f44a4901b35c7d5a8c715e983307e6e2e805580823227346598b5bcbad9fc" +path = "../build/minified/site/it/books/nvchad/plugins/projectmgr/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/nvchad/plugins/projectmgr/index.html_br_a5966155ab33bb2c98e9aa97ef9909e9a42bc7628de05a8356087ace24457b8b" +path = "static-publisher/static-content/file1913.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/nvchad/plugins/projectmgr/index.html_gzip_fd44e8c8de8870b14fd0200f69337e5e981b8e69afa9992b835d64cca2060944" +path = "static-publisher/static-content/file1913.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/nvchad/template_chadrc/index.html_4afadbb7aceeb80b9219897aa25406f01c78ef3be5f0092c98a2394a0b1e549f" +path = "../build/minified/site/it/books/nvchad/template_chadrc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/nvchad/template_chadrc/index.html_br_113d736206e0054d4de2198d572bb5bf5c78112bb6737597728fa918116a99ba" +path = "static-publisher/static-content/file1914.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/nvchad/template_chadrc/index.html_gzip_b24f24cf5b40c1cf3790d4ca3451ab098e17336c6d380eb41ca032e1d1c1d371" +path = "static-publisher/static-content/file1914.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/nvchad/vale_nvchad/index.html_47be5a110911cfa07de2747179aec5bff9b06ff4b961bbc71700215953f80ea2" +path = "../build/minified/site/it/books/nvchad/vale_nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/nvchad/vale_nvchad/index.html_br_7aa9242d08b48d98ee495f7011db41dddaa4515ba3288adbed3de99824905458" +path = "static-publisher/static-content/file1915.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/nvchad/vale_nvchad/index.html_gzip_fbafe8b63eeaeb730038403e66f3cf3c1f4a328ff3ad2d4a4354fc1695c0c1bf" +path = "static-publisher/static-content/file1915.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html_b96c20651ccdf38454db2f4eb219568520883879b807d6220fc76000f22791dc" +path = "../build/minified/site/it/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html_br_3de8d9dced6331859840d1676272c539a5ed3c55d581b1f5cb72607f14ec999f" +path = "static-publisher/static-content/file1916.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html_gzip_3663124bff12442677026ddd374f3efbb505986fbe0da72494549380695306be" +path = "static-publisher/static-content/file1916.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/sed_awk_grep/2_grep_command/index.html_9d20929a482e23667debbc7c0a76d1011def3d954a2c2fed28b82b08e7e076e6" +path = "../build/minified/site/it/books/sed_awk_grep/2_grep_command/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/sed_awk_grep/2_grep_command/index.html_br_b59af956a19c8ed3689aa9625f3859f0c367c4266537fb897d79a0b9e1a51e9d" +path = "static-publisher/static-content/file1917.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/sed_awk_grep/2_grep_command/index.html_gzip_0f001129294b37e14696cfd93036242dccd1cfdb150e218797bf0eadd1ba83ef" +path = "static-publisher/static-content/file1917.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/sed_awk_grep/3_sed_command/index.html_ff35e523ae0f6d403ebb41ac12200a661d79d9dbd4e73921f82f2d5f7150a19b" +path = "../build/minified/site/it/books/sed_awk_grep/3_sed_command/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/sed_awk_grep/3_sed_command/index.html_br_69fcb5212129155afbd014d5a0de96336c2a727ef781602efed4c9d3ffe07721" +path = "static-publisher/static-content/file1918.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/sed_awk_grep/3_sed_command/index.html_gzip_15ac788811c473340b5fad84fbdc3be80ebb7875a60e09441df1d31659b72c39" +path = "static-publisher/static-content/file1918.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/sed_awk_grep/4_awk_command/index.html_78b6bed6854c7115c61dd79fe59a484219b965683524d51342478cfbce4a4e67" +path = "../build/minified/site/it/books/sed_awk_grep/4_awk_command/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/sed_awk_grep/4_awk_command/index.html_br_975735fa81afa590a71a4a329525f889ec527e8d03cddd7ed2fde7bcff97bada" +path = "static-publisher/static-content/file1919.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/sed_awk_grep/4_awk_command/index.html_gzip_db31ebc7d1464ac87812b83d382a64eaa2f37d54224b8888ba971e4923e52308" +path = "static-publisher/static-content/file1919.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/sed_awk_grep/index.html_fd181077993ab547b8c6f22f5329e9106ddbfcc5bae538e684be9ce7ddfb469f" +path = "../build/minified/site/it/books/sed_awk_grep/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/sed_awk_grep/index.html_br_77a3a0a0c204350761b4db86196d3805632563e7c8f7aabd746c14d0e1eb842f" +path = "static-publisher/static-content/file1920.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/books/sed_awk_grep/index.html_gzip_6e57f3ffd35ce155f70703813354d6f95986a20bf13337cb2ba2c575347bacd3" +path = "static-publisher/static-content/file1920.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/containers/docker/index.html_ad6a13c57cceed6bc597f1e771dab0c796a1f64c87b2ea873675c1d8b6e8ddc0" +path = "../build/minified/site/it/gemstones/containers/docker/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/containers/docker/index.html_br_a88612b494cfe080a01004a0cf98ce3dd6a738e94e6722f5f6f163f569c06f5d" +path = "static-publisher/static-content/file1921.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/containers/docker/index.html_gzip_7db78daff35bda574a7779a009a30c1c7e4d74ef461292d64428e6c82dd02455" +path = "static-publisher/static-content/file1921.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/containers/podman/index.html_60076af8cdb95736ac1f3462d101a025c385fc25497b76b0a6e0a2b2a9063b94" +path = "../build/minified/site/it/gemstones/containers/podman/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/containers/podman/index.html_br_820445e8facc730ac8635757514882474296b84b1dc3e2f09b16d9243adf30cf" +path = "static-publisher/static-content/file1922.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/containers/podman/index.html_gzip_f7cec6fbae7777b44e387b409b334acf97c747119de26a43abcec9c380026aba" +path = "static-publisher/static-content/file1922.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/core/view_kernel_conf/index.html_9d34b183e2acfcf5345b294aa37827ef25e5f2fb4ce2564b9f564fcec41992b3" +path = "../build/minified/site/it/gemstones/core/view_kernel_conf/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/core/view_kernel_conf/index.html_br_095c9d7a530f5d5284c059843a2d0df837c62a3e2ab23eb5ba85c9747e983bdf" +path = "static-publisher/static-content/file1923.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/core/view_kernel_conf/index.html_gzip_a395f215478406e1f8e9aab13319daea77d2f7a2a869e68ca70fea5f05a4d2c1" +path = "static-publisher/static-content/file1923.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/dnf-swap/index.html_aa3aa7f55bd5377374f52cd680f75e06d1b0eeafe6498b074fe70e3e164aadb0" +path = "../build/minified/site/it/gemstones/dnf-swap/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/dnf-swap/index.html_br_5ecdfcfd6c0c9b59d7263d31fa298b18caf0874b66ae045b49df64379b422431" +path = "static-publisher/static-content/file1924.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/dnf-swap/index.html_gzip_41ddaf9c35bad902ab62bff012e1dafdabfd43ac766d3fbf0c7c0657f54ec65e" +path = "static-publisher/static-content/file1924.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/gemstone_template/index.html_48cd0f845b173871df9b1df12047f0511345afb45b39e9f3628da0c4a5d6089f" +path = "../build/minified/site/it/gemstones/gemstone_template/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/gemstone_template/index.html_br_7bcdb7e59793d9e67f410247db101c0624528c745a06f603fb7b28c072bb30f6" +path = "static-publisher/static-content/file1925.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/gemstone_template/index.html_gzip_6e0f34460dec5f36c840bb1240143bced598ef330ee261d8a0873912115c2cdb" +path = "static-publisher/static-content/file1925.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/git/00-gh_cli_installation/index.html_7cef9b20da7b4617dc44a77e62881975d8d6a0dedda130fdb92ee727069de4a5" +path = "../build/minified/site/it/gemstones/git/00-gh_cli_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/git/00-gh_cli_installation/index.html_br_9addf67665eb8796021e9e744931eb811a13edff75eda94ae74810c41632099e" +path = "static-publisher/static-content/file1926.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/git/00-gh_cli_installation/index.html_gzip_b8f523a0286855d9f0121e47dccd30f98631cc83df622952ec5089ad590b4503" +path = "static-publisher/static-content/file1926.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/git/01-gh_cli_1st_pr/index.html_351d6c7050c918dbd21012e7a56987a2b558138143d7b1a78d89a82c4fce66c1" +path = "../build/minified/site/it/gemstones/git/01-gh_cli_1st_pr/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/git/01-gh_cli_1st_pr/index.html_br_04ba6992d186191286b6d55d028dd2d1fba1931b6c65477a3af2176b69087ff6" +path = "static-publisher/static-content/file1927.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/git/01-gh_cli_1st_pr/index.html_gzip_a3f8d67464bc647fd00c20adbb7ecd6759ab08a43ea9f930c657ed6ade3bfbda" +path = "static-publisher/static-content/file1927.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/git/02-gh_cli_edit_pr_title/index.html_56679c84521b2fccdba30ed955318c8886c29614f8295f8c791b392c9fec9e6b" +path = "../build/minified/site/it/gemstones/git/02-gh_cli_edit_pr_title/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/git/02-gh_cli_edit_pr_title/index.html_br_9b22a9658e04b6c199f74e4ee6eeac3fd171370d993574eefa9997500a24e155" +path = "static-publisher/static-content/file1928.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/git/02-gh_cli_edit_pr_title/index.html_gzip_c09a5c48e5650e8b674827baccbe94edee7d5379b13b553674154efa0ac2f2a4" +path = "static-publisher/static-content/file1928.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/git/02_github_web_edit_pr_title/index.html_c9f188d16884674bd78edbfc389dd73b46a73ec9013923c8f2b4acfdd050da86" +path = "../build/minified/site/it/gemstones/git/02_github_web_edit_pr_title/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/git/02_github_web_edit_pr_title/index.html_br_5cb13ecbb4f985e7e6fafdce48e9e9ad7e46405207cf347683f6349fd97b9b75" +path = "static-publisher/static-content/file1929.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/git/02_github_web_edit_pr_title/index.html_gzip_d29cce285dd4c393e0ddd8f807cdb166a3009dffb00b5fefcb06bf241c376542" +path = "static-publisher/static-content/file1929.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/git/feature_branch_workflow/index.html_e7d545017f8d2d927332b1b36e5a9570628e09dc2a7d48e26ce8558a7c74a8b3" +path = "../build/minified/site/it/gemstones/git/feature_branch_workflow/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/git/feature_branch_workflow/index.html_br_a2a18d8cc3a00b6a0e27405dcd6da76e1743a4adebc11eb7a1e5da758eba51b6" +path = "static-publisher/static-content/file1930.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/git/feature_branch_workflow/index.html_gzip_8828d72e4fba7c0fe6fb8e4020036135baa772313a2205ee38abbed6fc403e82" +path = "static-publisher/static-content/file1930.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/git/fork_and_branch_workflow/index.html_f09cd71fa4c7aebb52c99dfdb0ab1add70a3ec6f8a3e9c02e016df627a495c6f" +path = "../build/minified/site/it/gemstones/git/fork_and_branch_workflow/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/git/fork_and_branch_workflow/index.html_br_5c31b56024a562d052fd99e35e777032059293893e73f0b66776dda0626e75b9" +path = "static-publisher/static-content/file1931.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/git/fork_and_branch_workflow/index.html_gzip_7787724a3fbe8c6007b3709b554f56e2a3c114a3baa9efddcd463c3f714cf9e4" +path = "static-publisher/static-content/file1931.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/git/git_pull_vs_git_fetch/index.html_fe9a3a071800ddab58c7597ac8d48975a3a5cb629185d4deacf90c9e54ca6905" +path = "../build/minified/site/it/gemstones/git/git_pull_vs_git_fetch/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/git/git_pull_vs_git_fetch/index.html_br_9ff44c340415944f287873a73951cb85829fa4a7bec850332ec66eec9142702e" +path = "static-publisher/static-content/file1932.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/git/git_pull_vs_git_fetch/index.html_gzip_94b25a8229579c2aa51c539d7a2f4901a7dfe09294862f28078208794d1026c2" +path = "static-publisher/static-content/file1932.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/git/git_remote_add/index.html_3231d8947bb61127fb637ad44a301a617ecbfb5f893621d946266cbe70968798" +path = "../build/minified/site/it/gemstones/git/git_remote_add/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/git/git_remote_add/index.html_br_e25b54280e593a599b8e965cbc943fb9bf0464356b295d5099ddb84f994cfe24" +path = "static-publisher/static-content/file1933.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/git/git_remote_add/index.html_gzip_61dd46065df6cd4de2623fe9b836c21ca6fc3d32a9c0a8befbf80e0607e2ac7e" +path = "static-publisher/static-content/file1933.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/git/tracking_and_nontracking_branch/index.html_0ad2c1415bdcc375b472d77cca250053c70051c2c36d8e788fa3e9198a2f0199" +path = "../build/minified/site/it/gemstones/git/tracking_and_nontracking_branch/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/git/tracking_and_nontracking_branch/index.html_br_242b28fe7ea2047b2fac6bf1fac4d581a4ae8bb4597fb73a78b8b763db05d3ac" +path = "static-publisher/static-content/file1934.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/git/tracking_and_nontracking_branch/index.html_gzip_f9284f0f8befd45245ffeefc516442d78c66a995fec9e0d035308b5b9f8943d1" +path = "static-publisher/static-content/file1934.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/htop/index.html_2e55f6592128b98790018c44a2950ec00ae0bd8725ce572e04d61ad45751bbcc" +path = "../build/minified/site/it/gemstones/htop/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/htop/index.html_br_fee80b02f5a924a767a59102f467e68906381184991bae1aa230c832196c2929" +path = "static-publisher/static-content/file1935.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/htop/index.html_gzip_91dbf3938eabbfd08e29a52cc2aecd829896610b394145f609bd6f2e4446eee8" +path = "static-publisher/static-content/file1935.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/https_rsa_keygen/index.html_9f1c09c7eeb9458d954b08c499aff076c0679423cd07fc8037ef37205d367de9" +path = "../build/minified/site/it/gemstones/https_rsa_keygen/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/https_rsa_keygen/index.html_br_114089b3ac9b319c14a0c1d7cf25710694b7223b62d235537a3e3e742e92b023" +path = "static-publisher/static-content/file1936.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/https_rsa_keygen/index.html_gzip_325dac073e646d6d6cc82cd0d597d850b18498d8b529cb4c99da0328026ec398" +path = "static-publisher/static-content/file1936.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/index.html_1fe5fa923dab064fdc3cacfcfeb082df2edbde250fdaa24abbed5d332960664d" +path = "../build/minified/site/it/gemstones/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/index.html_br_6ae45cc67c2edb12365ec59289a6b7bed723621617be0a06defa8a77dd265df7" +path = "static-publisher/static-content/file1937.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/index.html_gzip_b48f157fc977a20b8fe9c6a4f380879f3e77b51b1c9721297695b09e2b25b902" +path = "static-publisher/static-content/file1937.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/markdown-demo-v2/index.html_94389e48142c142915d16027d715dbf8c76ce84aaddfe9a73525e925d241e62a" +path = "../build/minified/site/it/gemstones/markdown-demo-v2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/markdown-demo-v2/index.html_br_39db7ef7fe655b77a24eaa7e3479a7af184645546d5593acf7f19a8936878be2" +path = "static-publisher/static-content/file1938.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/markdown-demo-v2/index.html_gzip_10fbf49b13921cde6db431c3919a369e1bac92fdd7edf3e582685ed07b87b27b" +path = "static-publisher/static-content/file1938.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/network/RL9_network_manager/index.html_656d0c809b778b449ca3594f0aeb73148667798acf43c66612bf0031cbf36dd2" +path = "../build/minified/site/it/gemstones/network/RL9_network_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/network/RL9_network_manager/index.html_br_69a44cff4331e264aba9a3efc2e4191f52c6f5565e5b1a7638d2787ac39e4b3b" +path = "static-publisher/static-content/file1939.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/network/RL9_network_manager/index.html_gzip_d02071ed9692fb00ca59b53fcbabd15d0f35cbc1fd16c0700169ca6d49e9cd7f" +path = "static-publisher/static-content/file1939.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/network/iftop/index.html_ff5d913e03688b8ff36aa1eb4f7f34f61ff396529ffc783e855daf4b27a32f6a" +path = "../build/minified/site/it/gemstones/network/iftop/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/network/iftop/index.html_br_bc2ce56099455c2d0c00e6693d2a5276a61a8641a8629962dbccfe0761c6e08f" +path = "static-publisher/static-content/file1940.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/network/iftop/index.html_gzip_c2f93d630d6b64b78d3e0bb086a25a3c00d5c58d60c1766f3c8b45bbbd3bd831" +path = "static-publisher/static-content/file1940.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/network/mtr/index.html_4c3377ffe55f3fd9cfad82d6973aecf3f77c15910022c7dd7b470a594c8c3bbd" +path = "../build/minified/site/it/gemstones/network/mtr/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/network/mtr/index.html_br_c2bd022ef534505126433a3ef10366914cfdef435845ae8b860857863836ffcd" +path = "static-publisher/static-content/file1941.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/network/mtr/index.html_gzip_475cf17ccc724f273e5a020f005eba0382e107ff97b4f4085332833c38af7ede" +path = "static-publisher/static-content/file1941.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/network/nload/index.html_204f6a28b752ee90e9052335c6792bcb7d707d78db4e8dc953d5628e13e9cbc9" +path = "../build/minified/site/it/gemstones/network/nload/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/network/nload/index.html_br_6a4c2fffd2e4c6d68744c56e5495f07cfbb4684aa4e612fec27954a5affe1db0" +path = "static-publisher/static-content/file1942.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/network/nload/index.html_gzip_3363e5e5a353f0767827b7a1ddc1268380ce9d75a7db298b51f43a1cd3e9ee3f" +path = "static-publisher/static-content/file1942.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/network/nmcli/index.html_78858cfddbc9013375894723dfbab19c139aeb615136dcb8a46455719dab850a" +path = "../build/minified/site/it/gemstones/network/nmcli/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/network/nmcli/index.html_br_324489b6b5a109e73c08a3ba201c58fb8fe9efe079c52f67ce09d270f730a727" +path = "static-publisher/static-content/file1943.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/network/nmcli/index.html_gzip_32565c691bf31ff40b27399da4dc5a430ecd8b19e33419e6c7b136385fb609c5" +path = "static-publisher/static-content/file1943.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/network/nmtui/index.html_7a0ef14aca8c1e72e776eac08021f2b8113f55c8b19b232d80706092c2814589" +path = "../build/minified/site/it/gemstones/network/nmtui/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/network/nmtui/index.html_br_cc43f4e31c40c7fa581bc5ddc2ae30f2083cfae9d2c204b69300c8b77b7d3d6b" +path = "static-publisher/static-content/file1944.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/network/nmtui/index.html_gzip_4d11221520c58b04f837210cb4e6680314952fc35c2c89f5bbdb1fa4ab785391" +path = "static-publisher/static-content/file1944.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/perl_search_replace/index.html_a069385eb87c72af9e49e5c7229d361b1ba4bca38483b8be7549d8ad37243ece" +path = "../build/minified/site/it/gemstones/perl_search_replace/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/perl_search_replace/index.html_br_54c3674eeb80c5bd7c472de4e2d3dc6e75e225ebe7ae9b77f2f6b9f82db52383" +path = "static-publisher/static-content/file1945.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/perl_search_replace/index.html_gzip_2750898e93de306378d837e11713fe935f9cc24996d683d89a410287103bc91a" +path = "static-publisher/static-content/file1945.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/rpaste/index.html_0a156de1372d0b3fc9302c1ade9dbdd613477e7026affddd80ff058e42a99f67" +path = "../build/minified/site/it/gemstones/rpaste/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/rpaste/index.html_br_f1d3d3096b793268ab0531841a4aa497ed5aad7fa236212fb9214309ba012660" +path = "static-publisher/static-content/file1946.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/rpaste/index.html_gzip_cabe1e00392e511788908ba02902adaea81a6ab734068f79c0649e27b0d5c2ce" +path = "static-publisher/static-content/file1946.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/scripts/NoSleep/index.html_eca4c1a05829c7d050bb142fa7fea4dd26187ea61416a9e2fa1fa4c9601dab03" +path = "../build/minified/site/it/gemstones/scripts/NoSleep/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/scripts/NoSleep/index.html_br_adfae4fe6bb83b6bc38131ebec259f7d6f57dd54274a89b059298b3293179adf" +path = "static-publisher/static-content/file1947.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/scripts/NoSleep/index.html_gzip_e361e13b51a192c820e1933383d075de7410dacd3f858d3550f8363c0c31f252" +path = "static-publisher/static-content/file1947.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/scripts/bash_stub/index.html_aa56e1a46f168b16fce8fbe8f99222742c586e9b0d90d839ede6d3dc23d6f86a" +path = "../build/minified/site/it/gemstones/scripts/bash_stub/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/scripts/bash_stub/index.html_br_a209f442e7d11761c6cd885330cd409c84af597ff23dc18fb3a5330330e7fba7" +path = "static-publisher/static-content/file1948.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/scripts/bash_stub/index.html_gzip_3120d7878b3c7467f807f35664b7bbf7421508d12b79022b1defdbe964b321fb" +path = "static-publisher/static-content/file1948.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/sed_search_replace/index.html_dd2d6c0de4d11d67c56a99edb9cc2e08712985350afa0f519280332b245902a0" +path = "../build/minified/site/it/gemstones/sed_search_replace/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/sed_search_replace/index.html_br_66213fb41d4a1c95f99b6fff3c2d64c231dd4cd047a9625b0e8a2829c29399ab" +path = "static-publisher/static-content/file1949.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/sed_search_replace/index.html_gzip_44d1af3a4d02fd2c2116d7ece56ec992350fe25886c295e8702b00d8009fe07f" +path = "static-publisher/static-content/file1949.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/setup_local_repo/index.html_166c7f1039ed21418e51d14d2168075b88218824bc31ba6eb0dac6223cb88015" +path = "../build/minified/site/it/gemstones/setup_local_repo/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/setup_local_repo/index.html_br_2ed4992f0c6b489b5d20a8318911d7b5b204a6763fe3d38f264b435445d4b6a0" +path = "static-publisher/static-content/file1950.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/setup_local_repo/index.html_gzip_498ab0cf66c2ae73cf7a1a4aca2be1383047f1cc0dae297a158c989397bc0e8d" +path = "static-publisher/static-content/file1950.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/string_color/index.html_badd06b27c28f9e53eb4c58d07a430abfcedd884c2c8afb13ee5f62c90271c2b" +path = "../build/minified/site/it/gemstones/string_color/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/string_color/index.html_br_bd4144c586795e46411c7ccbd13b1212248a3b9f006786e9ae2fffa1a682a5de" +path = "static-publisher/static-content/file1951.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/string_color/index.html_gzip_233e015cdf264191a846f47e899eaabc2cc6c77a5343db52220f135a3757a927" +path = "static-publisher/static-content/file1951.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/systemd_service_for_python_script/index.html_b609677b7512badb0bb6b053b8aeca52cda3d3a06007ea759f09bc57a8ad11ca" +path = "../build/minified/site/it/gemstones/systemd_service_for_python_script/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/systemd_service_for_python_script/index.html_br_ed08ce1e3a33b1cd45b26f308542df2c52cf45d2e1f05ce77e415a2c0a9eec62" +path = "static-publisher/static-content/file1952.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/systemd_service_for_python_script/index.html_gzip_fbc4bdf788bf30f7c7ddbd4c6b8e77bac1a06cc4eab4605d032673fca7da9900" +path = "static-publisher/static-content/file1952.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/test_cpu_compat/index.html_d327a6a975d17fa1a7f92154611c5538514e077b1a2c1a0dd5267569f999b4da" +path = "../build/minified/site/it/gemstones/test_cpu_compat/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/test_cpu_compat/index.html_br_c4ef31fe466f7eefa3a58f4efd3f8265c9fcdfc4f5d110ff8ef2d18b84d74026" +path = "static-publisher/static-content/file1953.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/test_cpu_compat/index.html_gzip_2f4ca89e99c85db9de4234d3a3c83db94b2ca8a5393cc756fb80f3a5db4b1437" +path = "static-publisher/static-content/file1953.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/torsocks/index.html_44254ab919f958bfedacf6a3fae2a6722db47a3221422d37fab7c15209f07ec2" +path = "../build/minified/site/it/gemstones/torsocks/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/torsocks/index.html_br_c46ddb792306a1f34c581b0366b7dea0c04983283583d408959a7890f79775ba" +path = "static-publisher/static-content/file1954.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/gemstones/torsocks/index.html_gzip_474bc5231f95f0daa807d24c58cba4eec6859253881d2732cf829382a542cde5" +path = "static-publisher/static-content/file1954.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/8_6_installation/index.html_ad8d696a79781caec9c6d402029d9cdeeaac5208f367c5c15f01ecd07fdb811e" +path = "../build/minified/site/it/guides/8_6_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/8_6_installation/index.html_br_0b593eaec5a2a3b681f5ba7b2b223bc3c635b5fe02ae990ab7e1c895fa120fb0" +path = "static-publisher/static-content/file1955.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/8_6_installation/index.html_gzip_3537895d3887146e6924b1b9de67287ba6438d1864d725c8a16456f8be34eebf" +path = "static-publisher/static-content/file1955.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/automation/anacron/index.html_63540614cc9427d86c68379be530b3fe82494a412e2147f5ae6d2ab42fe9a58b" +path = "../build/minified/site/it/guides/automation/anacron/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/automation/anacron/index.html_br_2b166e8436e54d3f866bf7b72d2eba5db0eb9f74ff515bb19a5ddc50d844e74d" +path = "static-publisher/static-content/file1956.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/automation/anacron/index.html_gzip_fb2bd54658895fef4e4e9834e051145c87975d2984a4f62c61be1ca83f38d6ea" +path = "static-publisher/static-content/file1956.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/automation/cron_jobs_howto/index.html_043e287c9df693fcd26d3cd213fb32b863f5c90aaf32eb500a5d2ac30307307c" +path = "../build/minified/site/it/guides/automation/cron_jobs_howto/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/automation/cron_jobs_howto/index.html_br_5635389deeb7edb66b9baf2f8bb2da5609806f267a2107bf426a611d6a6ebad9" +path = "static-publisher/static-content/file1957.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/automation/cron_jobs_howto/index.html_gzip_fdd0a761c473335ba7c16a95c09ab348353916f9f8346ab50cf311491e16fdf6" +path = "static-publisher/static-content/file1957.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/automation/cronie/index.html_e4beaefb50553ebcf18f486858f03e8c62191dc50b05e42e46d53fbccd400126" +path = "../build/minified/site/it/guides/automation/cronie/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/automation/cronie/index.html_br_d2600a36c74b5b92d928bc582637b848e36966f3034db2ed348b1cd7eab78c5c" +path = "static-publisher/static-content/file1958.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/automation/cronie/index.html_gzip_5f960d87037be6d56de126397a58c5a5830393fa2bbb3014836f84dbf76ada3f" +path = "static-publisher/static-content/file1958.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/automation/olivetin/index.html_e3c9f9437d0654259221f1f391f66bdc07e3ef0f1cd058532f1bf493ca652e90" +path = "../build/minified/site/it/guides/automation/olivetin/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/automation/olivetin/index.html_br_0949bd19369c4cb7e788a2ec0390e29165e575e4440ae6e75a98bc3921501b91" +path = "static-publisher/static-content/file1959.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/automation/olivetin/index.html_gzip_79d03812ca8737789f26a3087ceb77d5318e4e8e7dcc117deb59822cda75f849" +path = "static-publisher/static-content/file1959.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/automation/templates-automation-packer-vsphere/index.html_b1022257790506552ac8b67178bb94c02c3469efb540d5e6c3bce8be123adcc9" +path = "../build/minified/site/it/guides/automation/templates-automation-packer-vsphere/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/automation/templates-automation-packer-vsphere/index.html_br_d31e785c5914671e161175077ab1fc426c8f0705b938c6e7bbde0b2b166fe7a7" +path = "static-publisher/static-content/file1960.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/automation/templates-automation-packer-vsphere/index.html_gzip_1cdd4499a6c17e22f71b7170154fea7dfada50ddc5ffa3d3ae49b208334f0665" +path = "static-publisher/static-content/file1960.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/backup/mirroring_lsyncd/index.html_9ff80b2a91118d5ca5a5aca6b8ab8fcb9dbb90d1f4485ff0c3c7d29399b5006e" +path = "../build/minified/site/it/guides/backup/mirroring_lsyncd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/backup/mirroring_lsyncd/index.html_br_02297d1c42afa1b22bf7297d03f10db7666329b325ba70dfdc4a4e69de3cec3d" +path = "static-publisher/static-content/file1961.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/backup/mirroring_lsyncd/index.html_gzip_6333689ddbafbb9862a6b13913bd37f8b0da51d78e784b0a3f427535f54c08ce" +path = "static-publisher/static-content/file1961.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/backup/rsnapshot_backup/index.html_2bc0785a0051bd9da994927b37aed805b4c4938f7202bc357d4f87efa4c113a8" +path = "../build/minified/site/it/guides/backup/rsnapshot_backup/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/backup/rsnapshot_backup/index.html_br_7c102a8dd5380e7fc234153052472245c4ed44a83b9287a9955e5d02ac9fa93b" +path = "static-publisher/static-content/file1962.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/backup/rsnapshot_backup/index.html_gzip_9158539c9f64e76a4c9cf28062b36acd39675c64cf45edc760f6a65856a7ac6a" +path = "static-publisher/static-content/file1962.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/backup/rsync_ssh/index.html_9e0453fea80f81a762c071b38dc46dcf92344f6e7af136ceaccb0f404fea4a15" +path = "../build/minified/site/it/guides/backup/rsync_ssh/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/backup/rsync_ssh/index.html_br_3660acd9c4b1cf032df0f54622aef1c71a917856516e73a1794bff475a87c176" +path = "static-publisher/static-content/file1963.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/backup/rsync_ssh/index.html_gzip_6ec20a84c74a2b6b622c77bdb6e6d15d3320bdcc6cdefe9f0336908afb00fd8c" +path = "static-publisher/static-content/file1963.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/cms/cloud_server_using_nextcloud/index.html_b48d3c1900dcff1188c33214aa50a84aba339d423ba6cea7b70f5621480d7809" +path = "../build/minified/site/it/guides/cms/cloud_server_using_nextcloud/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/cms/cloud_server_using_nextcloud/index.html_br_50fb85b515f134554da7833b9e3961da1eafe91c4f63eef0e09fe111ba591002" +path = "static-publisher/static-content/file1964.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/cms/cloud_server_using_nextcloud/index.html_gzip_dc877835b25e675e3c3d997ad744e669b5b30b91ea2f0896f4acdd7eb104712e" +path = "static-publisher/static-content/file1964.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/cms/dokuwiki_server/index.html_7b65ac23d33d72eab39dfc97a6cb6182780d0ee66178b9fd3aac22c170b8fbc2" +path = "../build/minified/site/it/guides/cms/dokuwiki_server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/cms/dokuwiki_server/index.html_br_3620fd52464bdd976c736aa1aa031ef3c3765383dd8929806f8410d26f407365" +path = "static-publisher/static-content/file1965.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/cms/dokuwiki_server/index.html_gzip_7d5a70907b73809b63145d1e0204c7f6952257255340a249eded9544b41a6a91" +path = "static-publisher/static-content/file1965.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/communications/asterisk_installation/index.html_dc367eb8e4f7d68be1f4b1422c616d93839bc4cc43a66507b3b0754606cb97ac" +path = "../build/minified/site/it/guides/communications/asterisk_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/communications/asterisk_installation/index.html_br_92967cdf82c9d647bd4bfff0c4adf81caa2f2c36cf29297a1c13b8b40afd68d4" +path = "static-publisher/static-content/file1966.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/communications/asterisk_installation/index.html_gzip_e3d76328d465e96dc1dc03eb753c9274ca25bf17ba47c1653dc5e752f5eb433b" +path = "static-publisher/static-content/file1966.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/containers/lxd_web_servers/index.html_3118510867d472148ff457ebb23a9c463ac5a9c62fc4650f79f0c710c79cf4af" +path = "../build/minified/site/it/guides/containers/lxd_web_servers/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/containers/lxd_web_servers/index.html_br_74880580861676bee11e4899662c6d62b50b0806b67a321516de497c211e2987" +path = "static-publisher/static-content/file1967.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/containers/lxd_web_servers/index.html_gzip_4841abebc0abb90e793d684d786e6d4dd889bf4b3cd2ab9a2164c91033c632de" +path = "static-publisher/static-content/file1967.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/containers/podman-nextcloud/index.html_ed462ff1745a82a6455d01333c5a0e9325c49ee6142398a877cf5143ee2948cc" +path = "../build/minified/site/it/guides/containers/podman-nextcloud/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/containers/podman-nextcloud/index.html_br_8dc8b431d13b433d1a9d3aa8776c698b2836498f360f048ec09b171a37ff859b" +path = "static-publisher/static-content/file1968.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/containers/podman-nextcloud/index.html_gzip_5fa6eee75b91053de00a7259718bcf133a924dc8ddbbe4c83cb3aabc18fc652d" +path = "static-publisher/static-content/file1968.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/containers/rancher_and_kubernetes/index.html_5312c2976e73bd036aa36f81b7c0ee5b2bee77f81f864cab51313696547ea4c1" +path = "../build/minified/site/it/guides/containers/rancher_and_kubernetes/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/containers/rancher_and_kubernetes/index.html_br_e6f0fa599d419a7169d54ae0c7c7aa73c5ca0bfd28c0c278660aad8536857681" +path = "static-publisher/static-content/file1969.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/containers/rancher_and_kubernetes/index.html_gzip_0cb21e961009f966b6c80f4aff754d67292df16a9f8057c22356b80fc6ee11b1" +path = "static-publisher/static-content/file1969.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/contribute/beginners/index.html_bba36a23fd5db3578d00c7dc8cd9de39bc38c8386532a07a5d0cfede9477f4b3" +path = "../build/minified/site/it/guides/contribute/beginners/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/contribute/beginners/index.html_br_601f4597ecd9e7e07dd2e590dd64b75869f14d973c719c1ad53fecb598153b1d" +path = "static-publisher/static-content/file1970.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/contribute/beginners/index.html_gzip_5237e59b4e4602744d6cda3e224282cca05d55f63e7a77927030a84b1a4fb207" +path = "static-publisher/static-content/file1970.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/contribute/createnew/index.html_e50afdf549932776be5d4475d847a368d52161fd8be5c344414503e7b4e1e4aa" +path = "../build/minified/site/it/guides/contribute/createnew/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/contribute/createnew/index.html_br_5b064157d1a34f55129afd1168ae1fdbce2d3674e284f0b28cfefdd0d5863eb2" +path = "static-publisher/static-content/file1971.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/contribute/createnew/index.html_gzip_4f8ecb29c6a365a264747305222fd4bba8884ea1a6d188d688845e4db703c8c4" +path = "static-publisher/static-content/file1971.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/contribute/index.html_e386f31fd6138ad652340bdb9c0f874783a8317f954e26f20d1c76d11e0aaed8" +path = "../build/minified/site/it/guides/contribute/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/contribute/index.html_br_94e27a29cfc8d03036832644bfc2370246d5e03803bb8c76f31f14538ba3cdc3" +path = "static-publisher/static-content/file1972.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/contribute/index.html_gzip_ececa4f508cd2337fd2308f7be5787ee5301d2421553098ea1242856aa465e4d" +path = "static-publisher/static-content/file1972.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/contribute/localdocs/index.html_76a772c59e25f67bf2486bfbc7e5eaa0cbefeb244c14f84db4a90643414438b4" +path = "../build/minified/site/it/guides/contribute/localdocs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/contribute/localdocs/index.html_br_8b99a57281b8e7d0cebc4bb0c3eef207aad31490279ae02f378351cdbbafb6af" +path = "static-publisher/static-content/file1973.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/contribute/localdocs/index.html_gzip_0ddfe8596ac3f367a33dc2c062391d6d9c882ed11d6b9be067cce56dbc3a5590" +path = "static-publisher/static-content/file1973.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/contribute/localdocs/local_docs/index.html_1eaa90fe551b0a6d63c9c9642a90ff8c9639f8620fcb3ca7f6027e208198338e" +path = "../build/minified/site/it/guides/contribute/localdocs/local_docs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/contribute/localdocs/local_docs/index.html_br_d6679e888c0b805482ccef396c909dfbcbd75d042a51cb02b32807d46896de51" +path = "static-publisher/static-content/file1974.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/contribute/localdocs/local_docs/index.html_gzip_9c31d45d0c0e738088c6348edfc43327634ba01de697c745f0d461ed3ae917a5" +path = "static-publisher/static-content/file1974.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/contribute/localdocs/mkdocs_lsyncd/index.html_cf776b97aabfb513862308a334197456bf2a3bab9e0523573fbdfefefd15ab96" +path = "../build/minified/site/it/guides/contribute/localdocs/mkdocs_lsyncd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/contribute/localdocs/mkdocs_lsyncd/index.html_br_23ed8ff5c2163a2dcb2968bf4f03d1006fbaa31364d0457281cc69ad88a78571" +path = "static-publisher/static-content/file1975.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/contribute/localdocs/mkdocs_lsyncd/index.html_gzip_4766c9ad1a4f8c8fc08df70cef276263e80bc10dcf7229cd0289164b5473a94f" +path = "static-publisher/static-content/file1975.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/contribute/localdocs/mkdocs_venv/index.html_18e1f3a3c56b438d042fe171121118509e1658580185b6e286dd9b7f1dc8eab3" +path = "../build/minified/site/it/guides/contribute/localdocs/mkdocs_venv/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/contribute/localdocs/mkdocs_venv/index.html_br_c20aeaaa8e18ade0b358c8faa11222c7f47fab11d1fb3b8bbf367d6072d808b4" +path = "static-publisher/static-content/file1976.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/contribute/localdocs/mkdocs_venv/index.html_gzip_c378fc2676e6866581daa62c9a4b9ce6750594b3d8bdf964215cb09a154bcffc" +path = "static-publisher/static-content/file1976.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/contribute/localdocs/rockydocs_web_dev/index.html_7953a3f6b07522df30dfcfd31af7d0c71e86e222833d12e71b2400e0d8ee3769" +path = "../build/minified/site/it/guides/contribute/localdocs/rockydocs_web_dev/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/contribute/localdocs/rockydocs_web_dev/index.html_br_7c21bc3b58418f72f3a34e3d2df1684590e644f606dfe320c10e701a6a2fceea" +path = "static-publisher/static-content/file1977.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/contribute/localdocs/rockydocs_web_dev/index.html_gzip_295728aac1b4657e80c44aa7c2f2e9ad44fea7eb048bcc5c620e25403e8f79ea" +path = "static-publisher/static-content/file1977.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/contribute/localdocs/rockydocs_webdev_v2/index.html_e7d49753fdac45b700eb9b5df32d135a50f90584d58a7e507c6b3cf6514695c2" +path = "../build/minified/site/it/guides/contribute/localdocs/rockydocs_webdev_v2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/contribute/localdocs/rockydocs_webdev_v2/index.html_br_ee02eee94c0ed4024692505fa2c18107be0ab940995c0d2c47f7c21b5e7cf745" +path = "static-publisher/static-content/file1978.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/contribute/localdocs/rockydocs_webdev_v2/index.html_gzip_8f0c6b022fb5153f57a2f34d23919d1ad3db4ae16a7713bf7c887d73f4d6cd28" +path = "static-publisher/static-content/file1978.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/contribute/navigation/index.html_ca4a6d37af3ec043b12352865d3e40f7e2b9bb206c445e3ed2ba4c5cfceeb760" +path = "../build/minified/site/it/guides/contribute/navigation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/contribute/navigation/index.html_br_56bf1b0645f7bf1741c018841851cc7fca62602aa2390dbb393f06683ab371dd" +path = "static-publisher/static-content/file1979.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/contribute/navigation/index.html_gzip_77c8255fe39b539ccd7bb8b373fb70d9c7e80e01efc0c6a9676ce8fb298196d0" +path = "static-publisher/static-content/file1979.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/contribute/rockydocs_formatting/index.html_970b1dd63b0db4559d9b12393d820fee8669a68b9f70720ca1bd39baaa6935e2" +path = "../build/minified/site/it/guides/contribute/rockydocs_formatting/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/contribute/rockydocs_formatting/index.html_br_f080e64785c63ffbc6b7f4148cddb00c3b85c584f8ee0ec63d661872e4e15530" +path = "static-publisher/static-content/file1980.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/contribute/rockydocs_formatting/index.html_gzip_cfb68cd5cf61bec7e8fb98276835a47cace86bb8c3c5b5001016160db1d2b4db" +path = "static-publisher/static-content/file1980.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/contribute/style_guide/index.html_b29d46f02ccfd857f03dcf98ccf777658ca8bfc55e5e41d3e08105962d245055" +path = "../build/minified/site/it/guides/contribute/style_guide/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/contribute/style_guide/index.html_br_b40ca95c3b5d321b59bd478bf98bdae0536b2f44448ea2eaad057c7685c5a4b0" +path = "static-publisher/static-content/file1981.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/contribute/style_guide/index.html_gzip_0901e1bf8e233f9e82aca25951a58c6daf2a7e0ea40d6935aee146afe72dc3bf" +path = "static-publisher/static-content/file1981.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/custom-linux-kernel/index.html_cafdab874264875f8ceb096237cf6b83abf1b1143bd87ec775ef62918e11e4c5" +path = "../build/minified/site/it/guides/custom-linux-kernel/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/custom-linux-kernel/index.html_br_2b2d162e01d228440d61c219f0a4a6746287a9c6c04102bee7a39d9cefa4e707" +path = "static-publisher/static-content/file1982.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/custom-linux-kernel/index.html_gzip_c35d437562d3a8c140242bf872b878fe6a44c4870900e72797a5763c4d82f449" +path = "static-publisher/static-content/file1982.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/database/database_mariadb-server/index.html_1a44735cc38935c6ac10c683979fefa71add54f4c7ca965017460c1b06bd8087" +path = "../build/minified/site/it/guides/database/database_mariadb-server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/database/database_mariadb-server/index.html_br_14ec9ce056f887fba974c875a0fb09f738d6bd38d434638ace63edcdade9dbee" +path = "static-publisher/static-content/file1983.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/database/database_mariadb-server/index.html_gzip_1b187a4cc189911912093fddd1c43347a1fc37da2ceaee5dc461ae37982ee01e" +path = "static-publisher/static-content/file1983.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/desktop/kde_installation/index.html_5094ca6a586fafe9cae072cc391991d9fb74425f97947ef7102c620352266068" +path = "../build/minified/site/it/guides/desktop/kde_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/desktop/kde_installation/index.html_br_6503268435f4d4dedcee6913200361d99c08351863ca3cc3c7a5ecbdbeae480a" +path = "static-publisher/static-content/file1984.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/desktop/kde_installation/index.html_gzip_0941a714754c1a5697c968b56f74b63cc6a624db02fbdb74329696e9bf04ef5b" +path = "static-publisher/static-content/file1984.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/desktop/mate_installation/index.html_123017119747a3ee1053bae988de282e3a5849042023c7d058d8d3bd9fa9c9d9" +path = "../build/minified/site/it/guides/desktop/mate_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/desktop/mate_installation/index.html_br_682b94f0cab85a9e6433ae86758f1d886256498254432df67d1b0b061114b512" +path = "static-publisher/static-content/file1985.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/desktop/mate_installation/index.html_gzip_af69772a7955e967ff7667eaee95c9d297deae2ae845bc8518ca85c9a61e2e63" +path = "static-publisher/static-content/file1985.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/desktop/xfce_installation/index.html_a9c083febbd01656ae6839fe9c56020adeaafd89a1eee548d8749be7b4cde784" +path = "../build/minified/site/it/guides/desktop/xfce_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/desktop/xfce_installation/index.html_br_f5e1a872a049a835679046dce38ffad34868c2cf0b96403da4184455a1064b47" +path = "static-publisher/static-content/file1986.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/desktop/xfce_installation/index.html_gzip_769f602a1146fad409624a190a050f1f9e723766251c0f9a531f56cd91baed64" +path = "static-publisher/static-content/file1986.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/dns/private_dns_server_using_bind/index.html_59f3885554e24e22e19d4bac84b560a9a5cf592377051d28698670c36be933b6" +path = "../build/minified/site/it/guides/dns/private_dns_server_using_bind/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/dns/private_dns_server_using_bind/index.html_br_c926675cc1e93d0e003fa9dba8e163cee175026fb9ca1b8aa3478c182caa66d5" +path = "static-publisher/static-content/file1987.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/dns/private_dns_server_using_bind/index.html_gzip_5362f41ef551a9a18f408415ae2057374494ca763d09cc9df9583972fcd9b67b" +path = "static-publisher/static-content/file1987.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/editors/micro/index.html_1e2e13465a3e289e1197bab34ca694b233af7b095a63ef36ccc7754ec266dc44" +path = "../build/minified/site/it/guides/editors/micro/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/editors/micro/index.html_br_82424a2935a2126051956c56a0d54202cc7ab584ee216b5e22873723075dc9f4" +path = "static-publisher/static-content/file1988.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/editors/micro/index.html_gzip_4187875953324c1c2cc07e5aa66a6f4517e0f6f7ba78e189c72b106479b99947" +path = "static-publisher/static-content/file1988.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/email/01-email-system/index.html_6124c8d9cbc637fc41a536f5f0a967ae83ef0e684acb6e65e790ccb4e7b3cb08" +path = "../build/minified/site/it/guides/email/01-email-system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/email/01-email-system/index.html_br_35b7fdbc6f3355c995e9bfd879c465606723af02704ff53557a5e238201b9a82" +path = "static-publisher/static-content/file1989.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/email/01-email-system/index.html_gzip_d60376665d318dfb61f2351a0b7edc7810522d759fdfe4152ecc84ef4894523e" +path = "static-publisher/static-content/file1989.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/email/02-basic-email-system/index.html_64e52bb7e96dc053271b8bc8c7251a38d3664faef854d9709a155e3e34a47d9c" +path = "../build/minified/site/it/guides/email/02-basic-email-system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/email/02-basic-email-system/index.html_br_0439ab675c8b84e8856825745d196057281852a79e542f55237567b9ad7f89cb" +path = "static-publisher/static-content/file1990.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/email/02-basic-email-system/index.html_gzip_2fdb3017c1da157f079b0d1c54de9854643f0d75fbf1f507af6bde6ebab15546" +path = "static-publisher/static-content/file1990.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/email/postfix_reporting/index.html_978e87afff295149fb95dbecd7d05bacf96da475778c205bacd8c7f1fcc87d2e" +path = "../build/minified/site/it/guides/email/postfix_reporting/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/email/postfix_reporting/index.html_br_6da9bc13f983c197d10894322bb9d89a6bd3e1ffdcd340a85cdb7ee2467f1795" +path = "static-publisher/static-content/file1991.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/email/postfix_reporting/index.html_gzip_b6568f017ea52dbd00deb6d54f1611298ded199b774962ef6724bab119159b6a" +path = "static-publisher/static-content/file1991.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/file_sharing/glusterfs/index.html_c44156c1c60902047f054cedb8af21975a10bd4caaa066cb9fcc04968217efa9" +path = "../build/minified/site/it/guides/file_sharing/glusterfs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/file_sharing/glusterfs/index.html_br_237933958f0936722abdd1b250dda33da8f94f7aab440dadb31415baf5798285" +path = "static-publisher/static-content/file1992.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/file_sharing/glusterfs/index.html_gzip_63a145cfdd3e995e950037cfaf23c8cff0ff2d88004963b6e874ba59d397ae87" +path = "static-publisher/static-content/file1992.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/file_sharing/nfsserver/index.html_9c092694c743f570d7ab695c7727c5d414abc5f42437a2d15ed3b67f431ca11c" +path = "../build/minified/site/it/guides/file_sharing/nfsserver/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/file_sharing/nfsserver/index.html_br_51dbcd66d3d069d3d7483b43a4d712305001ffa3b8bf2843aed16c89e07d6b68" +path = "static-publisher/static-content/file1993.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/file_sharing/nfsserver/index.html_gzip_346b5418879fda5fa45e543fa694ba628a01a1987d7247f7cff3f002841dec6b" +path = "static-publisher/static-content/file1993.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/file_sharing/secure_ftp_server_vsftpd/index.html_cbf3311e05493fd663431a868d64f02468c50cc5b2793123229e4ef9a3e02184" +path = "../build/minified/site/it/guides/file_sharing/secure_ftp_server_vsftpd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/file_sharing/secure_ftp_server_vsftpd/index.html_br_3ceb911e4c5dfeb0621b0d7fcc821c6b3e08af3ac8bca47a3fb16e4d1b0492d4" +path = "static-publisher/static-content/file1994.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/file_sharing/secure_ftp_server_vsftpd/index.html_gzip_0a097d4e1aa75ab70bb9ce003196a3cf9ff9cf142ae0fd266b8e108fb7e15157" +path = "static-publisher/static-content/file1994.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/file_sharing/sftp/index.html_d2d6a4cabd12f66ecc0ba397383f016b37f6dcb1cda2a9c9413d7922a77c23fe" +path = "../build/minified/site/it/guides/file_sharing/sftp/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/file_sharing/sftp/index.html_br_8455d6306733cf3fd6b6409a464de6947dbd03455ccad0ffb0dee4cf2572e7e8" +path = "static-publisher/static-content/file1995.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/file_sharing/sftp/index.html_gzip_fcf81902ae0c083dadd3571f8b091dc795fecfbb48448cc381be51217eac4a1a" +path = "static-publisher/static-content/file1995.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/index.html_cb702460a71b881f216ae89461ace61f2dde1b77e6aacfc648ce6d723ed8a980" +path = "../build/minified/site/it/guides/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/index.html_br_00279b03bff5d91279eb1748ecf8bc64ccb87786ae3e662568a200edfded0ff6" +path = "static-publisher/static-content/file1996.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/index.html_gzip_93ee7bdc10e9386881bff889c5b75c18a89eb740b19b8afa46dde2ee85937cb9" +path = "static-publisher/static-content/file1996.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/installation/index.html_8343f364431efbbf3b9a825440b4448737c36152d393be73e71c76d4b45296e2" +path = "../build/minified/site/it/guides/installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/installation/index.html_br_01b69fc094640e28aee49bf3c2c04b95d740b12334f596903ddf03e0415c64ca" +path = "static-publisher/static-content/file1997.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/installation/index.html_gzip_3c741aefa604c177f44efb3cd936998269b9e5a66a8e0463f55292779655f0a7" +path = "static-publisher/static-content/file1997.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/interoperability/import_rocky_to_wsl/index.html_13cd918ab0fa9bed7fad86178df0223d9450445d6982a35c8a77514070567bea" +path = "../build/minified/site/it/guides/interoperability/import_rocky_to_wsl/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/interoperability/import_rocky_to_wsl/index.html_br_e3044c97ae7c50d2ab44c5ae8670156d51b4b7781686105bf5e8bb861a01474b" +path = "static-publisher/static-content/file1998.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/interoperability/import_rocky_to_wsl/index.html_gzip_18c9176b5c27105b993b9bcf91fbfc21b5b5720043a62258be7a04ba7d57314a" +path = "static-publisher/static-content/file1998.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/migrate2rocky/index.html_4090963cc608b7ff987d34dbec19f6b4fdec5d3a7b090125391971b33699a4b3" +path = "../build/minified/site/it/guides/migrate2rocky/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/migrate2rocky/index.html_br_c57f832ee3e73ec10f1b62a31a658996eba71547d8aa0f042b1e936c7fce9aac" +path = "static-publisher/static-content/file1999.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/migrate2rocky/index.html_gzip_5287192c827609c2ef0359b6000564948ffcf7ce29ec2f62e2672030bde2991b" +path = "static-publisher/static-content/file1999.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/mirror_management/add_mirror_manager/index.html_f6de8d5eacdb9881d12fbb5fec8cbc1099f820149491ec00249a4544060c81d2" +path = "../build/minified/site/it/guides/mirror_management/add_mirror_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/mirror_management/add_mirror_manager/index.html_br_c2a4156c1f34ecfca38e7c5e8ee6d53c11dfd67f5f610e18c54fa066ab0b58f9" +path = "static-publisher/static-content/file2000.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/mirror_management/add_mirror_manager/index.html_gzip_d164d0e8219ea170100331655b124fa95cc58208106942e41ae31eded645b0f8" +path = "static-publisher/static-content/file2000.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/network/basic_network_configuration/index.html_dac5cdd1bcf4fd99329e977afd4c490afe859a9d8727d649162c0c100635131f" +path = "../build/minified/site/it/guides/network/basic_network_configuration/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/network/basic_network_configuration/index.html_br_64b28dabd90171c00062eaa40e3999d6f84309f7ba12cd299250b1a30f2d3ea0" +path = "static-publisher/static-content/file2001.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/network/basic_network_configuration/index.html_gzip_ad06bf664e3f470b572280ca0b2615acafebd050852b879aaa3029f888452cc6" +path = "static-publisher/static-content/file2001.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/network/librenms_monitoring_server/index.html_1679415c83be2f214e2b3b3046555cb8ac478252d93b106e49c78ce8b2178ed0" +path = "../build/minified/site/it/guides/network/librenms_monitoring_server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/network/librenms_monitoring_server/index.html_br_73285f1c09f7a0a1e4433e7c5fd22ef0c82334ac691f953d3070d763ddf62bc7" +path = "static-publisher/static-content/file2002.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/network/librenms_monitoring_server/index.html_gzip_a75227a05e8c9725e134ce8013519cdf56c597cc6fd2ecbb27a523cebf18fb75" +path = "static-publisher/static-content/file2002.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/package_management/dnf_package_manager/index.html_da0b0563d79d6b6feb5b5eb6afb2dafc2d30cc1a19a21734ff937b4c2337b699" +path = "../build/minified/site/it/guides/package_management/dnf_package_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/package_management/dnf_package_manager/index.html_br_e4b762d843aefafc0099c70e29707ff600f7d672356d39ea05c1cd76f66bd75d" +path = "static-publisher/static-content/file2003.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/package_management/dnf_package_manager/index.html_gzip_acebf2e5812431234bfac1a6dc6e042581337abfacab764594e71cdc1cd9f448" +path = "static-publisher/static-content/file2003.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/package_management/index.html_6372dfc35ffc4b95b6a9def447f616bbd15f81f71da4d35454ecb3fe67e33ae7" +path = "../build/minified/site/it/guides/package_management/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/package_management/index.html_br_02f91b6fa55c87ded7b36452de39b223263142c2a995a4af671736773a7a94b6" +path = "static-publisher/static-content/file2004.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/package_management/index.html_gzip_694640ae861af9ce13cda5766a668e098117d3b4f751b1486595a5672b3202b2" +path = "static-publisher/static-content/file2004.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/package_management/package_build_troubleshooting/index.html_03604aa7b497d791c488a3a935d3f7192616480f7f81b21d63736adb43aa8ed5" +path = "../build/minified/site/it/guides/package_management/package_build_troubleshooting/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/package_management/package_build_troubleshooting/index.html_br_023191cfa641383b84a1848bf1b086354567ec0d256fcdde55f80317e3c4f44b" +path = "static-publisher/static-content/file2005.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/package_management/package_build_troubleshooting/index.html_gzip_f6f879741eb3865134f2d925817640f5bda3f8466a033311fbfd5bbf4cc65561" +path = "static-publisher/static-content/file2005.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/package_management/package_debranding/index.html_6f73d12fb19aa95e4a6e4bcf6150003db4cd3747335b2e3eeab17c9c9011ec52" +path = "../build/minified/site/it/guides/package_management/package_debranding/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/package_management/package_debranding/index.html_br_7a1ac6ec70093c5afaba0f6f52daaeec0793a2e90ecb43a6e84fa3bb7552d7a2" +path = "static-publisher/static-content/file2006.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/package_management/package_debranding/index.html_gzip_2cc9dcaf76b2034d95530ef7c9f9b5869041afd1468f24438460d2569821037e" +path = "static-publisher/static-content/file2006.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/package_management/package_dev_start/index.html_4d5b0fd579944254ff77e26f6370dd38e3bc5c3d49cd08632139ff53a80c7da6" +path = "../build/minified/site/it/guides/package_management/package_dev_start/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/package_management/package_dev_start/index.html_br_437538cce6577e645bea8228c1acbe36a6eea9e2af4f9f78322e9c607b7b46a9" +path = "static-publisher/static-content/file2007.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/package_management/package_dev_start/index.html_gzip_c82832f128bd895c8e84b87fd001e8a0c43ad1fab4f9442510086f6ffe4a469e" +path = "static-publisher/static-content/file2007.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/package_management/package_signing/index.html_0e8e3fca4cf1f0c607cef552a1df465fee4d46c3c6d99ab3af0de0dffcd38d40" +path = "../build/minified/site/it/guides/package_management/package_signing/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/package_management/package_signing/index.html_br_985b64fd860bc6e30644f948dcfe9df95c07058a541b7f464ef2636795253459" +path = "static-publisher/static-content/file2008.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/package_management/package_signing/index.html_gzip_9cead8f544b759e7b7744cfdbc618512a3c555ea667047832a93fd675e2e4737" +path = "static-publisher/static-content/file2008.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/proxies/haproxy_apache_lxd/index.html_ae4f5b075b0419c22333efba69ac1f701f9332a262bfc5648e9bb5c06815dd34" +path = "../build/minified/site/it/guides/proxies/haproxy_apache_lxd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/proxies/haproxy_apache_lxd/index.html_br_a46a13ee0c0cf89c12a933deedb4f20d27e18cd1b8890c6ddc85da5f75f845ca" +path = "static-publisher/static-content/file2009.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/proxies/haproxy_apache_lxd/index.html_gzip_931d20ecbe4a4fe72ff143fc814bd1699d11464b1a63634404af8685623eca24" +path = "static-publisher/static-content/file2009.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/proxies/pound/index.html_9daff192b2796264c9db7f520693d107d82d9debcc181d0e889a09bac042c5cf" +path = "../build/minified/site/it/guides/proxies/pound/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/proxies/pound/index.html_br_078624302cd44775b75340a8b87e6052e43ed06b4a76a5455f02666123b62b5a" +path = "static-publisher/static-content/file2010.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/proxies/pound/index.html_gzip_78a0e4500dd74279e40d5179f3b6fbeda7fef8b9afc64bf408c462f89aa830d7" +path = "static-publisher/static-content/file2010.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/proxies/tor_relay/index.html_5e4bd0b39106473fd3347ff82a2eddae8e20bbdaa1b8b09bdc0b47828c2e5fb2" +path = "../build/minified/site/it/guides/proxies/tor_relay/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/proxies/tor_relay/index.html_br_e599b57f9f3c177e599bb62a6be259fc877395def157401d8adf38bb95648c53" +path = "static-publisher/static-content/file2011.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/proxies/tor_relay/index.html_gzip_1dde6aa9025c3abcea99724b3e6c3376ed5a1aa2e14949f33e34338613984aab" +path = "static-publisher/static-content/file2011.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/security/authentication/active_directory_authentication/index.html_8946ea82ed758e406a4ade21a8cc65f8b1020b006d8d78a86c260b59ccc7a017" +path = "../build/minified/site/it/guides/security/authentication/active_directory_authentication/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/security/authentication/active_directory_authentication/index.html_br_4d7581d981070d162fccf404a0d1baeab246c1c882968cf67e67191242d0a0a6" +path = "static-publisher/static-content/file2012.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/security/authentication/active_directory_authentication/index.html_gzip_80402c511b3722f9f3c6f02839eb86d20fd728f372cf761c232e55ffdfc6db6b" +path = "static-publisher/static-content/file2012.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/security/dnf_automatic/index.html_690822143fa76528efb2b256171e56acab079e99e9b66bc8ec5161f237618f38" +path = "../build/minified/site/it/guides/security/dnf_automatic/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/security/dnf_automatic/index.html_br_bda680fba02a82eb682f5624d2fcac613fada3f5a1ea51bbfff4f9c6bffef9aa" +path = "static-publisher/static-content/file2013.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/security/dnf_automatic/index.html_gzip_37186b3a998c965e81dfa1e73641fa4514eac0ce9ba2ecf827e23c07dac0fce2" +path = "static-publisher/static-content/file2013.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/security/enabling_iptables_firewall/index.html_43825832cdde069ebfbf4d2750ce29ad6ca2792ca4bf942bb2be198641dd11ea" +path = "../build/minified/site/it/guides/security/enabling_iptables_firewall/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/security/enabling_iptables_firewall/index.html_br_6d84e159931abfe2697d6a223773f750e300193f982bbb876a3584592d79da05" +path = "static-publisher/static-content/file2014.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/security/enabling_iptables_firewall/index.html_gzip_1ed6e51537798100999c23d44d512b4aae48f8e6f1b8834722e78f8f941d5e13" +path = "static-publisher/static-content/file2014.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/security/firewalld/index.html_f9556635aacc97bda79e5b8f8350d5cb2e009eb0997a834e1631aa4a931eb74e" +path = "../build/minified/site/it/guides/security/firewalld/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/security/firewalld/index.html_br_0479b34220677837f76e1b101b3208e36ad513ff9a0e5b655ba1729d8b111623" +path = "static-publisher/static-content/file2015.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/security/firewalld/index.html_gzip_7f11ada175b3c7fb505f6b8fda19c515004f65d0f5f3f51b50c70a9b31937c44" +path = "static-publisher/static-content/file2015.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/security/firewalld-beginners/index.html_e6797729237891c20e0f5f7ddeabe7bfd3c72bb0b36fed54dc9918878b7c47cd" +path = "../build/minified/site/it/guides/security/firewalld-beginners/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/security/firewalld-beginners/index.html_br_fb210594a67dc6d997e17be2602c4ad4f292d61d4de54a0d31439514e5e81341" +path = "static-publisher/static-content/file2016.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/security/firewalld-beginners/index.html_gzip_cc9abbbbeed0f1b0c96048c55c9964811b20d6638eeac7580c7a0ff4d873a6f7" +path = "static-publisher/static-content/file2016.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/security/generating_ssl_keys_lets_encrypt/index.html_05b947c89979b7627100f883ecd7c6de2c31725cfdaa82c07e9e61cfc5929020" +path = "../build/minified/site/it/guides/security/generating_ssl_keys_lets_encrypt/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/security/generating_ssl_keys_lets_encrypt/index.html_br_1be813257cf57f3686f8a1be543c986374df8bf8f9aa2903591184eac27d0d0c" +path = "static-publisher/static-content/file2017.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/security/generating_ssl_keys_lets_encrypt/index.html_gzip_3f3e847e9dfabfad7bb9f2831914deb59e41aeb48956a2e7dbffc6715afc81f8" +path = "static-publisher/static-content/file2017.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/security/learning_selinux/index.html_b74d1ef52a0f4ac84ead603b84b746c7696fa3904944fae64e48f665880e7aca" +path = "../build/minified/site/it/guides/security/learning_selinux/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/security/learning_selinux/index.html_br_1702933f6337f9d248ece820f65a2a0832a41111816fe06b4ace9f413aca11c1" +path = "static-publisher/static-content/file2018.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/security/learning_selinux/index.html_gzip_4b825bbe10234b23ace907c6fd1fdb69d4b2a5ee0ca4e57007bb91f386184a11" +path = "static-publisher/static-content/file2018.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/security/pam/index.html_283d56dd97bda3f2ea6981a629e33e3b75d957fcb58a682fb9a15d72b2c7a9a4" +path = "../build/minified/site/it/guides/security/pam/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/security/pam/index.html_br_ec518413210a1d1dd33bf0f68c52418c02861e0cc3dd82c387572300d1a5363f" +path = "static-publisher/static-content/file2019.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/security/pam/index.html_gzip_eae65f109126ff3a038d3e91fb22cab31f9b1b6f5f05bad4905bd4b6b8b2ca97" +path = "static-publisher/static-content/file2019.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/security/ssh_public_private_keys/index.html_4f0f6b51b0130259d2e09df80c68acc9101245c98ffbdad793157370aaa0891d" +path = "../build/minified/site/it/guides/security/ssh_public_private_keys/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/security/ssh_public_private_keys/index.html_br_05ee72ff3b18220de532808bbfce2f83d2d7f57428f7eb2ccdf54d98836e5219" +path = "static-publisher/static-content/file2020.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/security/ssh_public_private_keys/index.html_gzip_94a24e4e714bd624218cb087adbeaa6694fc0558fffa2473337d091da896033d" +path = "static-publisher/static-content/file2020.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/security/ssl_keys_https/index.html_410ac9a5d06acd29786f05311f004e3fe584ede2c6b467abeabbe82a1bf5327e" +path = "../build/minified/site/it/guides/security/ssl_keys_https/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/security/ssl_keys_https/index.html_br_05d7f7470e485053b5696f7ff16cd31fc9a2ede857a15a7c69ca35975e05a0fc" +path = "static-publisher/static-content/file2021.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/security/ssl_keys_https/index.html_gzip_55690eb75c8f62b1bcd2be564ba5480070ffb2fff82135eff4060834d0fa7f2a" +path = "static-publisher/static-content/file2021.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/security/tailscale_vpn/index.html_22e0634cb0aeef53a43892f309b7634b6f734e12e8d66d7c4500f0d6118b80ec" +path = "../build/minified/site/it/guides/security/tailscale_vpn/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/security/tailscale_vpn/index.html_br_803851d87e38b77800a0954d1089acec0f7ffc88cd4a7124ad0765d1b7ba01d8" +path = "static-publisher/static-content/file2022.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/security/tailscale_vpn/index.html_gzip_43f773db734916849ffd9fe046e608c5f5758812b9460202a46cef9d0b66d4ce" +path = "static-publisher/static-content/file2022.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/virtualization/cockpit-machines/index.html_fbf6858ef1cbd76fc1b7fd9e11a2689a660627f172a0b9cc553ea4f3ade59992" +path = "../build/minified/site/it/guides/virtualization/cockpit-machines/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/virtualization/cockpit-machines/index.html_br_9127895faeee5cbe16c4611c80c310f6c3f6cb5603d984f13e5e22ac8a3af236" +path = "static-publisher/static-content/file2023.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/virtualization/cockpit-machines/index.html_gzip_da265b710d2f91f0960994a7ac77b02a26154be9bfaba6b95a151af06621f81a" +path = "static-publisher/static-content/file2023.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/virtualization/vbox-rocky/index.html_e50d2835c51c8a0b32acbc59184c5713f93cd5afce84066a4ba342afd995562a" +path = "../build/minified/site/it/guides/virtualization/vbox-rocky/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/virtualization/vbox-rocky/index.html_br_1b474a273184f9d9785706cc1932959b3e139afcc731433bc16c85104bb2ccad" +path = "static-publisher/static-content/file2024.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/virtualization/vbox-rocky/index.html_gzip_2cce0c0c6193f25878bbf7740043391270165e0e1cd31e8434ed8a00f1068110" +path = "static-publisher/static-content/file2024.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/virtualization/vmware_tools/index.html_e1fb418e43ef323a41fdb0804f33af0aa20edd484e91abdc51e8b06ed057be38" +path = "../build/minified/site/it/guides/virtualization/vmware_tools/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/virtualization/vmware_tools/index.html_br_90efcffa42227c526d2f1c11b70a788e4d5ac2acf94f716188d9f03b3e31880a" +path = "static-publisher/static-content/file2025.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/virtualization/vmware_tools/index.html_gzip_71c9b7068f8dff641d2d1a5df22790c5e27cfc6f65fad598025416e85f83fcd3" +path = "static-publisher/static-content/file2025.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/web/apache-sites-enabled/index.html_bf9ca22ee42472c86ee3f0093884c9812b342942c5f227c6dba36725c73a0804" +path = "../build/minified/site/it/guides/web/apache-sites-enabled/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/web/apache-sites-enabled/index.html_br_a9649cf8f97ece65e957f6594560e96df1c5cb45e342e33041c5148c5039c954" +path = "static-publisher/static-content/file2026.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/web/apache-sites-enabled/index.html_gzip_bb41f993467568d95db1894ab4154c90fcd5e602e7f706728c49d380cb5e316b" +path = "static-publisher/static-content/file2026.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/web/apache_hardened_webserver/index.html_427565b83ed373e140536ead9ab91b5227ad779a583939085b27ffb4b6d94c03" +path = "../build/minified/site/it/guides/web/apache_hardened_webserver/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/web/apache_hardened_webserver/index.html_br_1c553b29e92f28ad96c3a8c7bdadf24ec35ff05e26415c76a13aecdf0429a274" +path = "static-publisher/static-content/file2027.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/web/apache_hardened_webserver/index.html_gzip_9151ce1a3a95a0b7e3ec865c23d9c47a11834767902d57c7f6b2bb99c24396ea" +path = "static-publisher/static-content/file2027.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/web/apache_hardened_webserver/modsecurity/index.html_848a2ed1860ff754cb1e5361194e2b50d92ec7fb6cb459efe51aa05694e56d28" +path = "../build/minified/site/it/guides/web/apache_hardened_webserver/modsecurity/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/web/apache_hardened_webserver/modsecurity/index.html_br_6d039d9171b440b0e7a3a63dadd3bea848306de3280e4ca95aec1882ee097a24" +path = "static-publisher/static-content/file2028.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/web/apache_hardened_webserver/modsecurity/index.html_gzip_60c0918af79b32ba1bcdec877a52c4579d17e40de1e4428095a729525b642897" +path = "static-publisher/static-content/file2028.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/web/apache_hardened_webserver/ossec-hids/index.html_4471cae4ebc7bb0fa239b2f6e7bbfe2b9117a906c9e3ed97b5d2bc4aacb117e1" +path = "../build/minified/site/it/guides/web/apache_hardened_webserver/ossec-hids/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/web/apache_hardened_webserver/ossec-hids/index.html_br_44a16a1ca9fd1d1faf8e605135cd5b521de39dbbf6849ef07b04b6edd84b4b92" +path = "static-publisher/static-content/file2029.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/web/apache_hardened_webserver/ossec-hids/index.html_gzip_3cd167bcdbc5f41ccd3706c4da1ed013c8596e64d0f6d276267126355ea3a028" +path = "static-publisher/static-content/file2029.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/web/apache_hardened_webserver/rkhunter/index.html_1c9778867267d1616173886bc0c9e9e0aa58432b33cbe96c4162b406a5aaff36" +path = "../build/minified/site/it/guides/web/apache_hardened_webserver/rkhunter/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/web/apache_hardened_webserver/rkhunter/index.html_br_b30b43618f6feb14affaec654bda738082214f0fd81c85c686fc1a60ffd215cf" +path = "static-publisher/static-content/file2030.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/web/apache_hardened_webserver/rkhunter/index.html_gzip_7c6d1c22c7c2b0b12128fa6a4a3b6a82337de06ca85c53da7cc21b860c0b6a6a" +path = "static-publisher/static-content/file2030.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/web/caddy/index.html_f38f858137d002c576af76d63760f587ae7143c57aef1d55b28ff6d74e77ebf4" +path = "../build/minified/site/it/guides/web/caddy/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/web/caddy/index.html_br_c020fad3f5f2ae90138dd713911682ae1c5818a3912426dbcfe0a02a6c15acea" +path = "static-publisher/static-content/file2031.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/web/caddy/index.html_gzip_558b79b9f0c022ff37b19203f6d5d15c00ca97c67ef8524430af53c1706e068a" +path = "static-publisher/static-content/file2031.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/web/mod_SSL_apache/index.html_144f125aee0adb291055ad1e2904f5777e88aeb04ff0cf8267146ab2cb338a64" +path = "../build/minified/site/it/guides/web/mod_SSL_apache/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/web/mod_SSL_apache/index.html_br_55aae0d4c79d23489c9ac7f279ebe90017132505c0a8a272e456066ed25355e5" +path = "static-publisher/static-content/file2032.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/web/mod_SSL_apache/index.html_gzip_c06b4fc371b600c086619c5360bb3950194a14e78e9867ad9e56b79bca58a054" +path = "static-publisher/static-content/file2032.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/web/nginx-mainline/index.html_f18ee636f92bcabddbd76ed65492f3f42cf93390a549790c433a279b3861bc0a" +path = "../build/minified/site/it/guides/web/nginx-mainline/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/web/nginx-mainline/index.html_br_97eb69833d1ae6ec11806e66856c63cfdc8144c51683aba751f6f7016a8d9959" +path = "static-publisher/static-content/file2033.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/web/nginx-mainline/index.html_gzip_e15a5af8a3218a92aadb285fcd35aff39a74fbca1a2fb7403314559dbddb27d3" +path = "static-publisher/static-content/file2033.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/web/nginx-multisite/index.html_32866264bce0e903bde49e53596c17d96ebd3fe2bbd77c9e35c012189ec4aefc" +path = "../build/minified/site/it/guides/web/nginx-multisite/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/web/nginx-multisite/index.html_br_af19679bf57a990f9f5e28b3c414dc264ff82d1b6010aab2c6d5788827c4d844" +path = "static-publisher/static-content/file2034.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/web/nginx-multisite/index.html_gzip_d633396dbdf8439299041c3d51701cd5d66f5f7208005e77563eb2704f1b4bd3" +path = "static-publisher/static-content/file2034.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/web/php/index.html_316838701f0170e71c363b3e594cd3107a019151d18f0b733e7651fa8b8adbee" +path = "../build/minified/site/it/guides/web/php/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/web/php/index.html_br_fd4f2ec9ccfde26c8ce4bb4c8ed27758535455d22f22729ce3e892c3deafe063" +path = "static-publisher/static-content/file2035.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/web/php/index.html_gzip_3c91d4bb3be9850693ec77af503b9fd8b908772a7b895116053192022670f06e" +path = "static-publisher/static-content/file2035.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/web/tor_onion_service/index.html_8f5780bb07724482bc4156e041d48f2d191102944561c65fec43f0af87ef0c4e" +path = "../build/minified/site/it/guides/web/tor_onion_service/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/web/tor_onion_service/index.html_br_6bfc1f0ee234f53a5c7ee4e7e518ed4b07ec0d75e4257d0a1196f296f5b878c7" +path = "static-publisher/static-content/file2036.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/guides/web/tor_onion_service/index.html_gzip_52e3775e1bdfc1f653dc867e72fd63da1e7292ccae9495853d8bd85d424d8f80" +path = "static-publisher/static-content/file2036.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/index.html_ab4edc16a8fb993625b5bc76f834c69042218e419045a64ae4fca7221c751726" +path = "../build/minified/site/it/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/index.html_br_5e9e0dee07c3aacf98cddaa0b40f5be9f262cd6d073e4ba96c64cac8837d8616" +path = "static-publisher/static-content/file2037.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/index.html_gzip_07e345fe1460f710b0778c1ba7fc77286bff12d2394740e7fd2ff5649fba3f8d" +path = "static-publisher/static-content/file2037.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/labs/index.html_38539703605de2ee8f32ae0a2d4546ba3d1cacfb2566ff72d0fd458afaba63c5" +path = "../build/minified/site/it/labs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/labs/index.html_br_0b040119d98dabcb7268c7d03febd919e97b52c7c89138ecdcfb9564213564ef" +path = "static-publisher/static-content/file2038.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/labs/index.html_gzip_a3dc755ae20897a1056acd54def893f1c049728c2a1a58cae3c86b407b2bab76" +path = "static-publisher/static-content/file2038.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/labs/networking/lab5-nfs/index.html_247c980865d249e3f00e6752105fcf9698071880bfe5bf35f2016b04d2ff79a8" +path = "../build/minified/site/it/labs/networking/lab5-nfs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/labs/networking/lab5-nfs/index.html_br_53e0d3252513ffe6c13dca96d8c65679fac6046451fd9f8c793e60ebfed948b5" +path = "static-publisher/static-content/file2039.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/labs/networking/lab5-nfs/index.html_gzip_43fefd327091d510816a304987c3c28ace7861a3996a9510a584d743d32a912a" +path = "static-publisher/static-content/file2039.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/labs/security/index.html_653bd6867bc5c54ed80125f48e83be31df85ee04250d567f4639dccba9b1891e" +path = "../build/minified/site/it/labs/security/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/labs/security/index.html_br_7425662ba83f53daefe8b85c4a9821264934891fb400365da31e136cbe7b9dba" +path = "static-publisher/static-content/file2040.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/labs/security/index.html_gzip_891e1e757886be23a868d9f76e36724cb09e2974dda49e5989eaccf54b9e4a82" +path = "static-publisher/static-content/file2040.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/labs/security/introduction/index.html_d88e1b52fa183e4a56ac237a34f11a7e7508270c17a8082a6d3dc417ec9d28a4" +path = "../build/minified/site/it/labs/security/introduction/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/labs/security/introduction/index.html_br_cd2a8b879e42e7c98a25545bad529257330a781ce9aed8217308299e6f5f7401" +path = "static-publisher/static-content/file2041.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/labs/security/introduction/index.html_gzip_42549d98c056c4f898433f5b90fec6210d709180c4c138a156aa79bb5f2b63f2" +path = "static-publisher/static-content/file2041.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/labs/security/lab3-auditing_the_system/index.html_c48868e56a8378374f69e8cea7c199c69c414a21445105c33e62977eb02f7926" +path = "../build/minified/site/it/labs/security/lab3-auditing_the_system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/labs/security/lab3-auditing_the_system/index.html_br_201c7500ad07d60c2997b085fb881bf7206bd3a0a55b87a981b8d85a33ed7b10" +path = "static-publisher/static-content/file2042.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/labs/security/lab3-auditing_the_system/index.html_gzip_5dc29088c73816fd079ec3f87e1207004c8cf38d1f1cdd0af6430bcb3a72a54c" +path = "static-publisher/static-content/file2042.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/labs/security/lab8-iptables/index.html_10aaf17e5cab9bf675a2af9ead4ec9ab4336e243053f78dcd19766f72749acd8" +path = "../build/minified/site/it/labs/security/lab8-iptables/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/labs/security/lab8-iptables/index.html_br_9eee52f3929ec0a36dd14329f45e943212dbdfa049f7646d66e6739586c9c32d" +path = "static-publisher/static-content/file2043.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/labs/security/lab8-iptables/index.html_gzip_0db094151f8ca9ab5ab2f3315c50d7f959e9a2aed8bf25569e972f49d4e4a33b" +path = "static-publisher/static-content/file2043.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/labs/security/lab9-cryptography/index.html_54a8ec4bf6ea225659c64b9b5f17b329aafb2117b7e6b235bf3022db8755b26c" +path = "../build/minified/site/it/labs/security/lab9-cryptography/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/labs/security/lab9-cryptography/index.html_br_e637d53ab408ec103c2b0985185fe4b433e213f2707b4e5a2a4ab0591b5a3492" +path = "static-publisher/static-content/file2044.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/labs/security/lab9-cryptography/index.html_gzip_54e0aa659a25e6a18854da91d13176d7e0a6fe626ed688bf34e3b5a55f91fcb9" +path = "static-publisher/static-content/file2044.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/labs/systems_administration_I/lab3-system_utilities/index.html_314e9f385c9f5c2f58439fe72935ba130f2de9c7f267bed161cb9fdd09e78593" +path = "../build/minified/site/it/labs/systems_administration_I/lab3-system_utilities/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/labs/systems_administration_I/lab3-system_utilities/index.html_br_20cb5725f7f0f6d324473d1afa1f84b1d4f2e7291ca4b065357af5b38e5963a8" +path = "static-publisher/static-content/file2045.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/labs/systems_administration_I/lab3-system_utilities/index.html_gzip_798416c44bf4448020494d509ed9f37e110ed25a266e1e90e85aecd377ae7b23" +path = "static-publisher/static-content/file2045.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/labs/systems_administration_I/lab5-networking/index.html_f76dbac3d67978f4ed08973ceb2a59d85d03c99c8b5d38cfc517679521075d7f" +path = "../build/minified/site/it/labs/systems_administration_I/lab5-networking/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/labs/systems_administration_I/lab5-networking/index.html_br_e6d88eeb5c68fe5c9dbe68e24503b8f3d3bf2b40f05bfe0d39469fc87b754220" +path = "static-publisher/static-content/file2046.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/labs/systems_administration_I/lab5-networking/index.html_gzip_62c05e15760f0627b3df446ce31aed1c596cd69d9775ac869e18061684c3d923" +path = "static-publisher/static-content/file2046.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/labs/systems_administration_I/lab6-user_and_group_management/index.html_bb33d9a06b760816880c83c306f96e7b652d1d9c6f58b1baee9f61516268162d" +path = "../build/minified/site/it/labs/systems_administration_I/lab6-user_and_group_management/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/labs/systems_administration_I/lab6-user_and_group_management/index.html_br_7aa411df257591b2af49c841a8fc4a2422049b62a890b15c6d70edf6a0df5ecf" +path = "static-publisher/static-content/file2047.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/labs/systems_administration_I/lab6-user_and_group_management/index.html_gzip_bf05d158cfab45c43ea73bf724b978a3f91c5fe6b66029f4ee47ebc37b3ac341" +path = "static-publisher/static-content/file2047.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/labs/systems_administration_I/lab7-software_management/index.html_f8c43edd5ebcbaaf6307fedb47eb3a0a8cf65fc1359eb92d3b2affeba0d9e940" +path = "../build/minified/site/it/labs/systems_administration_I/lab7-software_management/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/labs/systems_administration_I/lab7-software_management/index.html_br_edb0d52481e40af332cd2a3af7778a0cf24c4326c4a62d5d28122489887249a8" +path = "static-publisher/static-content/file2048.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/labs/systems_administration_I/lab7-software_management/index.html_gzip_e15353b20568678b828ee626c7ce68586d72c44120adfa020fede55d7d463b20" +path = "static-publisher/static-content/file2048.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html_c6667cefb6293273722a91b310c6a30c609084cfead40d9430199f5c9b0fef42" +path = "../build/minified/site/it/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html_br_e320bd47ab13998239a018a07bd4e99fb60e1a0ede7e17ab680f13f7415fc045" +path = "static-publisher/static-content/file2049.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html_gzip_9f47cdff61d429895d5e48e7db02f4b2b9cb855a594d56a926a28ce55287602e" +path = "static-publisher/static-content/file2049.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/labs/systems_administration_II/lab3-bootup_and_startup/index.html_1f9b35562fa5341341b4ed39af9e34fad50f3e7df89abecbd98fd91c8091e015" +path = "../build/minified/site/it/labs/systems_administration_II/lab3-bootup_and_startup/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/labs/systems_administration_II/lab3-bootup_and_startup/index.html_br_2618b703e02de8e454319de314fd5bd7265bd2d32b7423921374d5acdeb6372f" +path = "static-publisher/static-content/file2050.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/labs/systems_administration_II/lab3-bootup_and_startup/index.html_gzip_160565e206b0f648f756c39a7bb855aaa9dc1490925757d299386e48051e836e" +path = "static-publisher/static-content/file2050.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html_ac5ff3aa21fc7025685e1c0acce4de789b333551622cfecd903c27320bc65dcc" +path = "../build/minified/site/it/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html_br_95824d013ee0f157ef7bed49e749519eece1c349b7cbff20d3a1f3bcbe377f5a" +path = "static-publisher/static-content/file2051.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html_gzip_937edeeea1c0253e6e7497ad9a0dcd16b69cd2d4405b048bc02f17fc3fea5507" +path = "static-publisher/static-content/file2051.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/labs/systems_administration_II/lab6-the_file_system/index.html_a27783409d27c9ec21d32bcbe40f19058755bed237bdc3b96487b1d4b72fa78a" +path = "../build/minified/site/it/labs/systems_administration_II/lab6-the_file_system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/labs/systems_administration_II/lab6-the_file_system/index.html_br_213ac92edd4b93adaa0f9ff88457874b7c467456957c83d68f7c1264c3c8284e" +path = "static-publisher/static-content/file2052.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/labs/systems_administration_II/lab6-the_file_system/index.html_gzip_b85b1d605fbfed9f9e10c5b018bf65b6ed6c30d4663fc4de37b8dd7f8aabb783" +path = "static-publisher/static-content/file2052.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/labs/systems_administration_II/lab7-the_linux_kernel/index.html_6c9f2b179b4de5261faa529e20c61b89bcb9441c00cf240874c89188302e6e12" +path = "../build/minified/site/it/labs/systems_administration_II/lab7-the_linux_kernel/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/labs/systems_administration_II/lab7-the_linux_kernel/index.html_br_1d1492fd4da149036c58237308f9fa7b3d9c4d3b526f3abf8df372047c6e3b74" +path = "static-publisher/static-content/file2053.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/labs/systems_administration_II/lab7-the_linux_kernel/index.html_gzip_bcae2ff1ba0ef2dabafd7415585ae21aba21c0dd9cec821ff332ad13d5bba691" +path = "static-publisher/static-content/file2053.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/release_notes/8-changelog/index.html_e44c51caff40a4f4b90ac3992f053e84d356b7dadb33b0eec699d4ba3c5267e4" +path = "../build/minified/site/it/release_notes/8-changelog/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/release_notes/8-changelog/index.html_br_236f0ff140556719982ea4d6f7056604aabf2b5edf9156d433d6543364b029a4" +path = "static-publisher/static-content/file2054.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/release_notes/8-changelog/index.html_gzip_a2844af24d82415cc904d88f3761a0f31099e12d4f632c884d1044a74ac0a770" +path = "static-publisher/static-content/file2054.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/release_notes/8_4/index.html_749f21d4a6e827c02b4af9d6cca093c589769ef404724b91651275311154a833" +path = "../build/minified/site/it/release_notes/8_4/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/release_notes/8_4/index.html_br_beef8cb24be5c357a57a9bbcb3044d6a8d2be674e8afa04a31dc1f8d2b6f148b" +path = "static-publisher/static-content/file2055.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/release_notes/8_4/index.html_gzip_d5b1e88b539324e01259c58eb3b2cc08196e75196e729b4de88d8f76eee18b91" +path = "static-publisher/static-content/file2055.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/release_notes/8_5/index.html_f33f498f73239f69f74371d03a97e41e0781b080c2874887e738fc89295e8e5f" +path = "../build/minified/site/it/release_notes/8_5/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/release_notes/8_5/index.html_br_3e179e58ad7c2984714f41b1de6b942bf8890dbcfa8a962febfaff3b58b910fe" +path = "static-publisher/static-content/file2056.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/release_notes/8_5/index.html_gzip_566e547d36bc02243631391a494edf7b984862cd5245eb8b1821919f46c553a1" +path = "static-publisher/static-content/file2056.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/release_notes/8_6/index.html_ab05ec9e53309ca70838478ec41e257c004b0d1e7647a29768f96382097cd797" +path = "../build/minified/site/it/release_notes/8_6/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/release_notes/8_6/index.html_br_4d13421a1db44bf96a111c9f4d8902e1c0b34e6f6a84fab7e1937d705b58896f" +path = "static-publisher/static-content/file2057.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/release_notes/8_6/index.html_gzip_e58f07f61b4cdd7aa3e378d05ee2c4359f4f41566117ea50ef69d8150690e2dc" +path = "static-publisher/static-content/file2057.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/release_notes/8_7/index.html_ae2c9f4fa4e24bb1e38d359822cf4515b9e11898060ccafc89e20949ed340860" +path = "../build/minified/site/it/release_notes/8_7/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/release_notes/8_7/index.html_br_dc8be4dec5f892ab46a6258c2884e89d4da1998937894694cd442943b22d469b" +path = "static-publisher/static-content/file2058.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/release_notes/8_7/index.html_gzip_ed867152dcbccf37d14458520788e3173c70515a9ed565ca767e5d8d3c8130db" +path = "static-publisher/static-content/file2058.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/release_notes/8_8/index.html_ed7d5fb922e33ca5613c600a24d5e9b10af17fd078f7e1fc11bf94baac42fcc5" +path = "../build/minified/site/it/release_notes/8_8/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/release_notes/8_8/index.html_br_f09add3ac50371a1d81b55a1049c32dd6ffbb2391e2f9da528a433a9e2d857bc" +path = "static-publisher/static-content/file2059.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/release_notes/8_8/index.html_gzip_4c6c2bed281dcac2b43ddaa16bb83544cc9d6d797fa341f9eeb685f381986ba7" +path = "static-publisher/static-content/file2059.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/release_notes/8_9/index.html_ca5d2e163d5c876e27957924aea822460a18c0831929a61d9ac22cfbdc57993d" +path = "../build/minified/site/it/release_notes/8_9/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/release_notes/8_9/index.html_br_4d94b9d6c21c0d393df9c344c8024ccef4d053673d97268fae6ebad5ff50e119" +path = "static-publisher/static-content/file2060.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/release_notes/8_9/index.html_gzip_ee2044380923bc9712f19608e96a26a32f6878030832b2c7d68ab703970f203f" +path = "static-publisher/static-content/file2060.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/release_notes/9_0/index.html_e6f06ee6d44a48e7e1cf6b74dc3445d10b6a2267437bb78574dffb90720f3236" +path = "../build/minified/site/it/release_notes/9_0/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/release_notes/9_0/index.html_br_4af538eaedd27df2a9666d1dc51715db58cf71071d336d17bcdaf32363c5dac5" +path = "static-publisher/static-content/file2061.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/release_notes/9_0/index.html_gzip_8a77b34d04deffd3be526c6937e4260e4bf757d87548abc07a71dbfdd26721f8" +path = "static-publisher/static-content/file2061.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/release_notes/9_1/index.html_5095f8a4b5c73be29fad411f456d7f34f2b0e927946321d3f9e9ac04b57916a5" +path = "../build/minified/site/it/release_notes/9_1/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/release_notes/9_1/index.html_br_55e08168d75fb813b28ead2b583ab20e1690ccc5a2dd6fe65e7dbc595ec3b4e2" +path = "static-publisher/static-content/file2062.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/release_notes/9_1/index.html_gzip_3dba7c363a8563a67ea5c5dadc0cf4dd3b158ebeaa04a4aab96abdfec6e3c18f" +path = "static-publisher/static-content/file2062.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/release_notes/9_2/index.html_1fa79ac2152a3eaaf7b86739d67ba35a05b6a8784a75521b2ab018acd619a5a5" +path = "../build/minified/site/it/release_notes/9_2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/release_notes/9_2/index.html_br_005416edbbdb867f1547600fa899e382b3ddac770effbe97e3346dcfa405d3fa" +path = "static-publisher/static-content/file2063.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/release_notes/9_2/index.html_gzip_2f5cd6c6d090353946767435f05423f08ed5984029218ff29ef9c84c334b4f1b" +path = "static-publisher/static-content/file2063.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/release_notes/9_3/index.html_ebf7a46509b52967cad7b1890967c7496d7cdf51595a429ebdadb845f2262701" +path = "../build/minified/site/it/release_notes/9_3/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/release_notes/9_3/index.html_br_c254a2a81bac56e39de5508845ddee2139db885a2593150fb5ba2fbb25e08287" +path = "static-publisher/static-content/file2064.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/release_notes/9_3/index.html_gzip_a1e92232d59ce2c969b58b35dc9a6291bd3e0b873c5a6f4cac8bb4db6a4ffa1c" +path = "static-publisher/static-content/file2064.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/release_notes/index.html_f9337b45738390f36da612fc2c1e059fc4d35f0a683b1ab988723602dbadf40c" +path = "../build/minified/site/it/release_notes/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/release_notes/index.html_br_6ebe37bb48b323fb5c8601466250d78ac00465858e90d5ddba91f5748e7dc637" +path = "static-publisher/static-content/file2065.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/it/release_notes/index.html_gzip_8330bc8ee443bc3ebfdeb33b87ce9bbdb5f20e643796d2e164b19ae6fe4227e3" +path = "static-publisher/static-content/file2065.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/admin_guide/00-toc/index.html_cfdca35be44575e74eebb048b9439e719243bef26158e4e7a30d214f3ce69d50" +path = "../build/minified/site/ja/books/admin_guide/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/admin_guide/00-toc/index.html_br_3386728e02e3cce8a0f82aae4d02bc9564983f26a5f24fc4e54505eef687150a" +path = "static-publisher/static-content/file2066.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/admin_guide/00-toc/index.html_gzip_b0a5fd0412f4bf78d93d023d14abb49c5f088c93223c99264bc6d6aceccade36" +path = "static-publisher/static-content/file2066.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/admin_guide/01-presentation/index.html_c6347e22cc5b5a2bd32fecaf81a69b73aa9a98de6760630bfc43310d7d66e42b" +path = "../build/minified/site/ja/books/admin_guide/01-presentation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/admin_guide/01-presentation/index.html_br_828dc68a6a401bb027931c6f85ed8956734d90bad55992839aa95f9c75251984" +path = "static-publisher/static-content/file2067.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/admin_guide/01-presentation/index.html_gzip_66221c15b0f7d181542bd882fa3008dbbe5caca0056a5ac74ddd92a6b36c71ce" +path = "static-publisher/static-content/file2067.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/admin_guide/03-commands/index.html_85f55903f864225bd118d183ba86e52d1de7257e71e11c2df0877a116ac05f9c" +path = "../build/minified/site/ja/books/admin_guide/03-commands/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/admin_guide/03-commands/index.html_br_74c3489faad76a9a9bd5458075626f38de32f7635906cb634c9185ca6137daa7" +path = "static-publisher/static-content/file2068.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/admin_guide/03-commands/index.html_gzip_704bbc4f7a92e6c34e3c6feac4a912df5401eb1772e6c7391866658f536f0366" +path = "static-publisher/static-content/file2068.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/admin_guide/04-advanced-commands/index.html_fef865b09c53da939e921090a29ef9ed9c6e1a5f1ef97a715dba211b248bc499" +path = "../build/minified/site/ja/books/admin_guide/04-advanced-commands/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/admin_guide/04-advanced-commands/index.html_br_c085c4c88399f8dc52b03f5ac43b47e8769c75971f1b6dfa204570f0243c5331" +path = "static-publisher/static-content/file2069.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/admin_guide/04-advanced-commands/index.html_gzip_676245d223f435e3373c72d9e352cf7f7d8db48ee23a0eaf37241223d9c6d7ca" +path = "static-publisher/static-content/file2069.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/admin_guide/05-vi/index.html_a8a49c01c594bad9c8540b0816fff76503e4599d56f27b7665143586425cc327" +path = "../build/minified/site/ja/books/admin_guide/05-vi/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/admin_guide/05-vi/index.html_br_f21ec7733ed1830833cb21ffa31f5abf69055ce685b6c78a3a9ac64045eacd8c" +path = "static-publisher/static-content/file2070.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/admin_guide/05-vi/index.html_gzip_70ef55c8e58b581c88335f932e0897d79f6f4158cfbed0bd7bc9938c5e5ef70f" +path = "static-publisher/static-content/file2070.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/admin_guide/06-users/index.html_d33c077a1ec237049ed2e6efe9544c6889091f3447de42f5b3dddc35e0bb3060" +path = "../build/minified/site/ja/books/admin_guide/06-users/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/admin_guide/06-users/index.html_br_586c94ad11b306737b55558aacd87f26e5d9829a0b5c3800078cac5b9f777e47" +path = "static-publisher/static-content/file2071.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/admin_guide/06-users/index.html_gzip_3bd99135d97499b6686b45dd447d78117c670a2cef82459748c3017491789fb0" +path = "static-publisher/static-content/file2071.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/admin_guide/07-file-systems/index.html_76839741e883ac915bd4040405c87fa43d7868024029f5789ae4ee5e66b9d3ca" +path = "../build/minified/site/ja/books/admin_guide/07-file-systems/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/admin_guide/07-file-systems/index.html_br_e623ceae0c788756c24044b32bdf23e1795316b01357a1d6af166aa5e346257f" +path = "static-publisher/static-content/file2072.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/admin_guide/07-file-systems/index.html_gzip_cc5f2c9b633e222632279e39ace4971899205b4d8313a2b54ab89ff28cda76c0" +path = "static-publisher/static-content/file2072.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/admin_guide/08-process/index.html_43dd4db9646dd1271aac283590d0a5685add6124b2f0dca119cf63b437b8709b" +path = "../build/minified/site/ja/books/admin_guide/08-process/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/admin_guide/08-process/index.html_br_0221e1c0fde6ae396b8f5176c5214e99bcf3f890223f2257960711bb2c5f062e" +path = "static-publisher/static-content/file2073.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/admin_guide/08-process/index.html_gzip_2b8a139c4a40ce93b773cc08614d4199f6d80478a5ee9d31addd6864c06222e0" +path = "static-publisher/static-content/file2073.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/admin_guide/09-backups/index.html_9938b87e8be0f33ff47db1ff568afcf9cfcfd7eb11c0b48a2f6c308c35c1dc90" +path = "../build/minified/site/ja/books/admin_guide/09-backups/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/admin_guide/09-backups/index.html_br_7f07fb1d9fed57495dd09730d29d83d55688032be4692452d520d468c6d6fb20" +path = "static-publisher/static-content/file2074.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/admin_guide/09-backups/index.html_gzip_2de6778cd61c8da3b5e042dd81cd33e6593084bd032ea11c9ba70bc912683616" +path = "static-publisher/static-content/file2074.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/admin_guide/10-boot/index.html_cf4277433f7572f597f41df0bdbccd73b57ca3cdde4bcb50e3ec02389cf24b13" +path = "../build/minified/site/ja/books/admin_guide/10-boot/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/admin_guide/10-boot/index.html_br_abd22b699e93dba1fc6cc94c926685a3f75aecee0b7a45a1796758042100929d" +path = "static-publisher/static-content/file2075.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/admin_guide/10-boot/index.html_gzip_94e5f75eb9ac579aeb9e21291c6aff627b7f260277aafef9077b4f3fc36d4a6e" +path = "static-publisher/static-content/file2075.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/admin_guide/11-tasks/index.html_6846913e58c83c48f6f9a4c5d011772158da760da0a9e2ad3cc3af7302436a58" +path = "../build/minified/site/ja/books/admin_guide/11-tasks/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/admin_guide/11-tasks/index.html_br_61beb6dc870a4ce7d0bb9a83fe8e4424df77b8fda82943b6cc4a564a86eb0417" +path = "static-publisher/static-content/file2076.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/admin_guide/11-tasks/index.html_gzip_75b0247827e0c2454380f7b1ded38f155548f655e131526226ea0dff57a61559" +path = "static-publisher/static-content/file2076.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/admin_guide/12-network/index.html_e06accec510472f0f5c329d1ec5e3c60e39ba58d3a9a2b74d08361626c441444" +path = "../build/minified/site/ja/books/admin_guide/12-network/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/admin_guide/12-network/index.html_br_6f2f220c16053f000ae570cf393790391490dbc2632445c0f32f511d96bc8d4e" +path = "static-publisher/static-content/file2077.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/admin_guide/12-network/index.html_gzip_faffbe2b50feae0e1835d3e853738d12cd218f5a01fa0093431508ce9b13f97d" +path = "static-publisher/static-content/file2077.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/admin_guide/13-softwares/index.html_3726e5d00c6331769d6cf82f0d01dcd14c27d4cc93afc26cbdc2e681687d059f" +path = "../build/minified/site/ja/books/admin_guide/13-softwares/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/admin_guide/13-softwares/index.html_br_7b208bf881b9849cc4e0c4bfd1b2bb9185321c015a43d05fa2d0f3f3e9ba22ca" +path = "static-publisher/static-content/file2078.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/admin_guide/13-softwares/index.html_gzip_e9628ee7aca82c4fc93eb2e084af4d821a236e66e3d73255831e217c5b6f1399" +path = "static-publisher/static-content/file2078.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/admin_guide/14-special-authority/index.html_4f467464f85ed0436d5bfbef0927c1e86450f9829e2d0f05ce15bfab082509d2" +path = "../build/minified/site/ja/books/admin_guide/14-special-authority/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/admin_guide/14-special-authority/index.html_br_08ce48af68c789970ea5b67d9cfc091dcbb6e63b455f5e0dd3e5d126a6ffaf76" +path = "static-publisher/static-content/file2079.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/admin_guide/14-special-authority/index.html_gzip_4226c1919377dd5f68861a6fe66281eba19b5cb4a5f6d8b5edec34538e3f83da" +path = "static-publisher/static-content/file2079.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/admin_guide/16-about-sytemd/index.html_59f242e3fc62ecdb9ee6acd66ed705510d2610ee871bcfa3f3c1578b08c70a61" +path = "../build/minified/site/ja/books/admin_guide/16-about-sytemd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/admin_guide/16-about-sytemd/index.html_br_3e932ccf0158c5bac875a69c0121820ffb44bf56f05f9197619841c18fc67dbd" +path = "static-publisher/static-content/file2080.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/admin_guide/16-about-sytemd/index.html_gzip_59616493b3887cd013a399a13b9081969133133e9364d536c93fdbfb69fd17e8" +path = "static-publisher/static-content/file2080.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/bash_programming/01-Shell-overview/index.html_fd93aa67cbd61c9b6a43cabcb1b1dbb6d5324e2118563023500af0485e7c6829" +path = "../build/minified/site/ja/books/bash_programming/01-Shell-overview/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/bash_programming/01-Shell-overview/index.html_br_0685e87d80b264136d9cab0a78f98434deacb83437b55dc4b36a39b3187d0387" +path = "static-publisher/static-content/file2081.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/bash_programming/01-Shell-overview/index.html_gzip_1a00b582352aceb076afde570c4cd63694a78a47a4f6ace3ef4b9c7c809716b0" +path = "static-publisher/static-content/file2081.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/disa_stig/disa_stig_part1/index.html_f12f575bd2a44d8d08f61d6c8fa6dc3d13a06e0efd24427834c8035db41fc20c" +path = "../build/minified/site/ja/books/disa_stig/disa_stig_part1/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/disa_stig/disa_stig_part1/index.html_br_cb4890348019053439d3a6195cdbc0bbe491fe37617b5f808509879743619726" +path = "static-publisher/static-content/file2082.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/disa_stig/disa_stig_part1/index.html_gzip_2718d8d00bc9e678c46632876bb3016c0657fd5561539e9243a3d82b63956050" +path = "static-publisher/static-content/file2082.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/disa_stig/disa_stig_part2/index.html_2fc9ebd696e7865e4e3761e59fb0882c5f7f4d38bbd38109caf3a9732dda826f" +path = "../build/minified/site/ja/books/disa_stig/disa_stig_part2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/disa_stig/disa_stig_part2/index.html_br_4d4259eff9f1ac6700354b55e61db66852bec6b1bae2b82f190fb43a999aa652" +path = "static-publisher/static-content/file2083.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/disa_stig/disa_stig_part2/index.html_gzip_d0fc72732cf5344de322bfdb7a7b9a5a1dac64f1bd0d44572f321ef491050c26" +path = "static-publisher/static-content/file2083.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/disa_stig/disa_stig_part3/index.html_defc5344ffd10f3a3e49118be3ce68217d9e54dcc7b5500c5a3942616d028593" +path = "../build/minified/site/ja/books/disa_stig/disa_stig_part3/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/disa_stig/disa_stig_part3/index.html_br_cb526596eec158d1bdce39e456ab2ddea0ddaab822ad478bb6f24c7b06d7a365" +path = "static-publisher/static-content/file2084.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/disa_stig/disa_stig_part3/index.html_gzip_6a4fd32ba481b97d831621559d8afc856b90aff533738620ee4aa6b083d4565b" +path = "static-publisher/static-content/file2084.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/index.html_1aae7d52663a0abfd9ede5ac918025673b3aeba49487180c869c36ecd557020e" +path = "../build/minified/site/ja/books/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/index.html_br_78195eacac61038b1681ed5808ac9e5218e6aebdfe43b29f73203a46d1445577" +path = "static-publisher/static-content/file2085.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/index.html_gzip_e631c4d67b2748266786fd1c4f34433ce03e1a6ce5782596927c85b3700b24c4" +path = "static-publisher/static-content/file2085.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_ansible/00-toc/index.html_c6c6725751e80094ad4eab1d04a9b0c61f09fce6b80188a6d9c9becd064f940f" +path = "../build/minified/site/ja/books/learning_ansible/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_ansible/00-toc/index.html_br_7ab83985f22c613e5b4e1409678e27532bd27b5cf505f1adfd925e9a0e1ca632" +path = "static-publisher/static-content/file2086.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_ansible/00-toc/index.html_gzip_c849c05ddb43151e750e6014b242114671b54ae11d84fdc3c9ff596058c01015" +path = "static-publisher/static-content/file2086.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_ansible/01-basic/index.html_aa5c4ebf9f301a334f3ac57a45fee1b8324a6f64555263c640a2d34bd26f6c10" +path = "../build/minified/site/ja/books/learning_ansible/01-basic/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_ansible/01-basic/index.html_br_f9e59ead4fad7cf5c5d5c92f6cb1f38b22ccdb93f252c9cbebc85beeffba3b18" +path = "static-publisher/static-content/file2087.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_ansible/01-basic/index.html_gzip_3daa5220ed1e0aedbf3f6bed374660f6b0eba80c4a2767d653c112d57f42d26c" +path = "static-publisher/static-content/file2087.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_ansible/02-advanced/index.html_dee24f0aea571fe915386af7336eae26c82047b1e171e2f171edfd1f5d3aa3f3" +path = "../build/minified/site/ja/books/learning_ansible/02-advanced/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_ansible/02-advanced/index.html_br_3dcfa3edef9385f9831d294ce5055c762a465b777d7cf9b8826d37a688eb8e65" +path = "static-publisher/static-content/file2088.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_ansible/02-advanced/index.html_gzip_1c429cf5c936111597ca02abcc1016011921eb6517dad1cd27f3d808867796f0" +path = "static-publisher/static-content/file2088.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_ansible/03-working-with-files/index.html_502c1dd7985ec4f293ffef636126c6bb08b8f1982e5fe3f10ff7134a1bc1e24d" +path = "../build/minified/site/ja/books/learning_ansible/03-working-with-files/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_ansible/03-working-with-files/index.html_br_261bcc0e9afc8ebe2d5153196ecd62bee0db84adb1fb04d612aefda5b3fe0511" +path = "static-publisher/static-content/file2089.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_ansible/03-working-with-files/index.html_gzip_12edc2fab17e8611a2fab26846f6aee6423afc105676da7ac4268b59edef5d5c" +path = "static-publisher/static-content/file2089.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_ansible/04-ansible-galaxy/index.html_bf03965a30091dc086a30f4601cd7183e9889031f7c245a43630fe5c8fba385a" +path = "../build/minified/site/ja/books/learning_ansible/04-ansible-galaxy/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_ansible/04-ansible-galaxy/index.html_br_f503a2b76962ade5fc1424286f99ff330e16277bf6f5f59a480b3ccb96a1e7eb" +path = "static-publisher/static-content/file2090.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_ansible/04-ansible-galaxy/index.html_gzip_6decedf79edf9c209b1234aa7cbc4cbccf1f8c9b053bebc2be4f900a8bb40aa9" +path = "static-publisher/static-content/file2090.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_ansible/05-deployments/index.html_2ee5767f30e6dcb2a26a217f27f05e8a64b377971b9c5cc07d4a1c14c7512410" +path = "../build/minified/site/ja/books/learning_ansible/05-deployments/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_ansible/05-deployments/index.html_br_f19af5b29db5bfa3e0c6cdd4b2f07c00982c7a1aea057637dcc626f81794eaaf" +path = "static-publisher/static-content/file2091.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_ansible/05-deployments/index.html_gzip_1163098ba3caa1be61afbcd3925bdafa5be959f90fa224b9526b36cdcdc7fe30" +path = "static-publisher/static-content/file2091.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_ansible/06-large-scale-infrastructure/index.html_a58a2c12124eaa74b6686bdcae6b01de46e1597738c52302b4cda0d498abdb26" +path = "../build/minified/site/ja/books/learning_ansible/06-large-scale-infrastructure/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_ansible/06-large-scale-infrastructure/index.html_br_926a09ea1798c6ee1c494fdf72af93aad8e49e8d1882fd8ce3612e049c0137aa" +path = "static-publisher/static-content/file2092.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_ansible/06-large-scale-infrastructure/index.html_gzip_73c3a3ed70d1c341539b8a123e9efe0ebcfa5dc1ca81ca204d5ae8f2db01d8b3" +path = "static-publisher/static-content/file2092.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_ansible/07-working-with-filters/index.html_1550a41cebff85e4539454ab25ff35b2c44cefbc8322a58b2af19ca17a558382" +path = "../build/minified/site/ja/books/learning_ansible/07-working-with-filters/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_ansible/07-working-with-filters/index.html_br_c6834ef509c86e5ef109d68fc37841c3140f666bf342b5d2932ed8c3e57dc4e3" +path = "static-publisher/static-content/file2093.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_ansible/07-working-with-filters/index.html_gzip_1edfd21b030016b8f58439f9f37f9e1199f2f415e2eb072b538041d6e9646ad8" +path = "static-publisher/static-content/file2093.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_ansible/08-management-server-optimizations/index.html_46dcd83d5654ec4dd497352fbc7eb84ffd8d20dce34c7716f314de026507f917" +path = "../build/minified/site/ja/books/learning_ansible/08-management-server-optimizations/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_ansible/08-management-server-optimizations/index.html_br_681ecb59872f3ea4923ad233ad5acbfb045fa328400e2311d2f516fda1671852" +path = "static-publisher/static-content/file2094.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_ansible/08-management-server-optimizations/index.html_gzip_8c0fb97a4165565db3f9ba455758dab762afacf1ac44a76b5286784d0b65565d" +path = "static-publisher/static-content/file2094.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_bash/00-toc/index.html_92ef65ecad3b12c0ead2e534941be47258df74d61c5b9e723181d290ed53bc7f" +path = "../build/minified/site/ja/books/learning_bash/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_bash/00-toc/index.html_br_e67bf6c18eaa743912f523f81cf6b2b430567714c1808a816646835a5b46534d" +path = "static-publisher/static-content/file2095.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_bash/00-toc/index.html_gzip_7e344d25a8be57c265b0e6451c36364153b5e39eda949f314ffefef6e8b5e699" +path = "static-publisher/static-content/file2095.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_bash/01-first-script/index.html_fdaf60364e6c3be4c12121dd243eb47f2194010f783f98b423e77992a352f32c" +path = "../build/minified/site/ja/books/learning_bash/01-first-script/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_bash/01-first-script/index.html_br_226998d0cd0e3484064f33426be62c71d3d61d337e5077218d3135500930a9af" +path = "static-publisher/static-content/file2096.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_bash/01-first-script/index.html_gzip_3a264cc2f98751ef3fbcb2a49047273778c0fcf16efb06c17088260624f8172f" +path = "static-publisher/static-content/file2096.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_bash/02-using-variables/index.html_001c4e84df3f4eb7cc1a7c23d1ce6216b270f52ee6a5aebe1ba44bfdb432e305" +path = "../build/minified/site/ja/books/learning_bash/02-using-variables/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_bash/02-using-variables/index.html_br_e30017c586b6cdb3786de047d549d17aee5ce001d47b40f4c5011c66bdc9af11" +path = "static-publisher/static-content/file2097.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_bash/02-using-variables/index.html_gzip_dba660db0bf374261d27fbfcf7cdd4d93f3d668ca06f4e5cd24a0c463db753ea" +path = "static-publisher/static-content/file2097.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_bash/03-data-entry-and-manipulations/index.html_39528eb47325751c88cb28b248ecdd967eec14ea58c618cd8d2e67d56acd8e60" +path = "../build/minified/site/ja/books/learning_bash/03-data-entry-and-manipulations/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_bash/03-data-entry-and-manipulations/index.html_br_65ed158ccb426f83446ba28480fedb95b3543b5a068ca1b2ed900f7237078e56" +path = "static-publisher/static-content/file2098.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_bash/03-data-entry-and-manipulations/index.html_gzip_a54addcd17bb9a649c8856d9596757f9f782647d5befa69c5af2949b02e301b7" +path = "static-publisher/static-content/file2098.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_bash/04-check-your-knowledge/index.html_3f1b4752b243746d41b8586ce34dc20b81831f9b0259dfcfe47e28cf8332a056" +path = "../build/minified/site/ja/books/learning_bash/04-check-your-knowledge/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_bash/04-check-your-knowledge/index.html_br_638b7387d5c956acd5bd615723b00d4f6f4b5064ba4d4635b8f315f761fb4f0b" +path = "static-publisher/static-content/file2099.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_bash/04-check-your-knowledge/index.html_gzip_7a34b48c66512c8e96a17b8dce12a15204bed1b136569fb579db697226bd9e43" +path = "static-publisher/static-content/file2099.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_bash/05-tests/index.html_5ab724398dc04688ccd723a8675910530a6624be3bb369fe54a28823bbc24515" +path = "../build/minified/site/ja/books/learning_bash/05-tests/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_bash/05-tests/index.html_br_4368d77f6531b48f3f567154150b606dcdc8205448573093b5898288a8a2da11" +path = "static-publisher/static-content/file2100.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_bash/05-tests/index.html_gzip_a0afd0dfe4890df260682fe0b32fb8c34904aff2bcfdbce8f7b63e29e61c2da4" +path = "static-publisher/static-content/file2100.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_bash/06-conditional-structures/index.html_074cdc71b31892145da00bfe27057621f869a7d835ba1d71ba421cf766ab6843" +path = "../build/minified/site/ja/books/learning_bash/06-conditional-structures/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_bash/06-conditional-structures/index.html_br_332836d8a198d51d6195a2e216f271d6bc65dec252e3b26f40ffaae89495b876" +path = "static-publisher/static-content/file2101.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_bash/06-conditional-structures/index.html_gzip_004529eae540bb13f1fbf3d0136c8786e5906f018678d86991213c7c1ff52baa" +path = "static-publisher/static-content/file2101.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_bash/07-loops/index.html_948b08faa8e85d1fd5683b033ded72850017b937eccd040ba1018aa904e1451e" +path = "../build/minified/site/ja/books/learning_bash/07-loops/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_bash/07-loops/index.html_br_1ed41c8b72c3037422e4527decbccdd91cf9b67ac870987d41590ebb86056f05" +path = "static-publisher/static-content/file2102.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_bash/07-loops/index.html_gzip_2e2bb16a84b31f7b04329a48e5f30b5002342efd7010bb0677e4297b6f8c8d9f" +path = "static-publisher/static-content/file2102.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_bash/08-check-your-knowledge/index.html_05d3d2a0b7006f4cc1798a3b76f56a856c53ee6d5bea1d9786ce87cc5cb1e037" +path = "../build/minified/site/ja/books/learning_bash/08-check-your-knowledge/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_bash/08-check-your-knowledge/index.html_br_dfb6c5597b0435669671651b99dee25d1337c60ebe4cafbd28082a3482b97654" +path = "static-publisher/static-content/file2103.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_bash/08-check-your-knowledge/index.html_gzip_8f343fe4b2fe0d239ffdc858f79c20f06fd77c9477140f9b291e2caf07de9f3a" +path = "static-publisher/static-content/file2103.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_bash/appendix/02-variables-logs/index.html_b0f28a3553e065324f2c7a90119283c67926453f71a354cf7713eb806841cfd2" +path = "../build/minified/site/ja/books/learning_bash/appendix/02-variables-logs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_bash/appendix/02-variables-logs/index.html_br_56702703ed87de421120104f49ba32df083946c439ea9d368eadbb3d4af18cdb" +path = "static-publisher/static-content/file2104.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_bash/appendix/02-variables-logs/index.html_gzip_0b55b545a6861e385512f6ac492cefacb7565db658f9963c7809388f5b07a717" +path = "static-publisher/static-content/file2104.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_rsync/01_rsync_overview/index.html_fd55d5190f33ea5270388601824d92f677f16042c651a3c9f30c61f2f62c1e10" +path = "../build/minified/site/ja/books/learning_rsync/01_rsync_overview/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_rsync/01_rsync_overview/index.html_br_5ad3dc5113fda74a22e39eaa20d52d685a3123e260469cccd9018ccd4e6ded6a" +path = "static-publisher/static-content/file2105.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_rsync/01_rsync_overview/index.html_gzip_9c0ff45156b060f21e1a2784788d687c51d3a393c09cf2a14dc1381810719ab7" +path = "static-publisher/static-content/file2105.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_rsync/02_rsync_demo01/index.html_0c31b0c4f27bceef4e0d96042d872b70116cafdb42bb348591a85a3db3c8b4bf" +path = "../build/minified/site/ja/books/learning_rsync/02_rsync_demo01/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_rsync/02_rsync_demo01/index.html_br_43adf61991b63b06a508f00f7b9aa4ebfdfea63b5e39574f7e4a0b12081219c2" +path = "static-publisher/static-content/file2106.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_rsync/02_rsync_demo01/index.html_gzip_f23a499e03a21d03f61790a427b7393908411dd2c571f7aabcf830d7fe3a811d" +path = "static-publisher/static-content/file2106.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_rsync/03_rsync_demo02/index.html_0f391989058fb6bb62ba5c1e0f218628806b9d1af1defce0106caa30593983a0" +path = "../build/minified/site/ja/books/learning_rsync/03_rsync_demo02/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_rsync/03_rsync_demo02/index.html_br_90fc9dd5b0119d4ad18778b604217a516a57be8a4f88c5a78979478806073491" +path = "static-publisher/static-content/file2107.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_rsync/03_rsync_demo02/index.html_gzip_7c298858effd7547aa6b1f3fe0468a063c8fdc0ba9e7446c7d31d98d1f4b8663" +path = "static-publisher/static-content/file2107.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_rsync/04_rsync_configure/index.html_263b826cbd30e9c3c2cc94e1f842ba5ff40e2e0f04f2a67400f25d69ff16ecad" +path = "../build/minified/site/ja/books/learning_rsync/04_rsync_configure/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_rsync/04_rsync_configure/index.html_br_f51eafa1076185705635735970a6b9b2b36d3a35c8f2c26b8fb824ba2696f342" +path = "static-publisher/static-content/file2108.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_rsync/04_rsync_configure/index.html_gzip_34b810d3263806e7f001b68b1fe77f477afb9461c986687ec9132f9ff05093ea" +path = "static-publisher/static-content/file2108.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_rsync/05_rsync_authentication-free_login/index.html_2b1b97a599128df210565e13f41085500366f1f284ef118f0a48b5d1c9e97280" +path = "../build/minified/site/ja/books/learning_rsync/05_rsync_authentication-free_login/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_rsync/05_rsync_authentication-free_login/index.html_br_f5e9ce992d4496aac6cff3e6932f1d64fe02c21779368ecfdb6bc38349e4dd2a" +path = "static-publisher/static-content/file2109.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_rsync/05_rsync_authentication-free_login/index.html_gzip_6bb4e32c7bf1132a5d07ec94668a7a3ef8c45a065e34e72b84612d0eca11baeb" +path = "static-publisher/static-content/file2109.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_rsync/06_rsync_inotify/index.html_6309197303f57ae39ccff266066aee594391fb661eca43b189fd7f582a163a28" +path = "../build/minified/site/ja/books/learning_rsync/06_rsync_inotify/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_rsync/06_rsync_inotify/index.html_br_5fc1f587cc94e3b0dcef52d12a4540d4d566778a671a794ce76e2a99c6846f60" +path = "static-publisher/static-content/file2110.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_rsync/06_rsync_inotify/index.html_gzip_1defa61208ff28e43bcaf2781d482c8b9b92716f990f7cd1576953f1c5806a39" +path = "static-publisher/static-content/file2110.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_rsync/07_rsync_unison_use/index.html_e50cad9878d0233b93e287e2cf13e2395d4a259e72fd15b09be5003530f1b539" +path = "../build/minified/site/ja/books/learning_rsync/07_rsync_unison_use/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_rsync/07_rsync_unison_use/index.html_br_9dcb5d23971e039e83dd17b9d7a19281a5fc31fa70121cdd3aa3706bc85a50eb" +path = "static-publisher/static-content/file2111.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/learning_rsync/07_rsync_unison_use/index.html_gzip_31123f4b5fdeda217fa20de596c9a149e87b6c8b8abb3901e8f8b629f8c67bf1" +path = "static-publisher/static-content/file2111.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/licence/index.html_7dd755c8ad946982a1b1e2aa78705e54b063036ddfd271de3ab795ebe3c2dd1b" +path = "../build/minified/site/ja/books/licence/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/licence/index.html_br_ea41501926e4a7794ca0cf27390cb60bcd8c11aad43cd1ab1f463db7e05eab69" +path = "static-publisher/static-content/file2112.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/licence/index.html_gzip_929836115aec766ef1584900bb88124c767418270e122bec9501245f6f4ea671" +path = "static-publisher/static-content/file2112.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/lxd_server/00-toc/index.html_30a4bed34153558c3604d5c5d66d03436023995c337bb5e58f98f18968e1b04e" +path = "../build/minified/site/ja/books/lxd_server/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/lxd_server/00-toc/index.html_br_ff27d1b79108a37c600d8942b65de394da9c6469f58df20c885002e5a91d7cf8" +path = "static-publisher/static-content/file2113.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/lxd_server/00-toc/index.html_gzip_1e98ba3f879d404be681808582cc09d5c2cd32c5ee37d19ab8472d3ee74997b9" +path = "static-publisher/static-content/file2113.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/lxd_server/01-install/index.html_73756ebd2b24bc338723e728964ed0652b4fcda2ea448c6bf6b08ffc9c1fa995" +path = "../build/minified/site/ja/books/lxd_server/01-install/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/lxd_server/01-install/index.html_br_2cf6385fdc3faa7db51438ad4f57c94b7c2c14286b6231d398b3d3afb1ea07cc" +path = "static-publisher/static-content/file2114.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/lxd_server/01-install/index.html_gzip_614f9bbaa46f112f48f607b18a1e2ed33bc6dc4f028ad6fabf70316017b71fe8" +path = "static-publisher/static-content/file2114.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/lxd_server/02-zfs_setup/index.html_02b93a305e9c6df41488908ec0ee084dec541e600c8ef5c5d0343169e39ecd89" +path = "../build/minified/site/ja/books/lxd_server/02-zfs_setup/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/lxd_server/02-zfs_setup/index.html_br_848ccc00256a9b3a805928c3a387ebd61a74d31621eedc057de1f076b34fe8ad" +path = "static-publisher/static-content/file2115.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/lxd_server/02-zfs_setup/index.html_gzip_26a5cbd58ab857cad24beefd6cc235d7bf1953e9957005c8099aec6222c045d5" +path = "static-publisher/static-content/file2115.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/lxd_server/03-lxdinit/index.html_5ece02cd714c1e5c5d95e6e0fc505a426b9a848e80bd882879f7d922fc10d31f" +path = "../build/minified/site/ja/books/lxd_server/03-lxdinit/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/lxd_server/03-lxdinit/index.html_br_b5c9613ca8d77d18013c7555a1de49b86dac9be0faeb93acbe9578ab6bec9dcc" +path = "static-publisher/static-content/file2116.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/lxd_server/03-lxdinit/index.html_gzip_a9c0080ea22abb1e02ebecb17c2552261f9449ff114371dc084ed57e3bfdbac2" +path = "static-publisher/static-content/file2116.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/lxd_server/04-firewall/index.html_a232a5db8a4ff4f51370bd563fea92465e5418ee3d11b0f532584c6d67d215ee" +path = "../build/minified/site/ja/books/lxd_server/04-firewall/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/lxd_server/04-firewall/index.html_br_a50d3b7e31f6de48c82f96f3261bf85b89e24e477079115e5c2b23428860900b" +path = "static-publisher/static-content/file2117.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/lxd_server/04-firewall/index.html_gzip_8de4fe7d819d86ab437b4f3f7ac3c22b9b5d13f857492b4a1924ac69d092e3c6" +path = "static-publisher/static-content/file2117.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/lxd_server/05-lxd_images/index.html_94305396d1b1caf746798332c8c6b5de7a0bc937d40aabe699465f8c7acdc0e2" +path = "../build/minified/site/ja/books/lxd_server/05-lxd_images/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/lxd_server/05-lxd_images/index.html_br_b223db68cf7c147de7517d0258505fe36bfbb91f879e9dbe584da468808cafd6" +path = "static-publisher/static-content/file2118.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/lxd_server/05-lxd_images/index.html_gzip_2405b0d111dd05b7ac2c20f501b8f9d95c7a91f87db261d4bf0a48405064a482" +path = "static-publisher/static-content/file2118.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/lxd_server/06-profiles/index.html_9fd1908be56ca5c6483c5174083b52bdeb63eccdd0cfa8f1f15eb70a8f8aeafa" +path = "../build/minified/site/ja/books/lxd_server/06-profiles/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/lxd_server/06-profiles/index.html_br_cafe7929013aeb54823fbcb2b4925e3ce2a850b21877a8f0d571dab76d1acebc" +path = "static-publisher/static-content/file2119.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/lxd_server/06-profiles/index.html_gzip_ee7a760f088c8e0032d3d7d2be3bdf71cf84ef3589de32daaae46359c1c39bdd" +path = "static-publisher/static-content/file2119.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/lxd_server/07-configurations/index.html_ea529445a78307c5ee6b6f9bc9e6d19d6814a6fe5deea8568a07140abcbad8e5" +path = "../build/minified/site/ja/books/lxd_server/07-configurations/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/lxd_server/07-configurations/index.html_br_bddef7571d07ed777f96ef7d9e8c72d3f3ae430a73dedb570cda59923b831cf7" +path = "static-publisher/static-content/file2120.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/lxd_server/07-configurations/index.html_gzip_4d933308c5370ceb7f8726e5c6f7d23085666ae0639e131684ab82c95ad12f2e" +path = "static-publisher/static-content/file2120.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/lxd_server/08-snapshots/index.html_e6f2888c85fdc5f7a095b8eaa5e9172a4ef3a512c0edcfa03c11f5751a3a7384" +path = "../build/minified/site/ja/books/lxd_server/08-snapshots/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/lxd_server/08-snapshots/index.html_br_c098380e72fb54d2a7893d798f0ec1650edc48a59e5cb35425097a61a1ae77cb" +path = "static-publisher/static-content/file2121.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/lxd_server/08-snapshots/index.html_gzip_6db7b5fc7ca01ce4aba97b3d7eab635585a688fb21f7d76fd787e692b2d4bf96" +path = "static-publisher/static-content/file2121.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/lxd_server/09-snapshot_server/index.html_2896585ab2856afcac987d8f12e1b8b658a9eea27f3fb331ce044f13eac32f01" +path = "../build/minified/site/ja/books/lxd_server/09-snapshot_server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/lxd_server/09-snapshot_server/index.html_br_1fdbcb30170d35ea08a868ec553fce39414ca418c3ce404ba4b0a52e03b40da4" +path = "static-publisher/static-content/file2122.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/lxd_server/09-snapshot_server/index.html_gzip_3fbbab2e14bfa905fb34d1c01efb162d768e0a3269186d3867b5f9a0518ed37a" +path = "static-publisher/static-content/file2122.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/lxd_server/10-automating/index.html_a34ed5ef457b7d9ef7d12e29ed975f6babc699fc92f826e34486141cbd5b0efc" +path = "../build/minified/site/ja/books/lxd_server/10-automating/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/lxd_server/10-automating/index.html_br_87a74438b09b3cb7c7e18684886502495b7b5d6e0a2cc17e098217c2bdb9ed80" +path = "static-publisher/static-content/file2123.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/lxd_server/10-automating/index.html_gzip_fca2d1bd3a62896ef63e4f1a710ba34a99df1247f5945e979232c8a5f0dd4b5c" +path = "static-publisher/static-content/file2123.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/lxd_server/30-appendix_a/index.html_6a2c361d54de464d85163040d2ad6031858670de77f2985916d91829a8ff1290" +path = "../build/minified/site/ja/books/lxd_server/30-appendix_a/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/lxd_server/30-appendix_a/index.html_br_7e21f05536c3434b455740f7a5ef0d7a1f3237b26de3f32f75cc2d010dd73f24" +path = "static-publisher/static-content/file2124.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/lxd_server/30-appendix_a/index.html_gzip_f4e3a1a1a1b2c16a9251d77c7ae1f0b880a832be076f29324de56451eb92aa2c" +path = "static-publisher/static-content/file2124.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/nvchad/additional_software/index.html_6c48949703386e86becd5b584f39b130e775cac50aeb71ca5f7fb1e2bed830f5" +path = "../build/minified/site/ja/books/nvchad/additional_software/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/nvchad/additional_software/index.html_br_9d5eaa17f6cc4333c83b2402128d541767832396b91c022347a877fc9cbced52" +path = "static-publisher/static-content/file2125.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/nvchad/additional_software/index.html_gzip_e55754a502e0556e0984c5d8c426af1e2fb0eb74ae4aa8f98e6a7694843e27fd" +path = "static-publisher/static-content/file2125.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/nvchad/index.html_c44bb4ff0f286bdf4573b3d540a7081a0bd69e1fb41bfeaabe29fdecfa568a25" +path = "../build/minified/site/ja/books/nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/nvchad/index.html_br_013ef9a31e9a440bb99a68f52597fba569f2930d1e357525219f30fc22d6e6ad" +path = "static-publisher/static-content/file2126.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/nvchad/index.html_gzip_a8759b4ae0bcb62a40520dec60116af49a3ca2c9641ad85520599afc9c6d0e02" +path = "static-publisher/static-content/file2126.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/nvchad/install_nvchad/index.html_976ab0d06fc13f83b1bc34c8c8ba930618089564dd2ca378d30e704625d094c8" +path = "../build/minified/site/ja/books/nvchad/install_nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/nvchad/install_nvchad/index.html_br_da7fbaba6904908f159ff33c79c4974af18130e051ec74d12b0962c7096f1ef6" +path = "static-publisher/static-content/file2127.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/nvchad/install_nvchad/index.html_gzip_6e02dfdfa25886b4afdda8741da64ece3fdbb45ecf29d7f9896cf888fc99e808" +path = "static-publisher/static-content/file2127.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/nvchad/install_nvim/index.html_ae78aca95a9600b363a48474f9f766f0c1a8d1e94925b363acd3f48a1b07d143" +path = "../build/minified/site/ja/books/nvchad/install_nvim/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/nvchad/install_nvim/index.html_br_e71eb3ed5b55c9fc112adbec12351ef831a16885eb733e94c1d4525e95ea747e" +path = "static-publisher/static-content/file2128.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/nvchad/install_nvim/index.html_gzip_e851bc1209f5ac63150ec6800275c165eeed1a7efa5deb376492cffcc305e131" +path = "static-publisher/static-content/file2128.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/nvchad/marksman/index.html_d0e2cc0718aee9f5b4f2a44f5af83750e9aa6077f1a86dddc126f690268251b1" +path = "../build/minified/site/ja/books/nvchad/marksman/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/nvchad/marksman/index.html_br_72be613364390f031ccb9d329cef1bc881006c4a81331cfff5e0befe6f5d5a18" +path = "static-publisher/static-content/file2129.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/nvchad/marksman/index.html_gzip_0b73f32aa462045cd28f12de1ca49332de02c6fbd2b364af955f579a11c53ba9" +path = "static-publisher/static-content/file2129.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/nvchad/nerd_fonts/index.html_57d0602f73eed6dd628661741ac254fb7b9a410c47fe6f77b3d7a08afb0bd023" +path = "../build/minified/site/ja/books/nvchad/nerd_fonts/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/nvchad/nerd_fonts/index.html_br_e5614a6685baf4fca0111319254e395cc6da1c4c7696329c1fb21f6846c6b0d4" +path = "static-publisher/static-content/file2130.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/nvchad/nerd_fonts/index.html_gzip_76e94389ffbe9d451b754c120b8500131fc6bd32dad71e0b266b83d1f9ef813e" +path = "static-publisher/static-content/file2130.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/nvchad/nvchad_ui/builtin_plugins/index.html_8f0c7ce8bdbf32555f78113c8a865385fca1046a025513914104a899a4b8e8b0" +path = "../build/minified/site/ja/books/nvchad/nvchad_ui/builtin_plugins/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/nvchad/nvchad_ui/builtin_plugins/index.html_br_51f2b6dc53bf3c0bf0a38b9d3b7c56c7898a7a1eb4b4805a44bd59a5f8da5994" +path = "static-publisher/static-content/file2131.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/nvchad/nvchad_ui/builtin_plugins/index.html_gzip_1e8a955e04381cfdcf40ace307130ebf9155157e98352a93919f5b255c51a488" +path = "static-publisher/static-content/file2131.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/nvchad/nvchad_ui/nvchad_ui/index.html_835987c151e80b47453a3f3ae43ea1889164f2da5c393f893f61d41fe79722b7" +path = "../build/minified/site/ja/books/nvchad/nvchad_ui/nvchad_ui/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/nvchad/nvchad_ui/nvchad_ui/index.html_br_f98eb2f78831b75e84d67c1d109bb85e0580e67b6e135f7b279230c5c2536575" +path = "static-publisher/static-content/file2132.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/nvchad/nvchad_ui/nvchad_ui/index.html_gzip_33a283ecf67db91151c758bf7c3573c000a406930a088b1e1cae23fe54116bdb" +path = "static-publisher/static-content/file2132.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/nvchad/nvchad_ui/nvimtree/index.html_3d2a4599d2e4b829ecc9de9092748220d1ef8be7611eebaeb103a2a7698f1d6e" +path = "../build/minified/site/ja/books/nvchad/nvchad_ui/nvimtree/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/nvchad/nvchad_ui/nvimtree/index.html_br_ec0d1d627ec5e3623fe32bce78c5be9cfa5437385a6f7c9ebfb01606ea72d3ae" +path = "static-publisher/static-content/file2133.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/nvchad/nvchad_ui/nvimtree/index.html_gzip_9fb87692d665a3658af36f3977d435c5116e8949b0dddc3e3210a6ce6a72b9c6" +path = "static-publisher/static-content/file2133.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/nvchad/nvchad_ui/plugins_manager/index.html_6a4832ac1e3a81f8e64589a8ce40b68a8743895f43a765bd154164f17d58f9c0" +path = "../build/minified/site/ja/books/nvchad/nvchad_ui/plugins_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/nvchad/nvchad_ui/plugins_manager/index.html_br_9248f06c789c9e7d68ee3fa39842da0003806f019bf5d2262170957f1068f48b" +path = "static-publisher/static-content/file2134.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/nvchad/nvchad_ui/plugins_manager/index.html_gzip_40e86fdd603aac1d97845b79707be46879a5f692a175de8b75cb729abc170868" +path = "static-publisher/static-content/file2134.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/nvchad/nvchad_ui/using_nvchad/index.html_2594e82d73671204e91353dc2e046f2cc466c44028f6df346fd56401224ef158" +path = "../build/minified/site/ja/books/nvchad/nvchad_ui/using_nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/nvchad/nvchad_ui/using_nvchad/index.html_br_71ac20de5e441b39ffca99384483675fa1c4e3f6e3a1f6209dcf54f43d14966f" +path = "static-publisher/static-content/file2135.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/nvchad/nvchad_ui/using_nvchad/index.html_gzip_2e5046cbc53d0b36c81e4586272378f83db0d309d20fa54404280a825f44a709" +path = "static-publisher/static-content/file2135.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/nvchad/plugins/index.html_62694ccd8b77430a36f2f27eca2f63094eee143cde8acf5642cdcc1dbd8170d7" +path = "../build/minified/site/ja/books/nvchad/plugins/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/nvchad/plugins/index.html_br_4916b22843cd3b463b83c5ac35655f579b1bde8f99b09c86de83cfa59e8d7654" +path = "static-publisher/static-content/file2136.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/nvchad/plugins/index.html_gzip_6f203a1bcdddb7dbfecbaf6bc16c2c2659040f35b3d43a629fc290a11c7f245b" +path = "static-publisher/static-content/file2136.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/nvchad/plugins/md_preview/index.html_5b1fb4826dc2490a6bb71bc2ec3488588ecf1324ba1db3135ed7937937b0ec53" +path = "../build/minified/site/ja/books/nvchad/plugins/md_preview/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/nvchad/plugins/md_preview/index.html_br_f0b9a576b04f6b7a7c0a5200d3375dc4d3461f37a4e9090ead552b461a211957" +path = "static-publisher/static-content/file2137.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/nvchad/plugins/md_preview/index.html_gzip_f4629ab844ac79f60f930d0dd9896c8f4e68729190af10e511a9d4a15527bb31" +path = "static-publisher/static-content/file2137.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/nvchad/plugins/projectmgr/index.html_14c1a5c10bec2e40308bd1317badebc20a1c791a133493487ccb25311e348420" +path = "../build/minified/site/ja/books/nvchad/plugins/projectmgr/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/nvchad/plugins/projectmgr/index.html_br_915a81ee9b65c2eca0a66b10e07a2d6601710199d315563813ea0c1fb7cfb949" +path = "static-publisher/static-content/file2138.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/nvchad/plugins/projectmgr/index.html_gzip_95da5d47348face02ef99a51fc6b66afef5200be71f5ad59bb87ec76956ad4bf" +path = "static-publisher/static-content/file2138.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/nvchad/template_chadrc/index.html_b9f0071a302c61fd2cd1eefb30cbf3206eaad6b6064cc7c4c9ac10e42b0a8283" +path = "../build/minified/site/ja/books/nvchad/template_chadrc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/nvchad/template_chadrc/index.html_br_64b5ec2047d943ce832496ed3043e9fb54f2478662e6e3a7d818654713747a46" +path = "static-publisher/static-content/file2139.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/nvchad/template_chadrc/index.html_gzip_f255d3c74f327a99b911d268273cb985cdeeb12d28509cff9dc4bd98849b2b3d" +path = "static-publisher/static-content/file2139.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/nvchad/vale_nvchad/index.html_026402f268692a436afd3040fb2ca70111b6972cfd567f790e1a5469e833377b" +path = "../build/minified/site/ja/books/nvchad/vale_nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/nvchad/vale_nvchad/index.html_br_9cec57db58574069b4bbb08044682cc43dd0d315434dd1dd5f2eae1f55c56fe5" +path = "static-publisher/static-content/file2140.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/nvchad/vale_nvchad/index.html_gzip_ab9fbf27c02fafd561da3cb409b214d6418338c832c8071c03f4de2a293b196c" +path = "static-publisher/static-content/file2140.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html_adf7eea2b1e1555952a9464d5909ba2bdf0574e75b632ce1fa29330b64cc93b2" +path = "../build/minified/site/ja/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html_br_989f95f90a1a6037c12609ea9bd0743d6b0047f4e2c66894d755981c80226913" +path = "static-publisher/static-content/file2141.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html_gzip_9329543307c8bb009fe89cb1b1810468e970c41de6b43f0c61e77f856f607727" +path = "static-publisher/static-content/file2141.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/sed_awk_grep/2_grep_command/index.html_dce03c766c6f24528f0ef376db5c62be1d395064664f2f0430a72288f2e32c5c" +path = "../build/minified/site/ja/books/sed_awk_grep/2_grep_command/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/sed_awk_grep/2_grep_command/index.html_br_4c2b705c8212d4c8a4e1e814f7480aedb8196edaacfcbc3752b2e81aa74610cf" +path = "static-publisher/static-content/file2142.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/sed_awk_grep/2_grep_command/index.html_gzip_a47b92d5f3ee6d02724d5ed49cd7eb26e942ae95982a0845f342df8c67965d50" +path = "static-publisher/static-content/file2142.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/sed_awk_grep/3_sed_command/index.html_4d655c3a62cf4496de059ea60ca3ae6c815b3559f60718fbf3d32467c26241b2" +path = "../build/minified/site/ja/books/sed_awk_grep/3_sed_command/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/sed_awk_grep/3_sed_command/index.html_br_adf782daecefa825a4015818d35b36b45e7d4a5bd5ce9a1cbaf1e45bae9f8d75" +path = "static-publisher/static-content/file2143.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/sed_awk_grep/3_sed_command/index.html_gzip_910fb371a067ab1137d722fa27f4d9b91607e7aa674aad58221d927a2bfcc330" +path = "static-publisher/static-content/file2143.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/sed_awk_grep/4_awk_command/index.html_53d0ced44747317d99ff42ea46a3cacb6f98b40aa377a5abfa7605a52878e931" +path = "../build/minified/site/ja/books/sed_awk_grep/4_awk_command/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/sed_awk_grep/4_awk_command/index.html_br_520b6f5c3be4229b73f93ad30add58e8aa1d713f6bdb48a2b4c911f4bdaa9b3f" +path = "static-publisher/static-content/file2144.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/sed_awk_grep/4_awk_command/index.html_gzip_ef8ffc2328b3e13c7e070b235ce0ff96b4305ac4122f7019e1284ee7fa636834" +path = "static-publisher/static-content/file2144.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/sed_awk_grep/index.html_70bc6624170fe664e829a24236621bce0563e735ee8ce276003a0793f387df6e" +path = "../build/minified/site/ja/books/sed_awk_grep/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/sed_awk_grep/index.html_br_a9f6301df3b1cf2002a3a4bcbbb2a514ea56f746994f5c91e2c3e1d27b242a2b" +path = "static-publisher/static-content/file2145.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/books/sed_awk_grep/index.html_gzip_2d24aa10898405dc517a43181d208a332a5ad70043964012400df65322353448" +path = "static-publisher/static-content/file2145.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/containers/docker/index.html_4f5f439fd00762490a8949c27545e93c347f5feeec53ff5553818be510b3d452" +path = "../build/minified/site/ja/gemstones/containers/docker/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/containers/docker/index.html_br_05851ede2f8e9ff16232fd877f4196d74369cc04cb0c02a436fa6a66b7184730" +path = "static-publisher/static-content/file2146.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/containers/docker/index.html_gzip_67f4bb4637ce1bf50fb5cd9c1ad11d8387be729ee048deda6a9ebb79a4c3f038" +path = "static-publisher/static-content/file2146.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/containers/podman/index.html_597e567a69836308f44ce980a92224cba140af2e7253f76b1270611aac7f7ac9" +path = "../build/minified/site/ja/gemstones/containers/podman/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/containers/podman/index.html_br_1bb944d47c0985d629ed55209143fc5c020c443203d7fda5dc7254df3ba69a70" +path = "static-publisher/static-content/file2147.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/containers/podman/index.html_gzip_89fa834d70e5f705e24bf751a97b5c8cb567d995d57fc2b67bb54562a2bc41c4" +path = "static-publisher/static-content/file2147.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/core/view_kernel_conf/index.html_506145cdb51afc8b20a79be0d4dd097b39fc9e75e3a33d1e4da78a90556b6b33" +path = "../build/minified/site/ja/gemstones/core/view_kernel_conf/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/core/view_kernel_conf/index.html_br_378bc9ff72970f6a33c7ad1eb2e812f6fc5e57196d9992c41108746af5ccbf27" +path = "static-publisher/static-content/file2148.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/core/view_kernel_conf/index.html_gzip_aba1e37b48fdd3d117238131f1516fafe6d820eb2b4ae4bc5d71365a31adb8e2" +path = "static-publisher/static-content/file2148.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/dnf-swap/index.html_7e741fcc960c1f18c7e59b7b570152cf0707c9bf1b0b8f3f2b7d0ea5993fc639" +path = "../build/minified/site/ja/gemstones/dnf-swap/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/dnf-swap/index.html_br_d7a3df67494dd6be882d85e88a098912dc0311df9cf0c7fdc73b111bcf6e4fc6" +path = "static-publisher/static-content/file2149.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/dnf-swap/index.html_gzip_ad080b4a4f742fb1fbcc7a063b48a45791b770cc9fac7fa0751a972a4c7e8d0d" +path = "static-publisher/static-content/file2149.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/gemstone_template/index.html_188a09aed173506d36b17476544dec4ca50cbfd93253427b9eac705c5bd27b6d" +path = "../build/minified/site/ja/gemstones/gemstone_template/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/gemstone_template/index.html_br_5ef9441ccde2648ae0e9008b181835cdd2fd6b65f67be9bbc7a884de99a1db14" +path = "static-publisher/static-content/file2150.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/gemstone_template/index.html_gzip_a2435750fcc74d395a63b161d6c6204b2be9b7c2ba32c530fcbc1ea7d5589ef5" +path = "static-publisher/static-content/file2150.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/git/00-gh_cli_installation/index.html_2374a6e00a7d27cbbb9a88f3ca499c9be3b147a25b88ef8e78ff6ce0c0754cd1" +path = "../build/minified/site/ja/gemstones/git/00-gh_cli_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/git/00-gh_cli_installation/index.html_br_9bd0bd1f7dfbb9d9f6a08bf4aa7c35a5ea6206de20ade45a35e45cfc7bb51f46" +path = "static-publisher/static-content/file2151.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/git/00-gh_cli_installation/index.html_gzip_d9d35f113fd9a703e70b70f82cfb814d8994c242e83e9c9d52d1020e12b8f23a" +path = "static-publisher/static-content/file2151.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/git/01-gh_cli_1st_pr/index.html_78eb4af3bcdde2237a5a922cc07141a9f4b924edd576b5e3c87446c7d154fc91" +path = "../build/minified/site/ja/gemstones/git/01-gh_cli_1st_pr/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/git/01-gh_cli_1st_pr/index.html_br_724119334c8d8352028eb3a72d0cb39d81990d9086b66dc10738ec547ae2f833" +path = "static-publisher/static-content/file2152.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/git/01-gh_cli_1st_pr/index.html_gzip_7344ebd1240eb289423379203f4e10c7cc995d019be550b27fbe41515e9e3387" +path = "static-publisher/static-content/file2152.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/git/02-gh_cli_edit_pr_title/index.html_a7dee223c61ccfebf707b5de62fdfc7de40ddd8b63738cafc2e0c53f000cf41f" +path = "../build/minified/site/ja/gemstones/git/02-gh_cli_edit_pr_title/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/git/02-gh_cli_edit_pr_title/index.html_br_1c8fbcd7840ad28de31f54be3406faba2f6a519daf32782518f495d9aee8695c" +path = "static-publisher/static-content/file2153.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/git/02-gh_cli_edit_pr_title/index.html_gzip_9472f7d28b2d47a4ad9c0b64718faaff1b62186b00e079bac0f16133ee525d77" +path = "static-publisher/static-content/file2153.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/git/02_github_web_edit_pr_title/index.html_97e6be1bd55f1bda82d540687545dc371cfed3222b0222c51a55b23d7e6fc1fd" +path = "../build/minified/site/ja/gemstones/git/02_github_web_edit_pr_title/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/git/02_github_web_edit_pr_title/index.html_br_b812ef0ec2c76e400e731a35a4c1b01a7187125d46bb1ef124d81974f0a35ee1" +path = "static-publisher/static-content/file2154.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/git/02_github_web_edit_pr_title/index.html_gzip_061ef538392d04e8a1989a3b41d0778945a5642eefab83841d9bdf07005cba22" +path = "static-publisher/static-content/file2154.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/git/feature_branch_workflow/index.html_ca58365416f30bf4a46f51a5aefc882faa0701882668f9f0dd2f6ce5b27e78c2" +path = "../build/minified/site/ja/gemstones/git/feature_branch_workflow/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/git/feature_branch_workflow/index.html_br_011c39565569558e5bd36b4271219eed2d1ba0b622bedff81ffd71d8e2ee0979" +path = "static-publisher/static-content/file2155.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/git/feature_branch_workflow/index.html_gzip_a95a97aca40aea6305e68be8a3e69f8c97af57faa2a3da5cbf2c0a6451b9a08f" +path = "static-publisher/static-content/file2155.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/git/fork_and_branch_workflow/index.html_e5b50e8e883ef5f9a44af31d2c17d906c4d1c7ff7ec989eaa8dfdb5ed75b3c7e" +path = "../build/minified/site/ja/gemstones/git/fork_and_branch_workflow/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/git/fork_and_branch_workflow/index.html_br_4757bd1417ecdf99f191a69a5fcbbc6bdff986a07c4382827d45637467fe4ec6" +path = "static-publisher/static-content/file2156.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/git/fork_and_branch_workflow/index.html_gzip_df9081c542d75dc608e7483b58215ca1d098356bfc74d997c9c92da054b29c7f" +path = "static-publisher/static-content/file2156.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/git/git_pull_vs_git_fetch/index.html_c4659cd8075c64bb9bd3fa917b6233705083cec7cf590d260e29922933026a96" +path = "../build/minified/site/ja/gemstones/git/git_pull_vs_git_fetch/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/git/git_pull_vs_git_fetch/index.html_br_83e943aa582e66aa75a996ac073e8a84b2a6b392a425a274eeb4fab5f1ae09a3" +path = "static-publisher/static-content/file2157.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/git/git_pull_vs_git_fetch/index.html_gzip_3ee772bbc157923ba1e73504ae92866427de4494391dbed1e5d47001579b5d38" +path = "static-publisher/static-content/file2157.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/git/git_remote_add/index.html_6a33bcbd7e5562cf89308b04d0ac55dc584eb9087d42e63fdf257789dffce0d1" +path = "../build/minified/site/ja/gemstones/git/git_remote_add/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/git/git_remote_add/index.html_br_cf3ddfa7d9b0c302f07fa0b415322899958fb719e062608165cad63ff0faf337" +path = "static-publisher/static-content/file2158.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/git/git_remote_add/index.html_gzip_950fb279c8250caaa4ac5fd6c02c50b1d968ee5032ae3c4496e368ec228ea9b9" +path = "static-publisher/static-content/file2158.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/git/tracking_and_nontracking_branch/index.html_b588e3d5fc595d85a79c7144fe1250a5fad7319f160adb4cd061f0724da8bec0" +path = "../build/minified/site/ja/gemstones/git/tracking_and_nontracking_branch/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/git/tracking_and_nontracking_branch/index.html_br_47af130a297058657309c53e849a3e1776c585caa4054e53b052c0df6574d94a" +path = "static-publisher/static-content/file2159.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/git/tracking_and_nontracking_branch/index.html_gzip_fa9aa49aa51369a9bc4a3ecee8bb80b26e8dc6890a4f93c60622b2bdd9bbc4df" +path = "static-publisher/static-content/file2159.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/htop/index.html_cea94bbfc688bf7be51024be799046887498ebcb9d50f81b7036ad52676ddf06" +path = "../build/minified/site/ja/gemstones/htop/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/htop/index.html_br_ffaed24a40ae7b828383e5b7596bd69595de0edf6a6e615aa28b0f233d69fb84" +path = "static-publisher/static-content/file2160.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/htop/index.html_gzip_f555f19975ac2b394f8ad9a817369d4ac9129fd18b9775aa0594cd6d0ee52392" +path = "static-publisher/static-content/file2160.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/https_rsa_keygen/index.html_b3075113045eac33d83b2725696bdaec84d579084dfaf7b476cba5392a864b8f" +path = "../build/minified/site/ja/gemstones/https_rsa_keygen/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/https_rsa_keygen/index.html_br_778e4c98808e4ed935f7ac855b203e21550c697721d9ae74372a3986d0894913" +path = "static-publisher/static-content/file2161.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/https_rsa_keygen/index.html_gzip_c62d5b9e9d80dd3ceb031f2b286ac2fda32f2bf8931ada0776654b232f1b29d2" +path = "static-publisher/static-content/file2161.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/index.html_8a3b8a6d5cdf725b180ab496309adb6f385b30adafd83e714711d1d3fb513728" +path = "../build/minified/site/ja/gemstones/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/index.html_br_8b22d2c0a8127cf1897b5bedc53777264627e1a5086efd627c50259803279340" +path = "static-publisher/static-content/file2162.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/index.html_gzip_97aaae7d45562a2b10ff94ab33bbadef96d17ab2345be15667b29a04d71334f8" +path = "static-publisher/static-content/file2162.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/markdown-demo-v2/index.html_b646e4b6f39cab14bf65f7962453ef296db8077bcc2f5cc5abfe619f42b5af6c" +path = "../build/minified/site/ja/gemstones/markdown-demo-v2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/markdown-demo-v2/index.html_br_dac8795d8d6df98f407657641b7ed36c68d5aabace61b889c71d32d2f565697f" +path = "static-publisher/static-content/file2163.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/markdown-demo-v2/index.html_gzip_0dc7cf260bfa46936ac330282934f85962cbf8cbbae4cd1362df3f4bba47d6b3" +path = "static-publisher/static-content/file2163.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/network/RL9_network_manager/index.html_8c07aeda6051c567b9fd280959f7fa3c6566bc564a25badabdaeaffe56843862" +path = "../build/minified/site/ja/gemstones/network/RL9_network_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/network/RL9_network_manager/index.html_br_d0d3c847640ada252499c5d90dba6e5ee7f79724faa12732df5e59b8216baf5b" +path = "static-publisher/static-content/file2164.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/network/RL9_network_manager/index.html_gzip_2d5210011077ce097f213d56a705b8c0c49bd274bb008fccdd2bb339913c68bc" +path = "static-publisher/static-content/file2164.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/network/iftop/index.html_095cf546341bfa599cfe27586cd0f2129823b8b75c774a47b6bb033976876587" +path = "../build/minified/site/ja/gemstones/network/iftop/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/network/iftop/index.html_br_34a69ef414f0f4ef98bd3f8aa13ba6578296fc57de6192ba52ef3ce4c15320a4" +path = "static-publisher/static-content/file2165.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/network/iftop/index.html_gzip_487380ac3f672665f9501dc37431e54c66352298c819207f40f70422eebb71f1" +path = "static-publisher/static-content/file2165.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/network/mtr/index.html_f19874ced6cf3ff0c5740dfd55fcd02a0544cd8683e86583ce31e8cebb69a508" +path = "../build/minified/site/ja/gemstones/network/mtr/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/network/mtr/index.html_br_298ed56128cb748d68bbbd29e1ebeb6cd2b05da0826b418fd1430a750d4f5c21" +path = "static-publisher/static-content/file2166.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/network/mtr/index.html_gzip_577d963153a64e647105866aeaec9c8e23bcb66bb08cea13394ee79bcd10bae3" +path = "static-publisher/static-content/file2166.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/network/nload/index.html_6e18724d467f161a9a4dab6da83c610a97f65306ca2a2023006ee43663cb9f02" +path = "../build/minified/site/ja/gemstones/network/nload/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/network/nload/index.html_br_f329a81d1bc48844ddeb9e57885736b4ae6ab42d1b89330025b9f843efb96a0a" +path = "static-publisher/static-content/file2167.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/network/nload/index.html_gzip_c3cd8bb5ae6e4acfa7bc443f7b39149f1c7d08462ee34268fce75c020e6897f1" +path = "static-publisher/static-content/file2167.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/network/nmcli/index.html_05934a566cfaa1950afaf7b93c418cf18248357d3d42584bdea77c2ce8e641a2" +path = "../build/minified/site/ja/gemstones/network/nmcli/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/network/nmcli/index.html_br_c63c9491c769a202ed4700523cc654de4e75b1b6706865dbccf17c22d1dedefb" +path = "static-publisher/static-content/file2168.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/network/nmcli/index.html_gzip_d7507e3110c6e47c77012c010223be951440c126ded294eaef7385d17a570798" +path = "static-publisher/static-content/file2168.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/network/nmtui/index.html_fa10783278ecde14b3df1fa0fffd4b8720c2f17a48c0e27a2b26af2a7b0e9d52" +path = "../build/minified/site/ja/gemstones/network/nmtui/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/network/nmtui/index.html_br_87269c0dd163c49410d3674f079d86a32578fe95ffd3a6e621f122503fcdce71" +path = "static-publisher/static-content/file2169.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/network/nmtui/index.html_gzip_e00f4c7d85a68fffd85606bba698f816e430a55fe98a403b77b8876160484d7a" +path = "static-publisher/static-content/file2169.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/perl_search_replace/index.html_36cc2ffb5cd715554f55ef8944e4e1d6ac101ce19cf665605923f2997177d506" +path = "../build/minified/site/ja/gemstones/perl_search_replace/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/perl_search_replace/index.html_br_2f02e6d00f0305b815a50925669b4ec2bb3352c389fc5f3d6ad9999388527fce" +path = "static-publisher/static-content/file2170.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/perl_search_replace/index.html_gzip_eea2de2580e30b8ea2109abf25caea8bd3eb935429fb3122548be300040b89cb" +path = "static-publisher/static-content/file2170.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/rpaste/index.html_13a45dad94eb8a9d73e6a16e9586b180a23ba544427a9dd8358f64a5a1871506" +path = "../build/minified/site/ja/gemstones/rpaste/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/rpaste/index.html_br_37e365772ec39ebaac72dbe4636ed1d2e3e74cc43f24a81b8c917f94256834fc" +path = "static-publisher/static-content/file2171.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/rpaste/index.html_gzip_c7ab4939b2bc5ea8992c231676504e69b73c79b20ff9c5e4890acc51eeb39c98" +path = "static-publisher/static-content/file2171.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/scripts/NoSleep/index.html_5bac7928c2ff14c76e5baf387adf4c59b424b6f398358d04a666868509bda731" +path = "../build/minified/site/ja/gemstones/scripts/NoSleep/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/scripts/NoSleep/index.html_br_637235517a03c9589821ab46ce0b64c0e18bb92b933391f2188e586abc7ab45e" +path = "static-publisher/static-content/file2172.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/scripts/NoSleep/index.html_gzip_4473d3e62c3871dc5777509c209480c5a40bd7b92fe94343e3f7ce99e8c97aac" +path = "static-publisher/static-content/file2172.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/scripts/bash_stub/index.html_3e16a252b45e71bb5583fc38f43ab13c973ecce830a0e3764471f952c8706dba" +path = "../build/minified/site/ja/gemstones/scripts/bash_stub/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/scripts/bash_stub/index.html_br_01b443e4eec7b4f146a5d65a8a102d034ea325267dc8f37e05b379b21ec808a5" +path = "static-publisher/static-content/file2173.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/scripts/bash_stub/index.html_gzip_652242a2ae9f1698bedb9e45b8eae7102830874f86d1ec85474485c7cb1b0470" +path = "static-publisher/static-content/file2173.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/sed_search_replace/index.html_4b01705f01980ecaead84ad354c22766b57f066a969127d5e445124aeb624004" +path = "../build/minified/site/ja/gemstones/sed_search_replace/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/sed_search_replace/index.html_br_9b349ec19c6e9a5749ebc0fb75f98a8e057d7432f40cb564fb414a919fea2fc3" +path = "static-publisher/static-content/file2174.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/sed_search_replace/index.html_gzip_e8cff6fccc3197428563f197f560e3b5a8e4b8707595ca467e6636636bf6fce1" +path = "static-publisher/static-content/file2174.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/setup_local_repo/index.html_5b3ff38632fdce48b3280c90da31ff9b3b9b6c579decb4b308e7f966c4e1a9df" +path = "../build/minified/site/ja/gemstones/setup_local_repo/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/setup_local_repo/index.html_br_e1167b690f7bb2b0c9fee9c9fab9eb38899683f35922f10a4b9beae3d31ee45b" +path = "static-publisher/static-content/file2175.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/setup_local_repo/index.html_gzip_ed0f66e24689dfd8fd887cba4766f0915779dac3a3623c3eb08bb1ee72d54594" +path = "static-publisher/static-content/file2175.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/string_color/index.html_0b07c73633b2176778a87fed3d1b87a168c5f5ff137ebc27ae1c1bb34f516b43" +path = "../build/minified/site/ja/gemstones/string_color/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/string_color/index.html_br_7c53ee3690272e980442ccaf85f2e56ae48b316e53b912c64a8ed77d2b4e2e6a" +path = "static-publisher/static-content/file2176.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/string_color/index.html_gzip_d2205fada885fa290c0ac763ba5e80041a86a6e332308aedb8d8f42b17987d04" +path = "static-publisher/static-content/file2176.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/systemd_service_for_python_script/index.html_1199e05f5135c69f2f3089a05d9b1f7cc1fe3a2b96a2d0e1871f2127a3832e25" +path = "../build/minified/site/ja/gemstones/systemd_service_for_python_script/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/systemd_service_for_python_script/index.html_br_fb85100df28b732cd61a09e66ac33ffaf6cc3940d6cb16fb8595e4c2fee52432" +path = "static-publisher/static-content/file2177.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/systemd_service_for_python_script/index.html_gzip_3249d36ce5cfdd096e596225cd307b48a7ea5e8c3bb4e4e2d6d9d099d4de8ade" +path = "static-publisher/static-content/file2177.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/test_cpu_compat/index.html_f94850f990c4f09702057c2e59f1792984a1c8b937ca119bc1304935b9962789" +path = "../build/minified/site/ja/gemstones/test_cpu_compat/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/test_cpu_compat/index.html_br_dc1bc8627802036fce6c8fdf670c97186596974bab920d90e3dac712340aeb2b" +path = "static-publisher/static-content/file2178.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/test_cpu_compat/index.html_gzip_d971e89d0a24afc6321362b52b5115b4154ab4d618bc952ea941a7bca3696340" +path = "static-publisher/static-content/file2178.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/torsocks/index.html_38f87ee31beb4288c6d6ddb6c4fab1fcd11e49f505177538a6c9f53616728dd8" +path = "../build/minified/site/ja/gemstones/torsocks/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/torsocks/index.html_br_5709e7bf0c5861bf5d53e12bb7e6899b1cdd8b10e4a669d5e7b634905e92de10" +path = "static-publisher/static-content/file2179.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/gemstones/torsocks/index.html_gzip_ff489825aaaab630bc45554887d6cddf303bdb15ce402bf33a969a6de6d7f225" +path = "static-publisher/static-content/file2179.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/8_6_installation/index.html_b785e92076275610c7afaa046092734c9f95e976c599a218c04530fefe78c9fc" +path = "../build/minified/site/ja/guides/8_6_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/8_6_installation/index.html_br_a708c2c51872783c7e73fa401eca5d2400964ac80331d4a0f0ca4d31da65a454" +path = "static-publisher/static-content/file2180.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/8_6_installation/index.html_gzip_4621d53f6058c4977a2d75b2faf0309d8e4368f496ab8d77b8589b357cade1da" +path = "static-publisher/static-content/file2180.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/automation/anacron/index.html_b93debe2c46cc8d5b4acd416a928889e167da9c03e22ea1fb60ac9a93f5f3e45" +path = "../build/minified/site/ja/guides/automation/anacron/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/automation/anacron/index.html_br_b0cb571ce62f283a0b977d4a8e9c4ca0b493b041faa80c6bfe9e1a1bc0d739e0" +path = "static-publisher/static-content/file2181.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/automation/anacron/index.html_gzip_4763d998b2d978e90a25b859563a8ce8a541ad28f23c27c67649a4bd4b51c78f" +path = "static-publisher/static-content/file2181.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/automation/cron_jobs_howto/index.html_8402966a6150e27fedb2a7038598dc1599a79855bf2d105c8b9b55ce85268021" +path = "../build/minified/site/ja/guides/automation/cron_jobs_howto/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/automation/cron_jobs_howto/index.html_br_19fb95b6ba87f9c36ee70ca3f947709c9374732ad58556ea79411f497a632baa" +path = "static-publisher/static-content/file2182.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/automation/cron_jobs_howto/index.html_gzip_768eb88c149bef382213947d3ca2dd02568dd08913327270d66b172d7819c2c5" +path = "static-publisher/static-content/file2182.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/automation/cronie/index.html_7a51a3de3820a52952ef67ad17c8ffea15399324758df928a155491ae00d71c9" +path = "../build/minified/site/ja/guides/automation/cronie/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/automation/cronie/index.html_br_e8f12fef8c38cab1489a0169afc11a268cda36910d757044dc41212303811e98" +path = "static-publisher/static-content/file2183.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/automation/cronie/index.html_gzip_2d5e15f84d669accd88e5839f0597598e033805f83b2bc37c1092293a5869d23" +path = "static-publisher/static-content/file2183.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/automation/olivetin/index.html_03fae14350273bf835fbedec912ee1cc834b597845f1f4e323ac653c6f6564a5" +path = "../build/minified/site/ja/guides/automation/olivetin/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/automation/olivetin/index.html_br_8574651e3070e598c333c25493d8e524cada000f886f2ca6484c8d4b365f1b55" +path = "static-publisher/static-content/file2184.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/automation/olivetin/index.html_gzip_00a04cda38c475901fd26736faf6b661f5087c3e7a273a68798c45d8771a1119" +path = "static-publisher/static-content/file2184.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/automation/templates-automation-packer-vsphere/index.html_4d22cac92864bb21cf738130458ccaf0e07389cfed8bb35c9d58b437ba65e958" +path = "../build/minified/site/ja/guides/automation/templates-automation-packer-vsphere/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/automation/templates-automation-packer-vsphere/index.html_br_a8d17e80093fa0c6b0b7a702df898330e6ffd96e0ac83ab34ce31f07c4c5018a" +path = "static-publisher/static-content/file2185.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/automation/templates-automation-packer-vsphere/index.html_gzip_35ba4b03522d82d5e3349557a387928f7da298f510b5d072e26bffecc1f85773" +path = "static-publisher/static-content/file2185.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/backup/mirroring_lsyncd/index.html_cf7915088d3d8e96338ddd6ccd3cb3860d23a009db18a9b96bcbfe676c7d452f" +path = "../build/minified/site/ja/guides/backup/mirroring_lsyncd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/backup/mirroring_lsyncd/index.html_br_d0c245a540a41d307cfb6ed77ba8bda55cbeff1c3226e4f325c6ea91b76d8e70" +path = "static-publisher/static-content/file2186.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/backup/mirroring_lsyncd/index.html_gzip_8d17bebc87b39c5d5bbf8972436c1f86e85ea0f78f40b047afbb2f88a6693378" +path = "static-publisher/static-content/file2186.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/backup/rsnapshot_backup/index.html_f5c5761873ed38cac58202ab6f03d2d039d9e5914f207d409b1807c3d3f359ed" +path = "../build/minified/site/ja/guides/backup/rsnapshot_backup/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/backup/rsnapshot_backup/index.html_br_a25083713b772887b8c1e4961f080f722f1ca288b83bd775200f35455f0cacf1" +path = "static-publisher/static-content/file2187.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/backup/rsnapshot_backup/index.html_gzip_d8ec0558de44b6499bcc79fff6cb09f6769d62165955d9ba8fb07613243d1eb7" +path = "static-publisher/static-content/file2187.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/backup/rsync_ssh/index.html_4c24e3b483995639175fda1072188a470bdb5b7fd9dae094badff01b4bd8f653" +path = "../build/minified/site/ja/guides/backup/rsync_ssh/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/backup/rsync_ssh/index.html_br_35fff4c6915dada15ba41e972d65df55038be0f3441f6dd124d4cf4194c069e4" +path = "static-publisher/static-content/file2188.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/backup/rsync_ssh/index.html_gzip_47f0745094ec3018a587cacd0942bbc0b4c844c4d7dd84aca7c05772edda4f3e" +path = "static-publisher/static-content/file2188.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/cms/cloud_server_using_nextcloud/index.html_ae1c278f5697cce0d4c578b9d70cfab87b21d825a154a611af196039278247af" +path = "../build/minified/site/ja/guides/cms/cloud_server_using_nextcloud/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/cms/cloud_server_using_nextcloud/index.html_br_04b1ba9e5c1a421368a15b660c72a970e9268e68c95b34c9a6440672cecc388a" +path = "static-publisher/static-content/file2189.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/cms/cloud_server_using_nextcloud/index.html_gzip_deda0df7d74dd4b187f1c6b25b1fc338d20c3f20933ccdc92f5a747971e8200b" +path = "static-publisher/static-content/file2189.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/cms/dokuwiki_server/index.html_5c2e723f8ffa8eb3e127d39f43902b8cdda7b0d0a470ef3bda13cb59a7b88969" +path = "../build/minified/site/ja/guides/cms/dokuwiki_server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/cms/dokuwiki_server/index.html_br_543d66ed5fd8369b1a51640bccf396c50cbdcbf6157a3707c04f837f523e5de3" +path = "static-publisher/static-content/file2190.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/cms/dokuwiki_server/index.html_gzip_90605336949dd4a886ba7ae3318902e096ed3d1d19b4a6be365ed0823638d244" +path = "static-publisher/static-content/file2190.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/communications/asterisk_installation/index.html_0dfa89640144aeae997cbe55b202fec4ca859983ada16b5474da8f80584fedc2" +path = "../build/minified/site/ja/guides/communications/asterisk_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/communications/asterisk_installation/index.html_br_d90b5237bc3f75d1a6f7ddcb94e37adc42572cc0cdedfb140377d11c369a51b0" +path = "static-publisher/static-content/file2191.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/communications/asterisk_installation/index.html_gzip_e387dd0bc7514b52269015448cc70a3deb913d8c48f9fcee2274bb9e5645f4ff" +path = "static-publisher/static-content/file2191.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/containers/lxd_web_servers/index.html_b606c6345ec547475366299fc95cad67187f1c9373699d32391d717c1cea96c5" +path = "../build/minified/site/ja/guides/containers/lxd_web_servers/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/containers/lxd_web_servers/index.html_br_56ca3328c38f55b0dc2e88bfddc5cbf91282b6d16fb512b21d7dee03c5e3ce08" +path = "static-publisher/static-content/file2192.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/containers/lxd_web_servers/index.html_gzip_1d2b39762ddaa0f45879a47bcc9b21d0dd9c4654b2e1db988a9085d76093a1a8" +path = "static-publisher/static-content/file2192.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/containers/podman-nextcloud/index.html_2e222a22947532f2f558d66b2d71e01b260fb5e4e0eb7ac6363fd0db24a93274" +path = "../build/minified/site/ja/guides/containers/podman-nextcloud/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/containers/podman-nextcloud/index.html_br_f3ca186303a18b5a2cd67db33b1a324efc449232ea54a7554cdd60cc5f20fc40" +path = "static-publisher/static-content/file2193.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/containers/podman-nextcloud/index.html_gzip_67c3db30bbfb983b733cc27145eeaa278cc086f4ac0519abff4ec7bd90f0a478" +path = "static-publisher/static-content/file2193.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/containers/rancher_and_kubernetes/index.html_75dcbe6ece0522c5fd7ed7a0de12f700be9bfed43a196b7b8e1a17506190130f" +path = "../build/minified/site/ja/guides/containers/rancher_and_kubernetes/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/containers/rancher_and_kubernetes/index.html_br_92d38d8989554471678ed5f220957741c86b43ff15432b27caa59c6dc1ba8b67" +path = "static-publisher/static-content/file2194.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/containers/rancher_and_kubernetes/index.html_gzip_fbad28b91639fc38c5cf45724cf58aa7417432092692e578b9f30fbb1b042012" +path = "static-publisher/static-content/file2194.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/contribute/beginners/index.html_88e616e2807e5ad4720c5924cf606b0c956b2820c5a51c47bd855c6792b719e9" +path = "../build/minified/site/ja/guides/contribute/beginners/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/contribute/beginners/index.html_br_b44e5ea2bdf10830a563544dd98172a5573d318bf690da2676a9fa0eee8c0aff" +path = "static-publisher/static-content/file2195.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/contribute/beginners/index.html_gzip_a44e9e9849497340dbcefe14e9e9e873b2025d8148fa14522710832900c58e0c" +path = "static-publisher/static-content/file2195.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/contribute/createnew/index.html_6ff3eaff328e9a8f20b0218f85c2907483eee8021682814925a5079b0bc930d3" +path = "../build/minified/site/ja/guides/contribute/createnew/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/contribute/createnew/index.html_br_7c4d7820698d0c4be4f5d66e6d95fab0ffeb42f225a4f85b9ec98b3615a24fbc" +path = "static-publisher/static-content/file2196.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/contribute/createnew/index.html_gzip_2d0acc6adc3e71f74d93e2c8728ccbc9bbf439f1005a3fb27b53f4a25602371a" +path = "static-publisher/static-content/file2196.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/contribute/index.html_209ec4ba56004e56e900210679e2c8f08b27f8fe2f55b770eecb4a37380f7e1e" +path = "../build/minified/site/ja/guides/contribute/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/contribute/index.html_br_15b2513f7b60f7d7a40624219ed742971ed57eeb4f10696cc320989ef94091c0" +path = "static-publisher/static-content/file2197.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/contribute/index.html_gzip_c91c3b8720d88a20c68b525ba9a31fae3d92488c6644ba5ec9e8ca78c517e4a4" +path = "static-publisher/static-content/file2197.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/contribute/localdocs/index.html_b8f48063d1229157c84a5b735e36cfcca972d4192d4a2e72c409094047f125da" +path = "../build/minified/site/ja/guides/contribute/localdocs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/contribute/localdocs/index.html_br_0594137866cd13bcae414043673815e6eba62ea554455bc0da39f6896e6f99e3" +path = "static-publisher/static-content/file2198.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/contribute/localdocs/index.html_gzip_3624d23b0fa7cf674bbf3d27a2dd8e3724dd41886c6fb39ddf0836f3c2d2e85b" +path = "static-publisher/static-content/file2198.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/contribute/localdocs/local_docs/index.html_54b10ba7d0cc60236f049e9a59c263b3f613c9fdbeaaebf7f2c9bad3ec82d88c" +path = "../build/minified/site/ja/guides/contribute/localdocs/local_docs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/contribute/localdocs/local_docs/index.html_br_25037d5b74e3327d28123614017ea06d1c8df4aff19581cf4096e8f1f6068872" +path = "static-publisher/static-content/file2199.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/contribute/localdocs/local_docs/index.html_gzip_b348ce8df98adb15913adddc821f37bfc9b2b791f980ec0f9ed29ca13ca99007" +path = "static-publisher/static-content/file2199.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/contribute/localdocs/mkdocs_lsyncd/index.html_bbfcb521ffd836323a401fcd2ad8c29cdf2e2e7b41f6195caecca77d68416a9e" +path = "../build/minified/site/ja/guides/contribute/localdocs/mkdocs_lsyncd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/contribute/localdocs/mkdocs_lsyncd/index.html_br_39892fc561cade9d9926c1388fe9293783246543542d3b9bfe31cd0093d7298b" +path = "static-publisher/static-content/file2200.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/contribute/localdocs/mkdocs_lsyncd/index.html_gzip_c39892bcc84886c59d60d9f1757af528115aef33e665209af6f1624bc30e06d9" +path = "static-publisher/static-content/file2200.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/contribute/localdocs/mkdocs_venv/index.html_f5b07b5adfffb7a319f2ede1b8f2148917a8887e9ae22b8dbdcbadf1f07814b0" +path = "../build/minified/site/ja/guides/contribute/localdocs/mkdocs_venv/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/contribute/localdocs/mkdocs_venv/index.html_br_6f01b0c42c54890eda560678a49c398e66511f13438194ce1c52abb4f2abe715" +path = "static-publisher/static-content/file2201.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/contribute/localdocs/mkdocs_venv/index.html_gzip_8595fb905f48b4d3953554c251663a70706f3d21b73c658de834dcd3dc910a12" +path = "static-publisher/static-content/file2201.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/contribute/localdocs/rockydocs_web_dev/index.html_6b57cfb35c29bed7631d15438a602bd408aef738e4f4aa5fe70612db982b7e2f" +path = "../build/minified/site/ja/guides/contribute/localdocs/rockydocs_web_dev/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/contribute/localdocs/rockydocs_web_dev/index.html_br_44d125bbf6af94acc8169d1d74afb30344ea2d86dc754bae6eb3c4d3a468b1f8" +path = "static-publisher/static-content/file2202.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/contribute/localdocs/rockydocs_web_dev/index.html_gzip_7fdfd5ee558e7f046cf342c31a239166cb894f2afd98c83b6af3ff898f04c357" +path = "static-publisher/static-content/file2202.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/contribute/localdocs/rockydocs_webdev_v2/index.html_bc3a810ecc2b579708911b14a51480d7e1f7dcf58159d7c845ed0c0fa47f56cb" +path = "../build/minified/site/ja/guides/contribute/localdocs/rockydocs_webdev_v2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/contribute/localdocs/rockydocs_webdev_v2/index.html_br_150859ea7c52d9a3c9865fd6973f66fee494f3b1f5abcf72277a2e76af2503e2" +path = "static-publisher/static-content/file2203.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/contribute/localdocs/rockydocs_webdev_v2/index.html_gzip_e479f2da250a91daab5b64cddf1df49902e5426eeb1543b45bf4726b35fbb7f3" +path = "static-publisher/static-content/file2203.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/contribute/navigation/index.html_b413ee3bb77a7b96a0166cf436fc1a113905b5f878e301937f72db5c0bfbfd2f" +path = "../build/minified/site/ja/guides/contribute/navigation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/contribute/navigation/index.html_br_277b05e0f5b020dde9d9e31e12e510572d86a533ee3b2e27eb7f68bc739a7612" +path = "static-publisher/static-content/file2204.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/contribute/navigation/index.html_gzip_e76d557ca489c6f8b2d328ec704063a71b38ec4cd7214e6867f417fc423d8a77" +path = "static-publisher/static-content/file2204.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/contribute/rockydocs_formatting/index.html_0bc544957bb5c2f796bc8b26251159c6ac27c8a36eb96bdff85ee267ec0d2fee" +path = "../build/minified/site/ja/guides/contribute/rockydocs_formatting/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/contribute/rockydocs_formatting/index.html_br_994905ac5ec55651c75125ae829449c718a38d12f746d6ce5507b3fb951a3496" +path = "static-publisher/static-content/file2205.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/contribute/rockydocs_formatting/index.html_gzip_eff724c17e6df377b83539e315612cb50c882779da99487f3b7f5c83a406960e" +path = "static-publisher/static-content/file2205.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/contribute/style_guide/index.html_7b4b76c345333cce9ea22042caab0db8acd614eef2670787c763fa508a202d82" +path = "../build/minified/site/ja/guides/contribute/style_guide/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/contribute/style_guide/index.html_br_f67b3a614be9bcdd9c10f3483e42b4ca8a469613fa59e8ec159cef0eb7fe4090" +path = "static-publisher/static-content/file2206.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/contribute/style_guide/index.html_gzip_e973143bd6315a46ae8b28e9e07125e78db411d217ba0a7f213003167294aacc" +path = "static-publisher/static-content/file2206.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/custom-linux-kernel/index.html_5ee484880e5d8d095b91b18371af367e075b885b196af39faf43a85807e71d2c" +path = "../build/minified/site/ja/guides/custom-linux-kernel/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/custom-linux-kernel/index.html_br_efdcb18d6480329cc3c6a642128a3972ca297dd2e88746e14f32f720a0dc0f49" +path = "static-publisher/static-content/file2207.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/custom-linux-kernel/index.html_gzip_d342d7c7798d27341daca3926fe6a6b2b5dae70ee47e70661b6f6658819e6a2b" +path = "static-publisher/static-content/file2207.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/database/database_mariadb-server/index.html_e087b5295680e21e099cbffac08ad08d90e2682d6e9e300385db5e3e2598cbfe" +path = "../build/minified/site/ja/guides/database/database_mariadb-server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/database/database_mariadb-server/index.html_br_80e38edad8cc8071abd6707d2ea63c5d61aeba79786a917687aed84535ae01b1" +path = "static-publisher/static-content/file2208.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/database/database_mariadb-server/index.html_gzip_d871c841f25e67d76b55d80cd75d84c9293c9df822aa35243e179f3a9ab0d916" +path = "static-publisher/static-content/file2208.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/desktop/kde_installation/index.html_8fcb4a15a4d6f53ec20fa52e6a84adb7f2ce7d2d8704c5647491eea718ce9b2d" +path = "../build/minified/site/ja/guides/desktop/kde_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/desktop/kde_installation/index.html_br_079664cd1a6bb5785e91507c2f98ca9b225af9a8ebfe64c71b2030f8fd1205e0" +path = "static-publisher/static-content/file2209.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/desktop/kde_installation/index.html_gzip_efc229d412a5e0600543684a6ae54bc78bb11b73cfef00cf0f41060a0386e750" +path = "static-publisher/static-content/file2209.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/desktop/mate_installation/index.html_d83f11875b95fc4f48602bdc1e37fea6a0da45bc2dd10cf0f026a3c35bdc1704" +path = "../build/minified/site/ja/guides/desktop/mate_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/desktop/mate_installation/index.html_br_dab13c85aebd7ee39e1d9c759ecf97fca859681e441b6f6cf640f0e8765035fb" +path = "static-publisher/static-content/file2210.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/desktop/mate_installation/index.html_gzip_0818fc402531d771e0a43211e66ae3031c31a7d8eaf38cf8231b60365814ff78" +path = "static-publisher/static-content/file2210.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/desktop/xfce_installation/index.html_a193f4602f5a9d98e1d73dd9b3ec8244ae43cb905d0ee0d2626d59250e608d33" +path = "../build/minified/site/ja/guides/desktop/xfce_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/desktop/xfce_installation/index.html_br_816a08357e46f83e16558079009ff413a7cf350a6606ca40fa9d95ef51aed2f1" +path = "static-publisher/static-content/file2211.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/desktop/xfce_installation/index.html_gzip_479985b702ac3bfd68edd38b2738827f6fab378723175f43903c3eafe24dcc20" +path = "static-publisher/static-content/file2211.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/dns/private_dns_server_using_bind/index.html_85b690ee315466bfd24ab2a992e3194f89dfd36c3a69bcf53a29c0a708f376c9" +path = "../build/minified/site/ja/guides/dns/private_dns_server_using_bind/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/dns/private_dns_server_using_bind/index.html_br_204e6ff917656694158fe62bc1d45c655e1dbd7eaf06a7c0d25a424119db8fb5" +path = "static-publisher/static-content/file2212.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/dns/private_dns_server_using_bind/index.html_gzip_da44f4dfdefd1c27a1f80fa018c15a3864b2971054c8736c17037437a8869c2d" +path = "static-publisher/static-content/file2212.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/editors/micro/index.html_6ab3518cd64e2a544a37bbbbaf3e18985d1f59eb707bd765af0db43c5eb0a0d1" +path = "../build/minified/site/ja/guides/editors/micro/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/editors/micro/index.html_br_8de53f54fcc0dbead0cb9ce30ae344f18a4b3f92bd3a73650b4b6c951349d9d2" +path = "static-publisher/static-content/file2213.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/editors/micro/index.html_gzip_e3bf614e967098ab7b3ef14ff610fca0edc65a8e22fa34563c61ce852bbc9b3b" +path = "static-publisher/static-content/file2213.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/email/01-email-system/index.html_fd1cbcf0e3335f03550bc654f514dc4cf97cbad38d24f78ec715b598a33399a5" +path = "../build/minified/site/ja/guides/email/01-email-system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/email/01-email-system/index.html_br_da91796c5b85977e9c38f4acd00f12e2d9ae92d2a8ec79f0bc260489a334467c" +path = "static-publisher/static-content/file2214.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/email/01-email-system/index.html_gzip_d4c8ef07a11afff637ec76d69bf4ea4111b3c210a64ac124a54ada65cbcd75df" +path = "static-publisher/static-content/file2214.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/email/02-basic-email-system/index.html_54ba8123ce704649ebf9ed583fcd0abcc625095eb3fb8c12c7b130db950a7fe9" +path = "../build/minified/site/ja/guides/email/02-basic-email-system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/email/02-basic-email-system/index.html_br_aebf126a2f3b07d95aa7bc2f37b5fd76a7ca84b2cb7eab91f7cb159475c8a293" +path = "static-publisher/static-content/file2215.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/email/02-basic-email-system/index.html_gzip_98541abfd88e316fa5facdde8eb18f5a11ca6dedc865e385bdc7f4621f1a7563" +path = "static-publisher/static-content/file2215.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/email/postfix_reporting/index.html_5f2fcb4785b6eaf139985d440d4024a2587c4991bc36d4354b2c8683a2abbc78" +path = "../build/minified/site/ja/guides/email/postfix_reporting/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/email/postfix_reporting/index.html_br_30a322d9ff0cd6c1b9d96c0ac207852c12a979db8eddb713715b4f79f4595b4e" +path = "static-publisher/static-content/file2216.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/email/postfix_reporting/index.html_gzip_6fa1674242b30ab3052b3b63577366f7d2d4b3d0cd0b4f10245ff39d89ba272b" +path = "static-publisher/static-content/file2216.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/file_sharing/glusterfs/index.html_edcf79f397e8353e5e779f799e64f172afd0da271a3b5d0e6e22597eb47df12a" +path = "../build/minified/site/ja/guides/file_sharing/glusterfs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/file_sharing/glusterfs/index.html_br_05040c1c229e72ef7029e06604dc0bff496f661c7c9335c2c1d889efd43cc3e7" +path = "static-publisher/static-content/file2217.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/file_sharing/glusterfs/index.html_gzip_5b1cb3c92978e420af9fa77680a5e5b7da9178e5e7885c94ab41b0a5142001cf" +path = "static-publisher/static-content/file2217.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/file_sharing/nfsserver/index.html_0c3c77fb608dfb8af27a7ca19e40586a96edbbd350fda577dd29a28e8117023d" +path = "../build/minified/site/ja/guides/file_sharing/nfsserver/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/file_sharing/nfsserver/index.html_br_9419a6f71b286fc19378b7916ed48cb5cfd43bb846c424bddee5cbad5e44a8f1" +path = "static-publisher/static-content/file2218.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/file_sharing/nfsserver/index.html_gzip_4bf457b9aa9fbf83b4ebcce4a123ebba229fa8a431d132cee9fe1179611e539f" +path = "static-publisher/static-content/file2218.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/file_sharing/secure_ftp_server_vsftpd/index.html_1d479ca3f818594e84d7ec211afd12686ebc411fd102f8fa0549404253a5e1ec" +path = "../build/minified/site/ja/guides/file_sharing/secure_ftp_server_vsftpd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/file_sharing/secure_ftp_server_vsftpd/index.html_br_58d8fff0f01b7a496f086f0ddcb03f427bd65edf5dfb75d37b7e430e7656bbba" +path = "static-publisher/static-content/file2219.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/file_sharing/secure_ftp_server_vsftpd/index.html_gzip_1edac26ae4ce50a26a17907ea40520bb4154ced825736314d1c3dc545886e2fc" +path = "static-publisher/static-content/file2219.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/file_sharing/sftp/index.html_8751add48d697bcb439a09da50ec547ed14fd6155cc2320a1a70e328379c5b6d" +path = "../build/minified/site/ja/guides/file_sharing/sftp/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/file_sharing/sftp/index.html_br_0cdbf4d132653264e468910901ab3fa13918e65bd26115263549ea47a4ad4c45" +path = "static-publisher/static-content/file2220.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/file_sharing/sftp/index.html_gzip_55fd22412eb7abf0f8c262073faa08f2d225573f2510a7c9a0978c374015220a" +path = "static-publisher/static-content/file2220.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/index.html_9e05eb850fc224631f26fff224dec9b443f32ccd76167782605e3c9feab44f0f" +path = "../build/minified/site/ja/guides/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/index.html_br_951b552a9ad0d70271b4ae92f482aba8df5010d45dd484a1b64f2768d13384a5" +path = "static-publisher/static-content/file2221.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/index.html_gzip_92126a3febf7661dbde54d1d4dcfc865eb052aed2d81d9d5ba5427ae430ebe9b" +path = "static-publisher/static-content/file2221.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/installation/index.html_66ad878254236e8ed0b3d7f239e91c9ab4d3444d95dfae6fd0838fb5dae11336" +path = "../build/minified/site/ja/guides/installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/installation/index.html_br_58d54fc709be078a6df44a0276ffe72b1bbb74cf1ae2e35788c0b5c6075a7bbd" +path = "static-publisher/static-content/file2222.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/installation/index.html_gzip_34a9cad2c8bddd327d19b1c9e44e9371bc4425517ae991966babeab71c24f62c" +path = "static-publisher/static-content/file2222.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/interoperability/import_rocky_to_wsl/index.html_b53a7179f0f4f4beb7bc709c87fdac2f7bd2986b349044328099d528e56d0066" +path = "../build/minified/site/ja/guides/interoperability/import_rocky_to_wsl/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/interoperability/import_rocky_to_wsl/index.html_br_1723bfb64a27103d04efce321a54f1378cfbcf75c2fc5358dd14906b46c7574d" +path = "static-publisher/static-content/file2223.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/interoperability/import_rocky_to_wsl/index.html_gzip_b37db1b84f64a260e9c661f8dce467c804989df240022c1a05d877c62b636837" +path = "static-publisher/static-content/file2223.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/migrate2rocky/index.html_81abd7b7d35572140045dddbf0edb185ee84a534b50488a8aab12a8d83abf619" +path = "../build/minified/site/ja/guides/migrate2rocky/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/migrate2rocky/index.html_br_5703a173d8a7362b12f3d95a2d477d4720da3172c20cc6cb0cdd1edc48321fcc" +path = "static-publisher/static-content/file2224.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/migrate2rocky/index.html_gzip_6bf1e5a993f06167e3bf667d98d94518133a56cdd1497bfceb04ed0e6d48c3a6" +path = "static-publisher/static-content/file2224.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/mirror_management/add_mirror_manager/index.html_6280a1e51a28bca7fca912d1f8df53d960ec747d866079cb1ebe55991e6d5044" +path = "../build/minified/site/ja/guides/mirror_management/add_mirror_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/mirror_management/add_mirror_manager/index.html_br_1007aa19c38be2df6025224450727433c9fdf18bf2d3f6bd59dec860a67b55d8" +path = "static-publisher/static-content/file2225.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/mirror_management/add_mirror_manager/index.html_gzip_a62882264e9b7d6b6a332355a0a1fb34e26860c7f30ede8c9aff5d0c30116eb3" +path = "static-publisher/static-content/file2225.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/network/basic_network_configuration/index.html_75e586029ee9a8963bda257ac0eee269f718a6f997e9ffbbb5a893f4da72a580" +path = "../build/minified/site/ja/guides/network/basic_network_configuration/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/network/basic_network_configuration/index.html_br_886e4b005e788eecfc8ae916224b16ae49cbade4c0e4aaa70e832c16d3561a2f" +path = "static-publisher/static-content/file2226.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/network/basic_network_configuration/index.html_gzip_f644c13af511eaea87e21f896b5a7514be3bd1a7ea994267490dd2a59e534c7d" +path = "static-publisher/static-content/file2226.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/network/librenms_monitoring_server/index.html_eec9cabc27a29fc52ad35e47be5daab0bd34ca497155a75ecbbf245d19e58ddb" +path = "../build/minified/site/ja/guides/network/librenms_monitoring_server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/network/librenms_monitoring_server/index.html_br_f4015ae77b2eb8612bdf3710abb874d7d835246d74e8f62eda44c708b4de9944" +path = "static-publisher/static-content/file2227.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/network/librenms_monitoring_server/index.html_gzip_dc4ec3ca7a43088e7669044883de0ff9ce4be3b6ee5f6494cea180041cbc45c1" +path = "static-publisher/static-content/file2227.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/package_management/dnf_package_manager/index.html_743479bb37c223f88d3a751d2882e200410711a4434a5e7ad2b7acc4358f1848" +path = "../build/minified/site/ja/guides/package_management/dnf_package_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/package_management/dnf_package_manager/index.html_br_c0b0b7cb08be5b1e71ba4290c024f6f6cdd707bc05993eac1c8ebc8306dea271" +path = "static-publisher/static-content/file2228.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/package_management/dnf_package_manager/index.html_gzip_dfeb4edd7b8fd0648487e6e0e04de30f49af377585809951ab89f900ee56f441" +path = "static-publisher/static-content/file2228.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/package_management/index.html_5820fef8d06a8ed1cd83d1b92f5547fe277c4afc33aefb05e0b54b9108bd7043" +path = "../build/minified/site/ja/guides/package_management/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/package_management/index.html_br_71819f493dce7e559ef5542ee98cac25ffaac090857ec743eb46963d735ebdda" +path = "static-publisher/static-content/file2229.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/package_management/index.html_gzip_1e461fb201bc378286dc77331e6448bc0e0ab14255e4e325717458635da1ed8d" +path = "static-publisher/static-content/file2229.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/package_management/package_build_troubleshooting/index.html_6de0e91a0217f88086780c7065d0c7fa3b83d58e981b7077f518790a3cd69962" +path = "../build/minified/site/ja/guides/package_management/package_build_troubleshooting/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/package_management/package_build_troubleshooting/index.html_br_d6ee0c4cbc3723489ffb2c7f403cdee3c73d1d4da70ef393727eef146776c9c9" +path = "static-publisher/static-content/file2230.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/package_management/package_build_troubleshooting/index.html_gzip_0bab9b5fb8672a60e58c0e3f335890a593a95b1d8c704c00188f31db74891483" +path = "static-publisher/static-content/file2230.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/package_management/package_debranding/index.html_cd1145501b46db4ccf801a9f30e57a6df8d98b542270e7bc7172f9f40fdc0566" +path = "../build/minified/site/ja/guides/package_management/package_debranding/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/package_management/package_debranding/index.html_br_6f83abc16c2e60d61d860f968fab2bebd91d9c12ceb4d7e116c2382602a7ad3f" +path = "static-publisher/static-content/file2231.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/package_management/package_debranding/index.html_gzip_c9cbab47aec4b14e0b18b0176288b7e2a2917b8fd17b5c712a2d713147316e87" +path = "static-publisher/static-content/file2231.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/package_management/package_dev_start/index.html_de1f262b8c0a9780d2a304aae9c74db5d24e447418380149a0624a6c6771fc5f" +path = "../build/minified/site/ja/guides/package_management/package_dev_start/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/package_management/package_dev_start/index.html_br_92cf644fae21ed6c9204e672219d8cea721aa7ca7adc9eb756e8d7c290b9de8e" +path = "static-publisher/static-content/file2232.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/package_management/package_dev_start/index.html_gzip_703562d9749808ca3a7446a74dab041b42b99e699d82060765837c06713cef65" +path = "static-publisher/static-content/file2232.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/package_management/package_signing/index.html_6a3a52f9031d2f7cb0c10079bc1a136797a0ec0ff7d4c69417d3a3662807696a" +path = "../build/minified/site/ja/guides/package_management/package_signing/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/package_management/package_signing/index.html_br_884130936dce88da6f41f2d240f3ec6527729616929319464f6268bb0e75df2b" +path = "static-publisher/static-content/file2233.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/package_management/package_signing/index.html_gzip_b59a1fe7ba5522f4c1b48f8bd7c9bef0583e725c89a5046b2870e2699c1eff48" +path = "static-publisher/static-content/file2233.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/proxies/haproxy_apache_lxd/index.html_95a5f052bcddf8c414517ddf75c512c09ba71ee58e5b49b83ccd7167dc185e1f" +path = "../build/minified/site/ja/guides/proxies/haproxy_apache_lxd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/proxies/haproxy_apache_lxd/index.html_br_eea8816928d8a647b27f26663ac30848f140861461c1b8564aea8b4dfc7e3615" +path = "static-publisher/static-content/file2234.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/proxies/haproxy_apache_lxd/index.html_gzip_cceaa39dbc1e933d8df88613bbe8f2a5e9a34765433d71053f4b5b073737458e" +path = "static-publisher/static-content/file2234.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/proxies/pound/index.html_48ac9b706019afe7ba0b9a64a6811b71f53076affc105c87b9458ee275904385" +path = "../build/minified/site/ja/guides/proxies/pound/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/proxies/pound/index.html_br_5aef4a067eb28e73500029efd9b834bd16abab395ecc34b8f854ff473befbdb7" +path = "static-publisher/static-content/file2235.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/proxies/pound/index.html_gzip_b29cff7c2ed1f1871cb3cd64f6f0ea6a0331f46740b23e1413f75d921e977542" +path = "static-publisher/static-content/file2235.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/proxies/tor_relay/index.html_cb04cf96e81a42d9a3d8e5c60a606baa6f38d487bc0c1fd6bca26edde000eed7" +path = "../build/minified/site/ja/guides/proxies/tor_relay/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/proxies/tor_relay/index.html_br_29463a1c8a9d6b62987bb3c4e13fb0d442227a3a2a064c7bd7e949b31049ad58" +path = "static-publisher/static-content/file2236.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/proxies/tor_relay/index.html_gzip_43e6d5ff4ed45bf8ad89bd1383ee5473d0146d3c3302618df5e0a6fad903f6e0" +path = "static-publisher/static-content/file2236.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/security/authentication/active_directory_authentication/index.html_57e20c1e490c7e1090531c1184321245406b93ff169641ca30a6ef0d9f9e702a" +path = "../build/minified/site/ja/guides/security/authentication/active_directory_authentication/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/security/authentication/active_directory_authentication/index.html_br_5b7771f7d4322b157ae38ad6736fda60468a93066d208713e68fbffb3c3bafb8" +path = "static-publisher/static-content/file2237.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/security/authentication/active_directory_authentication/index.html_gzip_6f999559d6eea1e8dee24d17e678a70aec817c72cbf077c96bfe0e9854643300" +path = "static-publisher/static-content/file2237.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/security/dnf_automatic/index.html_a978194f1fefcf022d5404cfe0f1b4b4176c18718a6f8208b5b2bbe5b7756574" +path = "../build/minified/site/ja/guides/security/dnf_automatic/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/security/dnf_automatic/index.html_br_a0c197192de57967f23b546801c1f9c8771df82a89b117b8f909b8c91e291ae6" +path = "static-publisher/static-content/file2238.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/security/dnf_automatic/index.html_gzip_a08e6e4ff980be443c5ab0ad09b765124c993094ab1219d4b47a2d85f47fc1f5" +path = "static-publisher/static-content/file2238.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/security/enabling_iptables_firewall/index.html_9dcc1080d7a55cc0adf33d3f1cdc32adfbee1e3fde562337cfeebc27cdd8ed6b" +path = "../build/minified/site/ja/guides/security/enabling_iptables_firewall/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/security/enabling_iptables_firewall/index.html_br_3ca46f230236aa30b3d52cef5c1839d9f72f3fc44864d7611f382d23b7d608d3" +path = "static-publisher/static-content/file2239.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/security/enabling_iptables_firewall/index.html_gzip_bb4ccdda72b834bc89d131de637a245ca3f8e92764b256368b1a5973bc431480" +path = "static-publisher/static-content/file2239.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/security/firewalld/index.html_18d2c4be2b153b8957c0aa9d97eddc5a73c500aed4f9a09d5f76a7e678db58bc" +path = "../build/minified/site/ja/guides/security/firewalld/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/security/firewalld/index.html_br_878b6b953d35890c30d7d14e6fe9f490544c79d9fc9e5e7aa2ac4174d1cd3d8f" +path = "static-publisher/static-content/file2240.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/security/firewalld/index.html_gzip_6ffbbd81120fe38a75e590fd0383527ffd92b63b3d5124400d7b90577f036e75" +path = "static-publisher/static-content/file2240.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/security/firewalld-beginners/index.html_579495d254b20c160db3138323372e0cffaf5ce4d1ab690c88341a9ae29b962f" +path = "../build/minified/site/ja/guides/security/firewalld-beginners/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/security/firewalld-beginners/index.html_br_2a19a0dcb6f8cccf05d6b74b26e0a9ba9caea95026c53bff09fde42c6dfa5681" +path = "static-publisher/static-content/file2241.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/security/firewalld-beginners/index.html_gzip_f422316360bacf2543f46a422cb5f91c37755f2b7b8c4854fbc5c42ae0b38204" +path = "static-publisher/static-content/file2241.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/security/generating_ssl_keys_lets_encrypt/index.html_e11bd326b2b64150d2989e337da6b624f31143765b4298f739e73a0c14172a1f" +path = "../build/minified/site/ja/guides/security/generating_ssl_keys_lets_encrypt/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/security/generating_ssl_keys_lets_encrypt/index.html_br_f48d4d5d9fcbf32764654af204498c8dc071b48698bcfd98a7ffd941b98b4df5" +path = "static-publisher/static-content/file2242.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/security/generating_ssl_keys_lets_encrypt/index.html_gzip_b3828e0f4f879c790c6049c230d43726e582a5ec01fc5bf0badcb12b34245eaf" +path = "static-publisher/static-content/file2242.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/security/learning_selinux/index.html_402b4e0cbb8072158215cfad77d849c6f56fa7263bd4bc338d87af1d3228a5d5" +path = "../build/minified/site/ja/guides/security/learning_selinux/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/security/learning_selinux/index.html_br_8654004209a970961b08127307e632e34f1f9828734de5b0b09a729c20c77093" +path = "static-publisher/static-content/file2243.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/security/learning_selinux/index.html_gzip_fabdeef8c5539ee4c8af283e554121fcaa857867060b28a689625d78492936ae" +path = "static-publisher/static-content/file2243.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/security/pam/index.html_4d444cb494888250c0080e583a4c257c5e63553fac7f5f1d3b75a9ef4bf6283a" +path = "../build/minified/site/ja/guides/security/pam/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/security/pam/index.html_br_3984c0e20016e92d17120bca870300c7ccd97fa5d6c5cddbd29774e43bb931b6" +path = "static-publisher/static-content/file2244.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/security/pam/index.html_gzip_ec27010345906033da9c1ccbf87cd2504afe6ede1e8e876ad1a8584bba862521" +path = "static-publisher/static-content/file2244.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/security/ssh_public_private_keys/index.html_a916b2c0966d20d8e056fdf183ae88c97bf4640bf0bcbe670f39a07f4ec15c5c" +path = "../build/minified/site/ja/guides/security/ssh_public_private_keys/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/security/ssh_public_private_keys/index.html_br_9d11d2d02db3248b6698bfe7fa836e8c6171ddb0079a43dc130c39392181f5ff" +path = "static-publisher/static-content/file2245.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/security/ssh_public_private_keys/index.html_gzip_bae49b784f2e88163d21f6be13938cd43a9bb4345668c600c9ce0a01c5554080" +path = "static-publisher/static-content/file2245.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/security/ssl_keys_https/index.html_3625798ce018a8a4d324b499de5dd7f29caf57073a9cb0d0a803cff5d8bad6e2" +path = "../build/minified/site/ja/guides/security/ssl_keys_https/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/security/ssl_keys_https/index.html_br_ec83305a61878beb3fc72baa3e9d44810aecbb371231c7c6cb3a3458400250c3" +path = "static-publisher/static-content/file2246.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/security/ssl_keys_https/index.html_gzip_4bca2a9c748f8537326f9e6bcc2d8ed1fde2f73a1214c1293678f962758d88cb" +path = "static-publisher/static-content/file2246.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/security/tailscale_vpn/index.html_4c7c3fa5bed828a0c479c6fb8b77aa86364dbed6b497278962b7d4d881c313ee" +path = "../build/minified/site/ja/guides/security/tailscale_vpn/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/security/tailscale_vpn/index.html_br_f2b52856d937099d34679cd991e2dfc0e724df960893d2bb3e4afd3d3aee59ee" +path = "static-publisher/static-content/file2247.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/security/tailscale_vpn/index.html_gzip_d808cf3a35b6ef566ad664b3ed7381ef0ffd2d7e8db02ad809bebd3893ad848f" +path = "static-publisher/static-content/file2247.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/virtualization/cockpit-machines/index.html_0106cfbb4639f6dc6b0b11022fa93850a93bbf26ef507745986543a73dadabfa" +path = "../build/minified/site/ja/guides/virtualization/cockpit-machines/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/virtualization/cockpit-machines/index.html_br_5f1097bc850d0eba3ceedd21a74660988bb79a3a802b7f768358c4571a9b7ff3" +path = "static-publisher/static-content/file2248.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/virtualization/cockpit-machines/index.html_gzip_366f9443b51b0d286fe278065d1a3b92a87ff6d1f6f51b4901cf6e724257120d" +path = "static-publisher/static-content/file2248.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/virtualization/vbox-rocky/index.html_d82ec4cf70a24204ac8d643dc11d2709bf57e222d7ad9b7a51cb3468e1992731" +path = "../build/minified/site/ja/guides/virtualization/vbox-rocky/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/virtualization/vbox-rocky/index.html_br_e2a45ae8c2eb14dc919eb448ff74f629cf78e62b7ff5843d4c0ab855dc7b0ae3" +path = "static-publisher/static-content/file2249.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/virtualization/vbox-rocky/index.html_gzip_ca7c56aa3318b6acb7c35c46489efe2df3643b2a4b28daa68d63ca3e15e3c4b6" +path = "static-publisher/static-content/file2249.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/virtualization/vmware_tools/index.html_e60c395a2d2f4b68fc4c4c8acc182aeb56237e26c28008518981ed369d87dd2a" +path = "../build/minified/site/ja/guides/virtualization/vmware_tools/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/virtualization/vmware_tools/index.html_br_55438d60d519371e651bdc96aea13379985dcedba5aefb2ee34e935db3c83a01" +path = "static-publisher/static-content/file2250.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/virtualization/vmware_tools/index.html_gzip_6deff84ed904f5fa71e203b603db38410ef4499996582a91e8cc331a6fb57b87" +path = "static-publisher/static-content/file2250.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/web/apache-sites-enabled/index.html_e724dfe3a21aadfac5435a96f3c8f37d48d0260dd0ae26a842daa542e64ad427" +path = "../build/minified/site/ja/guides/web/apache-sites-enabled/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/web/apache-sites-enabled/index.html_br_546b6c14f608489ebb084f6e07721dc705c1e2579660e0706c5f3de3aa950bb3" +path = "static-publisher/static-content/file2251.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/web/apache-sites-enabled/index.html_gzip_77fd344e580f94269bd1bc9feb213c504a439a1b24e01c1640204c6ca0e05626" +path = "static-publisher/static-content/file2251.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/web/apache_hardened_webserver/index.html_bbb2e7db02e1ba405afd4d025776772b18011afb231434132e3928e3cf705628" +path = "../build/minified/site/ja/guides/web/apache_hardened_webserver/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/web/apache_hardened_webserver/index.html_br_511930426880b5362073304752ec09ba94bdf30c1a3b8118b9732070759caec8" +path = "static-publisher/static-content/file2252.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/web/apache_hardened_webserver/index.html_gzip_71f1a45b10f036a9a0be3376bc65c9f11e93ac627b6a5335b2b871141609c2c1" +path = "static-publisher/static-content/file2252.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/web/apache_hardened_webserver/modsecurity/index.html_d06cd66d22394bd5d1c9125a74f7bee8c202c72c6a84d95637c7493d32682eac" +path = "../build/minified/site/ja/guides/web/apache_hardened_webserver/modsecurity/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/web/apache_hardened_webserver/modsecurity/index.html_br_dead60105e9fa23bfef10dab0389a72a4e428cf8e97cc8c65d1969d7ad81f09c" +path = "static-publisher/static-content/file2253.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/web/apache_hardened_webserver/modsecurity/index.html_gzip_4fe1e74953464cdec6f3663985d4158430269c18d1167d4f7de90de00719199b" +path = "static-publisher/static-content/file2253.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/web/apache_hardened_webserver/ossec-hids/index.html_1893a2e611586ed44436de6e7d3cf086b8e0de1e4bf3ffba3b5ddaa820a2c02e" +path = "../build/minified/site/ja/guides/web/apache_hardened_webserver/ossec-hids/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/web/apache_hardened_webserver/ossec-hids/index.html_br_a56cd2d6dd796fc016debc8d3de790a954e671326b4172a84272936d2e1250a1" +path = "static-publisher/static-content/file2254.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/web/apache_hardened_webserver/ossec-hids/index.html_gzip_d47cbf7cd19023dd53a7a167996b32b6c9fcf84b9d67bd4cdb04336ec7a4557b" +path = "static-publisher/static-content/file2254.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/web/apache_hardened_webserver/rkhunter/index.html_c363f82939ef1b1451ec87cc621180bc9e398a74963472b8d881bdd8141d110f" +path = "../build/minified/site/ja/guides/web/apache_hardened_webserver/rkhunter/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/web/apache_hardened_webserver/rkhunter/index.html_br_0bfbe823ac7832a92b4c4f459a6c31575cf978d63343db7d0510be27168c3ef8" +path = "static-publisher/static-content/file2255.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/web/apache_hardened_webserver/rkhunter/index.html_gzip_e27a0f4dc0a39194f680efb8e193587c6f0af4122166d56ecde19b877577a500" +path = "static-publisher/static-content/file2255.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/web/caddy/index.html_bb87f5578dbaef8cedd83d47a4e37168828dc4d9143ac51094a664b796d2bde4" +path = "../build/minified/site/ja/guides/web/caddy/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/web/caddy/index.html_br_14d04d1d121b62b6c227778c69048fe03c7ba8b9847bae0d5bedccfc729c2295" +path = "static-publisher/static-content/file2256.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/web/caddy/index.html_gzip_0d9cb620bc5cce892cd2d029404358db67cdcc3d3a9821a5cc19561739141376" +path = "static-publisher/static-content/file2256.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/web/mod_SSL_apache/index.html_041bc13efb508e9cff3b83cf6de0132859b5e1602d5454e9979a5eca89d90fbf" +path = "../build/minified/site/ja/guides/web/mod_SSL_apache/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/web/mod_SSL_apache/index.html_br_74e83c2e4fb5bb429ae52a82b5123418e02d841140e046255e7fa0425bc572bf" +path = "static-publisher/static-content/file2257.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/web/mod_SSL_apache/index.html_gzip_8c29142f8516877e4e7ea72a2022a278a46fd70d3037495a1de8e6548a3df058" +path = "static-publisher/static-content/file2257.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/web/nginx-mainline/index.html_4c7c5894970dd13640f974c6c084cd22e0cbf8b4ec3c874a36b7da54f60933fb" +path = "../build/minified/site/ja/guides/web/nginx-mainline/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/web/nginx-mainline/index.html_br_17f7ae0fcb961726d38b88cffd54bbc8097d2afb95509a9347142f7ded43ca98" +path = "static-publisher/static-content/file2258.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/web/nginx-mainline/index.html_gzip_cf7bfd31db59f1f08e5606e2fb72167f25cd130ac291266af0bfe190c1c6cd41" +path = "static-publisher/static-content/file2258.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/web/nginx-multisite/index.html_0805c5c8357ce8683bc51469aab6da5ebd6e846a9901d67eeaa50f52f4a88f74" +path = "../build/minified/site/ja/guides/web/nginx-multisite/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/web/nginx-multisite/index.html_br_d37e679766bbd06cc680fecbc0d91bc3521140c83f72a8a3130be06b3030eead" +path = "static-publisher/static-content/file2259.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/web/nginx-multisite/index.html_gzip_e20a2f631b6db31206684bd91010cb9422e4095ce2d2fa2f11af5af88b4162ee" +path = "static-publisher/static-content/file2259.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/web/php/index.html_33f31102dc3ba93971ca132f0b4d9d6194b78db4a6a51d877c6874098a73da16" +path = "../build/minified/site/ja/guides/web/php/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/web/php/index.html_br_767c139fd00515050fd3f54b6fc237384aedba5eb4e2eb917ca280c313a3c5f2" +path = "static-publisher/static-content/file2260.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/web/php/index.html_gzip_2c0ff476aac6479312f19657581e5b12553d7003a1c62700fc0da76cf2d1d98e" +path = "static-publisher/static-content/file2260.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/web/tor_onion_service/index.html_e41eab12a366c6c40e1255e1ef50f58b36b644dd59d5faab36b463f775a1d326" +path = "../build/minified/site/ja/guides/web/tor_onion_service/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/web/tor_onion_service/index.html_br_d7c90fe28717fa58f5bd3c3c70ed63f92ac2cbe41dfe56adeaa9e18a9cc29d8e" +path = "static-publisher/static-content/file2261.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/guides/web/tor_onion_service/index.html_gzip_9342ad5dfbd37f9d523d3fa2961d8309eef986bf499192e31ccabaf6776276de" +path = "static-publisher/static-content/file2261.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/index.html_90d44946bec194bbfc6e526cd386967cc6e045d7ec6043c58ef73142b44e78a3" +path = "../build/minified/site/ja/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/index.html_br_70b7d3b056c7cd90b01698dee96e0ef73a84bb659e049967b606284dc0c0a451" +path = "static-publisher/static-content/file2262.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/index.html_gzip_1b49f9fd38919fc5a3fe10563b804b5642fdcc4a1fbc5c6232fcabb6838aaaf3" +path = "static-publisher/static-content/file2262.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/labs/index.html_ceb318bfe3b6ce4d8b9c7f22797e54a6151d3d5c70971b926e7e1e460dad60e3" +path = "../build/minified/site/ja/labs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/labs/index.html_br_e3fec5136028990a0b38b885df3ff6bb4576a2dc19f24ed3724b5fb8997abc17" +path = "static-publisher/static-content/file2263.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/labs/index.html_gzip_88e62d5c8ff16a9fefdd9b4ff4708dfe51a97f4aa5929e2865a8d873599a1147" +path = "static-publisher/static-content/file2263.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/labs/networking/lab5-nfs/index.html_21b65e6419e92b83ed79ee95158a369531fcc382500678be7b6f561dab8970e8" +path = "../build/minified/site/ja/labs/networking/lab5-nfs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/labs/networking/lab5-nfs/index.html_br_814c0daf4e56b22520ab9cdc6a21e4fd32e61bdb02d8dca4f01606602d04029b" +path = "static-publisher/static-content/file2264.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/labs/networking/lab5-nfs/index.html_gzip_176fad4bd1a9001d622d20ccd458e0fdd9c3a954f718533b5aac32334cab7848" +path = "static-publisher/static-content/file2264.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/labs/security/index.html_dba672d7e48293789c8ad36f597142fb57768928baebe7dc9182f93440b67b17" +path = "../build/minified/site/ja/labs/security/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/labs/security/index.html_br_913257b3e60139c8a030f605b24a20839fd0865f0ae046d370ac50addc1ea7f8" +path = "static-publisher/static-content/file2265.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/labs/security/index.html_gzip_d38d1b95b718f01805e0c07f9d5f7f3bfa6cefd6aa54bd4722bb63a01e422171" +path = "static-publisher/static-content/file2265.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/labs/security/introduction/index.html_691a13164155b3f534ad5ecf9848693cb34e6ea6de38fa110315a55a1a8fde29" +path = "../build/minified/site/ja/labs/security/introduction/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/labs/security/introduction/index.html_br_9bf098f1378d5822dc0f332738b665d7f69878a777bca3961082a8b3755c6f6d" +path = "static-publisher/static-content/file2266.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/labs/security/introduction/index.html_gzip_f3f29e14534588b920249009ececbc1feb2b5be955e4a213d6ef86435f9ed80f" +path = "static-publisher/static-content/file2266.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/labs/security/lab3-auditing_the_system/index.html_605262c602ef52b65cf185d0ab0d74e82a9f58cfae9e89548a76edcf5d2cf442" +path = "../build/minified/site/ja/labs/security/lab3-auditing_the_system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/labs/security/lab3-auditing_the_system/index.html_br_de3c20a65b3a8d7dd4af58fd9f544e19e3c4cf1f3516f0a073078fd074689272" +path = "static-publisher/static-content/file2267.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/labs/security/lab3-auditing_the_system/index.html_gzip_f8cacdffe88d360198e9ae538a56665f43f1ef2c6262f505c1b56bf9675fe589" +path = "static-publisher/static-content/file2267.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/labs/security/lab8-iptables/index.html_922e537eba8ac1a2a4d3bf37779ae59341f856b6d6f82ec0bc36c7f30fdfee43" +path = "../build/minified/site/ja/labs/security/lab8-iptables/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/labs/security/lab8-iptables/index.html_br_7ed2130b142c8ba16636742ae5a259497567e615a422a207ee4be90a9a148afa" +path = "static-publisher/static-content/file2268.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/labs/security/lab8-iptables/index.html_gzip_12577416fc6f8b12a61a03696e4ece7bd942e1254672818c6bbc5a4cbb2dca42" +path = "static-publisher/static-content/file2268.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/labs/security/lab9-cryptography/index.html_b6311f21cc920bd95434b0c0a3ab9dcee1339e2defda8d6a45151742ec79f10b" +path = "../build/minified/site/ja/labs/security/lab9-cryptography/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/labs/security/lab9-cryptography/index.html_br_92e4f2da4c02cb536c0e48c7b5a1e3fe74326b5168906423b44024619ac70a41" +path = "static-publisher/static-content/file2269.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/labs/security/lab9-cryptography/index.html_gzip_4d5160c72c31e4cddd34af549ebd17bbd338b179e0c1cbda167476e6df1ecdba" +path = "static-publisher/static-content/file2269.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/labs/systems_administration_I/lab3-system_utilities/index.html_bf3d805e3c0b1218ad96a6bfa8dc49e69ecad2fa5efcadc9195f1b697c342567" +path = "../build/minified/site/ja/labs/systems_administration_I/lab3-system_utilities/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/labs/systems_administration_I/lab3-system_utilities/index.html_br_ff055c8cf64444a39055640435e93b6855e35c05bb408f684052fd6298d49aa6" +path = "static-publisher/static-content/file2270.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/labs/systems_administration_I/lab3-system_utilities/index.html_gzip_9f4b8b44b53a44870bc8fe102067ac4655073e23a161952a155fe4307dbaf1b8" +path = "static-publisher/static-content/file2270.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/labs/systems_administration_I/lab5-networking/index.html_ac5ffc26f04fb2c219472ee9e11d58bdfad5e82d94f6b538b98d92550f901b2b" +path = "../build/minified/site/ja/labs/systems_administration_I/lab5-networking/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/labs/systems_administration_I/lab5-networking/index.html_br_22fb4afa9535addf91b41ae4441652a920f1512d5915888274f849736c75b013" +path = "static-publisher/static-content/file2271.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/labs/systems_administration_I/lab5-networking/index.html_gzip_32ad0473a125c74f27234d766e8176b519a38acc51ca2928e47638e9c0b77202" +path = "static-publisher/static-content/file2271.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/labs/systems_administration_I/lab6-user_and_group_management/index.html_a8d067ac1167b3b54ad77b09022a9cbeafff9990e9010620b42f1872320b55f2" +path = "../build/minified/site/ja/labs/systems_administration_I/lab6-user_and_group_management/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/labs/systems_administration_I/lab6-user_and_group_management/index.html_br_0d39af9071b00d0cfce8bc14375905199410c48f43653e8e6baa5f3c6e945dd3" +path = "static-publisher/static-content/file2272.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/labs/systems_administration_I/lab6-user_and_group_management/index.html_gzip_c079f0a606ef16c7e93a93163d3fa8cf601eef78f9af435b302cc15a87ff69ea" +path = "static-publisher/static-content/file2272.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/labs/systems_administration_I/lab7-software_management/index.html_35e453413f90c1f14b83040e0b61b74618b82df912e16efeab3b794b160a24ad" +path = "../build/minified/site/ja/labs/systems_administration_I/lab7-software_management/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/labs/systems_administration_I/lab7-software_management/index.html_br_b2cfd46c81d52bb8db4f86eec722325b40c3f445e23f725ceaa98122d22b5e14" +path = "static-publisher/static-content/file2273.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/labs/systems_administration_I/lab7-software_management/index.html_gzip_581a2e9f67cf24a3785acae769a7f052382c10a69e43f77089f1d4bad9cff14b" +path = "static-publisher/static-content/file2273.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html_8bd51cdabd2936f778dab2354c9609908330422d101f77055c26fa19280ce8ed" +path = "../build/minified/site/ja/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html_br_eb11335c95e7830d68b2d0c0602c58ba7abcb1b413ea3a427dbc605386720d4b" +path = "static-publisher/static-content/file2274.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html_gzip_2afa5182cde929c505cf36e3af3fa5b84effcd39954e2d1169c85537ddc38274" +path = "static-publisher/static-content/file2274.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/labs/systems_administration_II/lab3-bootup_and_startup/index.html_a64c9877bce06aed80a7dad3422c3e93b23492ab33dcbf0ea871619afcaae725" +path = "../build/minified/site/ja/labs/systems_administration_II/lab3-bootup_and_startup/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/labs/systems_administration_II/lab3-bootup_and_startup/index.html_br_6553e90a09e70510c1d0210579177f4856d5325a81b115ac7d9375fafac0d846" +path = "static-publisher/static-content/file2275.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/labs/systems_administration_II/lab3-bootup_and_startup/index.html_gzip_5157b9b7ff1a919e6498366dd3b970a0663d20237da70e346a1aa4efc4d5dcc3" +path = "static-publisher/static-content/file2275.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html_0e29d332c1787dfee5bad3d141b2fb36839addfab20a85cc5d16129719802b35" +path = "../build/minified/site/ja/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html_br_bd8ce6141c8a2acc572d1aef3cb4f42b80a42380554320f86fd9942193321725" +path = "static-publisher/static-content/file2276.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html_gzip_cba069221b249688adf67c0e2c8778b85757c0ace579ae6d54a99dc9bce6066c" +path = "static-publisher/static-content/file2276.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/labs/systems_administration_II/lab6-the_file_system/index.html_5a7e85c9c756e2fff6c0e1d0bff655787291822e2f82066abe7c21ed8ff3909b" +path = "../build/minified/site/ja/labs/systems_administration_II/lab6-the_file_system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/labs/systems_administration_II/lab6-the_file_system/index.html_br_036cb7ed2f512b5b1c35125d6da794fbcc168f3a871efbfe4cd218ea48392c2f" +path = "static-publisher/static-content/file2277.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/labs/systems_administration_II/lab6-the_file_system/index.html_gzip_54e4a07faeffdb521a0d4523247a8803321f60ffa4742985a8dbd0c979ddfeba" +path = "static-publisher/static-content/file2277.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/labs/systems_administration_II/lab7-the_linux_kernel/index.html_0e647ab3da14b419e88226faed9d4f605763ddb05f3c9b4ac01a7deef04261e0" +path = "../build/minified/site/ja/labs/systems_administration_II/lab7-the_linux_kernel/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/labs/systems_administration_II/lab7-the_linux_kernel/index.html_br_7efa163dcae9ecf378ba0226fa5bf573aafc5fccf91a3f07bdad625ad0116d2d" +path = "static-publisher/static-content/file2278.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/labs/systems_administration_II/lab7-the_linux_kernel/index.html_gzip_4d3c6a981016f553928e541898d5237e0858594bb12f6a0608e1a0212fd3cb34" +path = "static-publisher/static-content/file2278.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/release_notes/8-changelog/index.html_972742337b0b0984b7f8b3d16ccef1ecae4c88836cb8fe6757998b5aa0c3d7f2" +path = "../build/minified/site/ja/release_notes/8-changelog/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/release_notes/8-changelog/index.html_br_6381f9c41ab6e382258ba2db658c99593bfe9386ccc26d1e9f9c540f2e23a9a3" +path = "static-publisher/static-content/file2279.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/release_notes/8-changelog/index.html_gzip_00bdb12720b853ba9fdd3bfadaecabf16929222d1d4f4d417f2b0cad2a08e205" +path = "static-publisher/static-content/file2279.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/release_notes/8_4/index.html_d84798be4ee12db4ada8423c2c4ff3af6c2232264aa76ea9d433cdabb028a731" +path = "../build/minified/site/ja/release_notes/8_4/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/release_notes/8_4/index.html_br_577cbb57fb56f23f688cb15c3f9ffeaa35e631df279c0f54d7bb4ed69e96cc06" +path = "static-publisher/static-content/file2280.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/release_notes/8_4/index.html_gzip_cb427931f104c306261132c0bb526e9f74e29098f264fa3d460acea01157e974" +path = "static-publisher/static-content/file2280.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/release_notes/8_5/index.html_fcf0dd54ec17e571287f8c46acf6a40aadfea41a50911eff44d39bcc8321f9b3" +path = "../build/minified/site/ja/release_notes/8_5/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/release_notes/8_5/index.html_br_ba67407ece2973a00151ed12578339fcd1dd25bb9ba1c91441927b6e8265412b" +path = "static-publisher/static-content/file2281.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/release_notes/8_5/index.html_gzip_690e0f5960a27bafc771e743bbe6ad55a0aaf2777c44cc4d6247bfaa5db01a32" +path = "static-publisher/static-content/file2281.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/release_notes/8_6/index.html_5fb36c0631ff64b04e4537fe2f782383b2d8ae0dc77b4a802775388a5d96f74d" +path = "../build/minified/site/ja/release_notes/8_6/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/release_notes/8_6/index.html_br_19795117c891a4821922b272bb0a18ea77f52f3e892a6fe691f5cb00a5e82689" +path = "static-publisher/static-content/file2282.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/release_notes/8_6/index.html_gzip_4eb1117d5794a04c5994159c09bb9d2b4921757263dc8e58afe28c8525395519" +path = "static-publisher/static-content/file2282.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/release_notes/8_7/index.html_31706c8ae508e4be909bf438e25661e513025447880ee4d93310000f271e5ab6" +path = "../build/minified/site/ja/release_notes/8_7/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/release_notes/8_7/index.html_br_df6a256884762caeb580775e1b3ec90c65b76b88bf5239460f9878986f75bb31" +path = "static-publisher/static-content/file2283.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/release_notes/8_7/index.html_gzip_1ef3dfa733412660cf820273dbdf5abd052f5c5511e8503d598a36280ca007d9" +path = "static-publisher/static-content/file2283.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/release_notes/8_8/index.html_3433cd3426e08b65b151296fb77078ffbb66ef641fb77583700819327c70a418" +path = "../build/minified/site/ja/release_notes/8_8/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/release_notes/8_8/index.html_br_d6aa2aa2a872310b3fdd9e1b81638858ba5097f350df1f42e2a695c4292cbb14" +path = "static-publisher/static-content/file2284.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/release_notes/8_8/index.html_gzip_4b5139a41e649eeba68cea5509ea35d44a1079e63e29481ef6fef58d4a757db2" +path = "static-publisher/static-content/file2284.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/release_notes/8_9/index.html_1c2361db5e0344f274e9d4ac7753dd5f9f98d167729c21227a700548b635b315" +path = "../build/minified/site/ja/release_notes/8_9/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/release_notes/8_9/index.html_br_0c6fadf9c20bbd6046e79679e5e2ceff160ba4a553749ef7a57925c7500fd72b" +path = "static-publisher/static-content/file2285.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/release_notes/8_9/index.html_gzip_acaa86dea778074fc6dbc4116fd7a43d67abc335ee763ee7e98968a8193b48fd" +path = "static-publisher/static-content/file2285.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/release_notes/9_0/index.html_bcfd26cb2329bdc808f4e0d666a803519eb02a962178b9061037bb358f1e3376" +path = "../build/minified/site/ja/release_notes/9_0/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/release_notes/9_0/index.html_br_445058b9ec9115fe604d23916f467ac4b38347dbb9b5a55d900706099faa5256" +path = "static-publisher/static-content/file2286.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/release_notes/9_0/index.html_gzip_605bd9af42e242561a818c8f81e27e9a1c4e8a056d8c8904a9c9d54439ab0d95" +path = "static-publisher/static-content/file2286.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/release_notes/9_1/index.html_e366c8bf81a94ef44419e6dfb354a7e98c5b53336d24286c2dcfd79f34326fc3" +path = "../build/minified/site/ja/release_notes/9_1/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/release_notes/9_1/index.html_br_1397c3297fd7d9c16061da6942d9cf1b165affd2acecb61a4d8912de58927272" +path = "static-publisher/static-content/file2287.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/release_notes/9_1/index.html_gzip_7c67d856dea9bcb3fc7b7775b40de605f0c4318528420927b1d40f441633b9cb" +path = "static-publisher/static-content/file2287.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/release_notes/9_2/index.html_b278d660a53469816ca5fbc4bd1f860e008b3e6a01d376e107451f23619c4b91" +path = "../build/minified/site/ja/release_notes/9_2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/release_notes/9_2/index.html_br_1921311fd4f4eb07005f60885632911c39eeab938303e8308d6054bad25cd610" +path = "static-publisher/static-content/file2288.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/release_notes/9_2/index.html_gzip_7844cd2b7860de90254404dd97439312c4b9ffcfdfe78e292941b73cd1c695fb" +path = "static-publisher/static-content/file2288.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/release_notes/9_3/index.html_8105a1a1a7909f569382ed59d63ea77c8f310c6b7015698bd5844df2e97e18c8" +path = "../build/minified/site/ja/release_notes/9_3/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/release_notes/9_3/index.html_br_d8384f341371d43bde9004ac80ceff11e088590343a6df0913ca589f93847d34" +path = "static-publisher/static-content/file2289.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/release_notes/9_3/index.html_gzip_28811827cc901ebd5ddafe69747bc13eb032b500cec5ef301c27692a43458f24" +path = "static-publisher/static-content/file2289.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/release_notes/index.html_e06f59b6cd5a661c131e20dedda80021275ead7a4c0dd50959fc217f44758996" +path = "../build/minified/site/ja/release_notes/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/release_notes/index.html_br_05ed74caea386b62833c0fef06d4216c9a18fa4d8be03b52fa8e5c91f2613d3c" +path = "static-publisher/static-content/file2290.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ja/release_notes/index.html_gzip_76da363e55fa7eb9618ccf565d81f03f64d1fd82610f4c36e267d762adca2f3f" +path = "static-publisher/static-content/file2290.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/admin_guide/00-toc/index.html_b88e6c4327abcce54692c1005358c0ce2e1a6da0c750df8da00471098b2aab0b" +path = "../build/minified/site/ko/books/admin_guide/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/admin_guide/00-toc/index.html_br_ba011054614eac7f912eb2c93313e965b59a197d6b0267a2f6a9052a2e417391" +path = "static-publisher/static-content/file2291.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/admin_guide/00-toc/index.html_gzip_9ffe79a1d6829b32ec22a5b3c9622851c34830c76952588a906c78a5f07807d5" +path = "static-publisher/static-content/file2291.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/admin_guide/01-presentation/index.html_bbce0c03af3bb9c369d2409121ee31d0bb53c23336b1f89bf8710d8a3af0588f" +path = "../build/minified/site/ko/books/admin_guide/01-presentation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/admin_guide/01-presentation/index.html_br_9e547b78d251d966ea4493a459f9afa30bbeffa36aede787daf02fa3d9156823" +path = "static-publisher/static-content/file2292.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/admin_guide/01-presentation/index.html_gzip_db919be70cfbf07bd5c1e7a3183437583de0fac4f726e4fdd3117169a4231ec0" +path = "static-publisher/static-content/file2292.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/admin_guide/03-commands/index.html_c2725738ce8c75aa58b758c91f2a78b49c036ba73168f2f6c550360dd950609a" +path = "../build/minified/site/ko/books/admin_guide/03-commands/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/admin_guide/03-commands/index.html_br_065169223d2d3fe4be108303744b6cd0674c2b23f33eaeb2ec3aedf8ed24838c" +path = "static-publisher/static-content/file2293.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/admin_guide/03-commands/index.html_gzip_8bf95b73ce52325a93f972a611850678c039c439635cfd602857c742d967120d" +path = "static-publisher/static-content/file2293.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/admin_guide/04-advanced-commands/index.html_1dddd9ae5b46a8d5b505099715fb18f4d4a2d16825656b453bcfc09bbb414a60" +path = "../build/minified/site/ko/books/admin_guide/04-advanced-commands/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/admin_guide/04-advanced-commands/index.html_br_2cd5934eeeec8c6488af79262862d184adfdc91f6578e33622bc6c9554032fab" +path = "static-publisher/static-content/file2294.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/admin_guide/04-advanced-commands/index.html_gzip_937c873e3fd08fab5be612838e74da5d09c0ab47ddead4e198842e2fb579baf2" +path = "static-publisher/static-content/file2294.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/admin_guide/05-vi/index.html_f7d46fdb56e8fef78f558e3d5d0dcdf4a3463b72ddb73d5cc85945a0e7d75e7b" +path = "../build/minified/site/ko/books/admin_guide/05-vi/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/admin_guide/05-vi/index.html_br_0190d99d751113f6fd21676142282cc862e6594b21e15e650bf63b048b9eeb0b" +path = "static-publisher/static-content/file2295.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/admin_guide/05-vi/index.html_gzip_a43c9a833dbcb87094c115994be90cc8af93144d7cd4f1a2fcac49a47e1e4504" +path = "static-publisher/static-content/file2295.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/admin_guide/06-users/index.html_58b79b2393bf40d1ebb9b054386a9732663573978367509fd986c3e103ff8317" +path = "../build/minified/site/ko/books/admin_guide/06-users/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/admin_guide/06-users/index.html_br_cae153c5b4d7fcb57b5fec1377b5aefd4a571441d19bfd773deb158564d9b1f3" +path = "static-publisher/static-content/file2296.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/admin_guide/06-users/index.html_gzip_eae729dd871aab24dca020eb4762e70400e9def35498dd8f0e66dd27a0681eb0" +path = "static-publisher/static-content/file2296.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/admin_guide/07-file-systems/index.html_26c90ced2a0b8a884d7cf1027dff30a0d2105ea623c8427d68913edeebac8deb" +path = "../build/minified/site/ko/books/admin_guide/07-file-systems/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/admin_guide/07-file-systems/index.html_br_ada4abea0f2838e4effdd47847a8b5ac208ecc6523fe93a19229616490162bfd" +path = "static-publisher/static-content/file2297.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/admin_guide/07-file-systems/index.html_gzip_ea8077bf9a5bef210244db0d925a8ab1d47120e91e60286587d6072023d8d150" +path = "static-publisher/static-content/file2297.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/admin_guide/08-process/index.html_d47304cf51d638d3f53498ec133d28b3e96c50de577ecacd4d90f474b7cff913" +path = "../build/minified/site/ko/books/admin_guide/08-process/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/admin_guide/08-process/index.html_br_b61249871d41bd1ead471c4977be2768367ef7a3862ef13da0ed5d42c178354c" +path = "static-publisher/static-content/file2298.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/admin_guide/08-process/index.html_gzip_6f14bec7aeb2f99dbb836259e5751fd1065ff4ca0bed12ee457b3064e2393b50" +path = "static-publisher/static-content/file2298.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/admin_guide/09-backups/index.html_7694a15347a6957141dc4a7b6b4f11a1a06f6bd86625438d2352e1a41b3651d1" +path = "../build/minified/site/ko/books/admin_guide/09-backups/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/admin_guide/09-backups/index.html_br_01784e472f1e0d32bc49efce33b215e3f7997e87cbe805fbb11badf2e0ed1ebb" +path = "static-publisher/static-content/file2299.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/admin_guide/09-backups/index.html_gzip_e1e5ffa23af534648b0694d564ac86c622543fe5581c53c528eed71c03bd80b2" +path = "static-publisher/static-content/file2299.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/admin_guide/10-boot/index.html_e5c975883fbfcb2212b3a068cf60cb9b0185bea4fcbb0242c141a9ddad1a3c8b" +path = "../build/minified/site/ko/books/admin_guide/10-boot/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/admin_guide/10-boot/index.html_br_c84c8647e030b31339d7449ca2b0788ca06170157861862777028cb388e8ad8d" +path = "static-publisher/static-content/file2300.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/admin_guide/10-boot/index.html_gzip_19eb029fbaa42bb838ae1646079f694b1ed66333b7e12836817104daa5ac7e4d" +path = "static-publisher/static-content/file2300.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/admin_guide/11-tasks/index.html_7fdaecb74fd34f9189965df7e993e4da044627453a6585964d61894829922a5e" +path = "../build/minified/site/ko/books/admin_guide/11-tasks/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/admin_guide/11-tasks/index.html_br_54ff0c4bb2c354eca4b78de2eb77c73623d63ec652cc8778c454bdb17b9d6445" +path = "static-publisher/static-content/file2301.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/admin_guide/11-tasks/index.html_gzip_f777beb0c3c60f1ea3b7566f20ce8c9d90ba23759b678971064ff5cee048eb3e" +path = "static-publisher/static-content/file2301.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/admin_guide/12-network/index.html_7ebad1a9bb2a2678da896a4476bc6d1b30c482a6964d19560557293b65c322ae" +path = "../build/minified/site/ko/books/admin_guide/12-network/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/admin_guide/12-network/index.html_br_6c6aa9f89f9ae14a356d5f69d95c0d249890f9d35bf38dffd7ca4fb47d5dcb78" +path = "static-publisher/static-content/file2302.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/admin_guide/12-network/index.html_gzip_24789c291cf02b4e2bc93f348b00baf76d3c9d51a70fe913e4352ed5266121d7" +path = "static-publisher/static-content/file2302.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/admin_guide/13-softwares/index.html_b08758b37f32feeefd6c112d08feda7ed1ade9846ab0b9c2c6031ec32fc853ad" +path = "../build/minified/site/ko/books/admin_guide/13-softwares/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/admin_guide/13-softwares/index.html_br_7da6d104c63893b3086e064ffac51e1e2e670963590c9deda746deb1861ec1be" +path = "static-publisher/static-content/file2303.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/admin_guide/13-softwares/index.html_gzip_dbbb4cce55fc09c394c7895f467329cc950d17a379165287b8c5742e58e54b8a" +path = "static-publisher/static-content/file2303.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/admin_guide/14-special-authority/index.html_66e8ffadd1b1ab9dd1af1857a55f9542e46b9a7f18aae907d982f49d5800a2d3" +path = "../build/minified/site/ko/books/admin_guide/14-special-authority/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/admin_guide/14-special-authority/index.html_br_1284ac4212adbb12f008c4cb62eb4fdd5ad9171c6fefedcd58bf04dd6ed0c2a7" +path = "static-publisher/static-content/file2304.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/admin_guide/14-special-authority/index.html_gzip_58cfad01a910d84a740cecb905e88483afb3cfd3e234c5db56a1baf05f2085ee" +path = "static-publisher/static-content/file2304.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/admin_guide/16-about-sytemd/index.html_e9efd1d227a0a5f9f6c8b951fb385cf6e91e05754e49a9450f5e220c8c712697" +path = "../build/minified/site/ko/books/admin_guide/16-about-sytemd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/admin_guide/16-about-sytemd/index.html_br_402f2f3b21805a90341f01e3c86e5a182660a5e3c339674dfbc1a46c58f1ef07" +path = "static-publisher/static-content/file2305.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/admin_guide/16-about-sytemd/index.html_gzip_e7b43a8fcb923e0fbb10161a29d96379091b970524a1e5b7b10f074ef89dfc61" +path = "static-publisher/static-content/file2305.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/bash_programming/01-Shell-overview/index.html_7fb2368fa8e3c7aaa1a7a698f31bf50d3e27258044f12f72c8906c770c59f13f" +path = "../build/minified/site/ko/books/bash_programming/01-Shell-overview/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/bash_programming/01-Shell-overview/index.html_br_25aca50d312dd2d88dd1019883cd20c27ec4b384aace92c6699eeecf4c8d11a7" +path = "static-publisher/static-content/file2306.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/bash_programming/01-Shell-overview/index.html_gzip_9005e493848d6b382d5d470c3fc25aae121c8974a4500997615f0a817cdf8b08" +path = "static-publisher/static-content/file2306.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/disa_stig/disa_stig_part1/index.html_f414972d9b079461aef0d908312a3bdd6c7b27f85d0e300eaa1e64855c94022f" +path = "../build/minified/site/ko/books/disa_stig/disa_stig_part1/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/disa_stig/disa_stig_part1/index.html_br_dbd348d743bb8222554f7193c5459137fddf89486c23cef3b6fa6afe6e0763f4" +path = "static-publisher/static-content/file2307.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/disa_stig/disa_stig_part1/index.html_gzip_c065ae803f2f577bb9739a0d6f91fa17fc85ab9087db837c55d39c1e35d4a503" +path = "static-publisher/static-content/file2307.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/disa_stig/disa_stig_part2/index.html_f5957966709a2e31d69724369090c7407dd825e1a2b2f4254a77d28a523fc2b3" +path = "../build/minified/site/ko/books/disa_stig/disa_stig_part2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/disa_stig/disa_stig_part2/index.html_br_96733b46f0bbdde122aaa4856461229fddeee87b604e930cdb0e81111854b6c1" +path = "static-publisher/static-content/file2308.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/disa_stig/disa_stig_part2/index.html_gzip_750f99eb8256e44e6d3ece3c91a9c84706b8b407eece51ecda285ed5fd7b9876" +path = "static-publisher/static-content/file2308.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/disa_stig/disa_stig_part3/index.html_db983f663a54e294b487e34bdd8027d9c9afed8e8b294646a0f4262515c2cf9b" +path = "../build/minified/site/ko/books/disa_stig/disa_stig_part3/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/disa_stig/disa_stig_part3/index.html_br_316cb97c88e3da31b2b1d5bef74d7f661ad095d441401640f30a94d72d4b0da6" +path = "static-publisher/static-content/file2309.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/disa_stig/disa_stig_part3/index.html_gzip_c444c8c1ac6045bf56f82cb9ffa37d764d5bd995c09b5efc1e6d8fb58fa30fec" +path = "static-publisher/static-content/file2309.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/index.html_eda4fe1e003a3031b3af62fececd0624b25a4867f3c4daa494dcdf00a11b3cc7" +path = "../build/minified/site/ko/books/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/index.html_br_30e8164497576ee9c150f848f7197238aa4da75a734fd60346fe73c0b7d557b8" +path = "static-publisher/static-content/file2310.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/index.html_gzip_14e0fc6b630750eb2ca5668143278a730ecddacc663a41ee93696ddbf2b869fa" +path = "static-publisher/static-content/file2310.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_ansible/00-toc/index.html_44e25f3cab29952c80265885b96cd30115c649e73dabf85ae9531f5c21350421" +path = "../build/minified/site/ko/books/learning_ansible/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_ansible/00-toc/index.html_br_e663217bf0a079f356e5bcfb6fc68f79f0c3df9de23530309c2b90b8330a8de0" +path = "static-publisher/static-content/file2311.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_ansible/00-toc/index.html_gzip_19ba72c7437033e73877fa3ef6835d80514982d6f5d15cfea002c2386a93f10f" +path = "static-publisher/static-content/file2311.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_ansible/01-basic/index.html_6e48b2a40c7545f845c05f8818e77ebd81a08923c7689e7c80abbe68f280ccd1" +path = "../build/minified/site/ko/books/learning_ansible/01-basic/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_ansible/01-basic/index.html_br_013adde6bad0ed902452fbd15bd82c019612a5af0e05f8093f54b343a65d1fca" +path = "static-publisher/static-content/file2312.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_ansible/01-basic/index.html_gzip_0fe948b01bf09d02cd2639af9d8ea912aa4aecb726e2554594e7364899db8648" +path = "static-publisher/static-content/file2312.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_ansible/02-advanced/index.html_53830e6d8f049331e9c7f667d6ffa7f4c2522ca2d5c63f0e1e0ca090b79c033c" +path = "../build/minified/site/ko/books/learning_ansible/02-advanced/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_ansible/02-advanced/index.html_br_64f6e4057bb2cb6665c71f68adc4054e3ec114a33957010b84850ee0cbb18e0e" +path = "static-publisher/static-content/file2313.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_ansible/02-advanced/index.html_gzip_b66243a09eb4fdee71dae54b88e01a9455c8e894adf1e4d1e705063368c35096" +path = "static-publisher/static-content/file2313.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_ansible/03-working-with-files/index.html_8503a4128b3b37e3c38bd3bb67d7f700490d505091086bbad1b7f5074dff189e" +path = "../build/minified/site/ko/books/learning_ansible/03-working-with-files/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_ansible/03-working-with-files/index.html_br_46d8fa3b59ec98d81463ba7daf0ec85940e4f1ea0e63829d408b1bd770b07b9d" +path = "static-publisher/static-content/file2314.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_ansible/03-working-with-files/index.html_gzip_a0d6024ef1520b46a05b1847e0748430c72b9b813f50bb2a4985279e5eb341b7" +path = "static-publisher/static-content/file2314.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_ansible/04-ansible-galaxy/index.html_7d6e4f0aff4916bda2228e1a47d95496d2a5082c03149ba96fb786a566a9b8d6" +path = "../build/minified/site/ko/books/learning_ansible/04-ansible-galaxy/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_ansible/04-ansible-galaxy/index.html_br_ad91e14b556be3d138dcc447beffb99d1c4c9e8992ceebe4338e376a318daf7b" +path = "static-publisher/static-content/file2315.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_ansible/04-ansible-galaxy/index.html_gzip_b0e1c6c9bd30eed83e83faf589de25f62d2169b6db741c334e6ff21450c9abd5" +path = "static-publisher/static-content/file2315.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_ansible/05-deployments/index.html_c3181ab98b4e32f9c51d0a55579ac2bf5c2b8778b618406db108be32dc5ba56c" +path = "../build/minified/site/ko/books/learning_ansible/05-deployments/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_ansible/05-deployments/index.html_br_91295422506b4b73151f18593b5fa2b7d8b9a5620889c3eb2f229579bcf3e244" +path = "static-publisher/static-content/file2316.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_ansible/05-deployments/index.html_gzip_4013d3aba179e256e5bd70016767e214bf8be579de3a08d68ca0d60e8df2b849" +path = "static-publisher/static-content/file2316.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_ansible/06-large-scale-infrastructure/index.html_58d327631bdc083cd7b8b8a5ef730ef6fd1a180469490cdbbef414f0347a261f" +path = "../build/minified/site/ko/books/learning_ansible/06-large-scale-infrastructure/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_ansible/06-large-scale-infrastructure/index.html_br_1dcd5bf392122f61848b190d1e231f928dfabec83e251c968daf4125fe6ee9b7" +path = "static-publisher/static-content/file2317.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_ansible/06-large-scale-infrastructure/index.html_gzip_fad86a4b5c09bd79ba8455ae4769371ce7ed6a8107297b2870e7f7b271de3f16" +path = "static-publisher/static-content/file2317.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_ansible/07-working-with-filters/index.html_6b10d83fee35777bea2050b8e5641786a1027f47518778536f9518a8323accd2" +path = "../build/minified/site/ko/books/learning_ansible/07-working-with-filters/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_ansible/07-working-with-filters/index.html_br_a0a767c403be70b83a31ec8f0ebc97d219b0635e0326ff995b6911d40cda25c9" +path = "static-publisher/static-content/file2318.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_ansible/07-working-with-filters/index.html_gzip_fc8967353779c52ccb9b28416ab932599ed4bb5b52b593534c753bcdea676dba" +path = "static-publisher/static-content/file2318.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_ansible/08-management-server-optimizations/index.html_a6bf6324938c831f8008c93162e0383009bef679508d47a8283f43f7d9889dd0" +path = "../build/minified/site/ko/books/learning_ansible/08-management-server-optimizations/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_ansible/08-management-server-optimizations/index.html_br_6c0eaa3f0293bfcec3351a62e678ec11ce83ecc7765b7f581125373681c21c6f" +path = "static-publisher/static-content/file2319.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_ansible/08-management-server-optimizations/index.html_gzip_7cec661441432d15c4e9e02bf4b475e57186fbba151cc35d0d46c3e266f92263" +path = "static-publisher/static-content/file2319.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_bash/00-toc/index.html_a4a5add762efd61b24440e00758918a2da6034a97d51af7f912810536ab83e99" +path = "../build/minified/site/ko/books/learning_bash/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_bash/00-toc/index.html_br_ae08d764483f5f8ace11e8bbd9b87fa6d0066c5519d35efc5b0396e83885ad8c" +path = "static-publisher/static-content/file2320.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_bash/00-toc/index.html_gzip_9363c6992d46c9fb2f2be72c3e630fdab1227b75d5fdfe102df24d69a3caf3a8" +path = "static-publisher/static-content/file2320.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_bash/01-first-script/index.html_ad26e36275ab4ef845bb861d9c175adb93a69158226a37dd51440facd0c0f4b4" +path = "../build/minified/site/ko/books/learning_bash/01-first-script/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_bash/01-first-script/index.html_br_6d211340947f025cd4f5d6746b5d266734493df27ddee4718ef4a1105b9066a0" +path = "static-publisher/static-content/file2321.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_bash/01-first-script/index.html_gzip_357753e6506bfbb59f0ffa1b3f0d55e71b231c1c1c52dd8e971f4beb411888e5" +path = "static-publisher/static-content/file2321.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_bash/02-using-variables/index.html_e35ca714db1bb78be0b54fe32a88206ccb5d783b270db88859f1b522f5d4a4b8" +path = "../build/minified/site/ko/books/learning_bash/02-using-variables/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_bash/02-using-variables/index.html_br_3c6cfae8a40a8ed025f93f5242b5ba2d97bd0d6866da447e57c2488e60101232" +path = "static-publisher/static-content/file2322.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_bash/02-using-variables/index.html_gzip_8447539f750bb091a601fb7fc938bae557bfa43f277a6507a45b389c990dbc43" +path = "static-publisher/static-content/file2322.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_bash/03-data-entry-and-manipulations/index.html_19057f7f0927bef8dc5f4a209733193d6a06773af0091483187cbabefe7e28e7" +path = "../build/minified/site/ko/books/learning_bash/03-data-entry-and-manipulations/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_bash/03-data-entry-and-manipulations/index.html_br_e147686d040668ff994338cb385360c0884f9945a194af2749885b42de6f9adb" +path = "static-publisher/static-content/file2323.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_bash/03-data-entry-and-manipulations/index.html_gzip_7da5cc273fc64ca1c678c586abb0325d883acdddc9484f0c8a15eb99acae5e92" +path = "static-publisher/static-content/file2323.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_bash/04-check-your-knowledge/index.html_d79949e90e9643dbb9d005ea0488671100e6e48978dd080c69c004813cfd9a2e" +path = "../build/minified/site/ko/books/learning_bash/04-check-your-knowledge/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_bash/04-check-your-knowledge/index.html_br_9465e0d1847fa7071fb5328b375936ebdb729abe1347aef11a7e364704fd6146" +path = "static-publisher/static-content/file2324.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_bash/04-check-your-knowledge/index.html_gzip_bbaaa3c501bdcc2d405703c04e964ddb7a1c8233c9865f3f64d454564f8ce2aa" +path = "static-publisher/static-content/file2324.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_bash/05-tests/index.html_4b4886a8100382ac6a85bb198338a17772d1c27fb5d116b0f47291ba9ba43b29" +path = "../build/minified/site/ko/books/learning_bash/05-tests/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_bash/05-tests/index.html_br_f1b55f4f931781150a6d24895a98ffacca9a210c88c4359e1a1da6c7e1e76e29" +path = "static-publisher/static-content/file2325.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_bash/05-tests/index.html_gzip_9b67f39ff47c19ec3e5f4c0e5abe06f0c438c9b4c5e06307088a2306bee08048" +path = "static-publisher/static-content/file2325.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_bash/06-conditional-structures/index.html_28285e6da562eb39d4532a1ab664bf3d4a3c6f08091157e29859c5165037ba98" +path = "../build/minified/site/ko/books/learning_bash/06-conditional-structures/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_bash/06-conditional-structures/index.html_br_33a9dbd3f493ffc02fea9968dfa67f6ce5f6ce0c17ddbac33b92622fcf7a223c" +path = "static-publisher/static-content/file2326.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_bash/06-conditional-structures/index.html_gzip_e18abaf1fb386689de3e5c9149bc5f6d463381b296429215c69449463cd0d3f7" +path = "static-publisher/static-content/file2326.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_bash/07-loops/index.html_330e10606b5fed8b381d722a391867c15b2181eadd7d2687d4dfda66724548ab" +path = "../build/minified/site/ko/books/learning_bash/07-loops/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_bash/07-loops/index.html_br_95bcfcff1c64dfb20e114a3f73dd243b606f63c8e237f95c50d9001d5493782e" +path = "static-publisher/static-content/file2327.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_bash/07-loops/index.html_gzip_72ce66b562afb642a27ba188b06aea99930a62282d5b1e5c1a46e84f2ee4f064" +path = "static-publisher/static-content/file2327.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_bash/08-check-your-knowledge/index.html_69e01727251675db1d16b1e57db7cfd3f58650ece8b4eee752ffe1434a26df84" +path = "../build/minified/site/ko/books/learning_bash/08-check-your-knowledge/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_bash/08-check-your-knowledge/index.html_br_9a7553a7f124421c0824dbf666d1acabec4297790347f0e46685ddd7b7782518" +path = "static-publisher/static-content/file2328.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_bash/08-check-your-knowledge/index.html_gzip_1cea27723d156f12d193d3093e8b67a15786562352f64d67fa85a2f840307e88" +path = "static-publisher/static-content/file2328.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_bash/appendix/02-variables-logs/index.html_7acca46d4fb55ecccf4bc4ae8a8be31c69bab2a453ffe4515202322b587a1667" +path = "../build/minified/site/ko/books/learning_bash/appendix/02-variables-logs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_bash/appendix/02-variables-logs/index.html_br_2ab6f7758522ce2a84c6f5ec7750e5699af2cc2ca68666fa030575150e8ff50a" +path = "static-publisher/static-content/file2329.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_bash/appendix/02-variables-logs/index.html_gzip_98d62c2dff5eef20f8baf126d0228a956a20896ef514d323e1b524139a778759" +path = "static-publisher/static-content/file2329.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_rsync/01_rsync_overview/index.html_cb8ef65d685a8b43a3c8e66e12118302ef8a4c66a04369294216de506d18aa36" +path = "../build/minified/site/ko/books/learning_rsync/01_rsync_overview/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_rsync/01_rsync_overview/index.html_br_44652d2ba18591193a22be92d9253335e3c2595c72f84babce1578d23cf60e09" +path = "static-publisher/static-content/file2330.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_rsync/01_rsync_overview/index.html_gzip_0c24b17778fd3249eb560d6c8fc390784e06e9c51be327f27b1e3ce099436f8f" +path = "static-publisher/static-content/file2330.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_rsync/02_rsync_demo01/index.html_9093c92d5030c2b6d88c6bc2222905fa3eb09b7bcdeccc9de7e0e69bc649868e" +path = "../build/minified/site/ko/books/learning_rsync/02_rsync_demo01/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_rsync/02_rsync_demo01/index.html_br_0449f04a7b35911c1a8b99c7c060ff26b534007ba93ce206e130f4dff6ffa426" +path = "static-publisher/static-content/file2331.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_rsync/02_rsync_demo01/index.html_gzip_4caf7a38f2e6f381b799d7d5013883a57132ec37ecafc1f5a69033fe7b156f34" +path = "static-publisher/static-content/file2331.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_rsync/03_rsync_demo02/index.html_324f47defbe59ca7a4472b62e7a8f35006f2c077ce180dcb006753b599e65b6d" +path = "../build/minified/site/ko/books/learning_rsync/03_rsync_demo02/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_rsync/03_rsync_demo02/index.html_br_1af56a0da9410ca29bd396bfbc132c1c2c483a9a7176b96c602f8ec05d253428" +path = "static-publisher/static-content/file2332.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_rsync/03_rsync_demo02/index.html_gzip_ff6bc5820cc5e3a8d8aa6c3a3063ada56e1fcb045b5cfa251c81e85740ed1f6d" +path = "static-publisher/static-content/file2332.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_rsync/04_rsync_configure/index.html_ec5e27aa06b1432ef362d8f97fec5c4d084b8673615ec6b96003c1c5a8a0b3e8" +path = "../build/minified/site/ko/books/learning_rsync/04_rsync_configure/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_rsync/04_rsync_configure/index.html_br_528dedb879c3263c055cab073b05e72402b4fd405d01ed229660a962b894c8c4" +path = "static-publisher/static-content/file2333.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_rsync/04_rsync_configure/index.html_gzip_8711388a3c3451a77e395d858d85f3ae9d69c3335a4a639ca4f29228e31fde5f" +path = "static-publisher/static-content/file2333.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_rsync/05_rsync_authentication-free_login/index.html_65a6c5b3587245b0acacb7e1d1cfb43d5948f72d48ad8afeb6dfc3d1fc67d9ef" +path = "../build/minified/site/ko/books/learning_rsync/05_rsync_authentication-free_login/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_rsync/05_rsync_authentication-free_login/index.html_br_ed5a7d7191ebff83e42099429824d0339ae78f483f6bb9390a18bbd004ee70d7" +path = "static-publisher/static-content/file2334.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_rsync/05_rsync_authentication-free_login/index.html_gzip_a4a462537e96003cd6bf159a5533b8b7c8e3c47e8a175d5807195068544bcb73" +path = "static-publisher/static-content/file2334.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_rsync/06_rsync_inotify/index.html_1f67170d1417730ca1ae6ca744e15513e169df98ff37cc2407ab7cd8a2be9073" +path = "../build/minified/site/ko/books/learning_rsync/06_rsync_inotify/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_rsync/06_rsync_inotify/index.html_br_5ebcd22702cac3726230e08d6a48312382520fcb85bce4458c5caa28b3dc4669" +path = "static-publisher/static-content/file2335.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_rsync/06_rsync_inotify/index.html_gzip_581116c763f5ee1acc91338365bd7804fccbbe13fa3f320335454fa9d3ecc973" +path = "static-publisher/static-content/file2335.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_rsync/07_rsync_unison_use/index.html_29f7582d947fc96661dfc7897527d89af15b6e28d3f35e2a078935ad65ae2e3d" +path = "../build/minified/site/ko/books/learning_rsync/07_rsync_unison_use/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_rsync/07_rsync_unison_use/index.html_br_dbf35022954db99ac7ff2cff2b420b5fff9b761febc35a7ae363836873e9e337" +path = "static-publisher/static-content/file2336.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/learning_rsync/07_rsync_unison_use/index.html_gzip_483a667087417037619ddd6e20185590014e656e4f8ccb2a529f80041a047b95" +path = "static-publisher/static-content/file2336.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/licence/index.html_f0571a27ed2e424a0b4b2a34494b0124341e09a427497e74aa5988ac83260a86" +path = "../build/minified/site/ko/books/licence/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/licence/index.html_br_8aa775d738ccfffb99cab1a68913732ddc52c816e13b9f09b1e43c0081a0cdbe" +path = "static-publisher/static-content/file2337.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/licence/index.html_gzip_8774bcb90ec6181076e345da643faa32e91108c3bfb5360b515bb6243fad4005" +path = "static-publisher/static-content/file2337.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/lxd_server/00-toc/index.html_80d4e2670cb2dcf6adde807a0a0aabc111d6d05df5bfa02fec154988777a4d7d" +path = "../build/minified/site/ko/books/lxd_server/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/lxd_server/00-toc/index.html_br_61ce2388520c4ff50d2c2d220b361367b47a044d5cd27f9a25b96fbe19216608" +path = "static-publisher/static-content/file2338.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/lxd_server/00-toc/index.html_gzip_b8afa52e6936cb974893981ce604a399263b81093875f08dc45eb0bc52566f41" +path = "static-publisher/static-content/file2338.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/lxd_server/01-install/index.html_a9427d0cba9c2bfbea24680a61721c7d320f005d4254585ce96bb711aa14d07b" +path = "../build/minified/site/ko/books/lxd_server/01-install/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/lxd_server/01-install/index.html_br_f3ad6e22b03bb332f92d4192d506848b471f6c482d92b2043d23782edf727627" +path = "static-publisher/static-content/file2339.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/lxd_server/01-install/index.html_gzip_26d733b33201d71e78d7c061552ec183d88f1507f30a9611bc91cb847b594ac0" +path = "static-publisher/static-content/file2339.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/lxd_server/02-zfs_setup/index.html_9a50c0a3ca3163c9796eb7bd9852ad0da9652e19f93e44f4078b924a152323e9" +path = "../build/minified/site/ko/books/lxd_server/02-zfs_setup/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/lxd_server/02-zfs_setup/index.html_br_13bfb4ab81900366a3a62cea482021e8c80a4f581f740cb0e40d53c1b64201e3" +path = "static-publisher/static-content/file2340.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/lxd_server/02-zfs_setup/index.html_gzip_e6537eb33cd0846b7f01b5abb3fa98aaca933fc3a4cf40a07c889d41016be262" +path = "static-publisher/static-content/file2340.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/lxd_server/03-lxdinit/index.html_389eb11acda284f27486a5abde1ded72d7515484346616bf71c4187f371cba7e" +path = "../build/minified/site/ko/books/lxd_server/03-lxdinit/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/lxd_server/03-lxdinit/index.html_br_8f99374c2f07bf66b23c4f176ff4d5bee48ed6132a2c2ee57970180bcd1e978e" +path = "static-publisher/static-content/file2341.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/lxd_server/03-lxdinit/index.html_gzip_2e10266d273824a489612725d13ea6d23a421d68c29744ee9dff3a73e4c7ab85" +path = "static-publisher/static-content/file2341.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/lxd_server/04-firewall/index.html_f86749386d599daf46bd06392b1e92c3a9d3a566c543f5223b2e037a872351bd" +path = "../build/minified/site/ko/books/lxd_server/04-firewall/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/lxd_server/04-firewall/index.html_br_ff4e92cadb187c6339b9dfd851bfd20d0b1bc8be7afb731c2b0cd4da47d64adf" +path = "static-publisher/static-content/file2342.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/lxd_server/04-firewall/index.html_gzip_ebc9c074d80bd5eb5fee4268a5cd71719328c559526296aae02bdfce97f4e564" +path = "static-publisher/static-content/file2342.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/lxd_server/05-lxd_images/index.html_3889cdbdf49bc6415d16eeeb57c5b8731c16b93aab5f31b57e7e48baf34de8c6" +path = "../build/minified/site/ko/books/lxd_server/05-lxd_images/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/lxd_server/05-lxd_images/index.html_br_be0fed7ebec271499f037b2af43034ec68d204714a727db390ac2b91318470a7" +path = "static-publisher/static-content/file2343.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/lxd_server/05-lxd_images/index.html_gzip_fbc100897ac46382df7ae3e7940b11da3e0a49cef6d98329ac3fef3024437fa8" +path = "static-publisher/static-content/file2343.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/lxd_server/06-profiles/index.html_d73b53e317b690d9c1678591d2946a92953f54e3338fc6332556fe93861097af" +path = "../build/minified/site/ko/books/lxd_server/06-profiles/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/lxd_server/06-profiles/index.html_br_c9c44477118ffcc23db8eecff885aecdc724d279d3321092feb7527d0cbff5e4" +path = "static-publisher/static-content/file2344.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/lxd_server/06-profiles/index.html_gzip_3efaf0d9fea6408b2dd8c54d1843bd6f668872c9707809a6ac6be3514441b36a" +path = "static-publisher/static-content/file2344.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/lxd_server/07-configurations/index.html_47b35675f7c8c08439fc685eb70461bcb8cefbb7460d17d56689a65d2cd7ba00" +path = "../build/minified/site/ko/books/lxd_server/07-configurations/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/lxd_server/07-configurations/index.html_br_fa80560f2bf4b3b6e3ccb42926493cf7cde6dc13cb7c384044639b14e65c357a" +path = "static-publisher/static-content/file2345.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/lxd_server/07-configurations/index.html_gzip_50081378fbfc8333242845a638ea80b074d9819a76261669541a9ee17eee72ea" +path = "static-publisher/static-content/file2345.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/lxd_server/08-snapshots/index.html_fe58827d706b9c82427898d08a8a3c598dd844c5963cde33fbbb702670f2d503" +path = "../build/minified/site/ko/books/lxd_server/08-snapshots/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/lxd_server/08-snapshots/index.html_br_12e4030d0aacd319645b246ec411ac78e52d629ea923a07e89fa825dda4afcbb" +path = "static-publisher/static-content/file2346.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/lxd_server/08-snapshots/index.html_gzip_29f0e1f4c358b38e924401b87f65d2d146b5cd3a032bc76824d839bccec820dd" +path = "static-publisher/static-content/file2346.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/lxd_server/09-snapshot_server/index.html_7840b9094c524b18d363c247734685bd85d0c8e54d20e7cc4fa688378c4b2249" +path = "../build/minified/site/ko/books/lxd_server/09-snapshot_server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/lxd_server/09-snapshot_server/index.html_br_7b44274935c8a49812d922e89145873325c1c8a466edadd7a4289a162b96cfb7" +path = "static-publisher/static-content/file2347.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/lxd_server/09-snapshot_server/index.html_gzip_be56995f3b17cf2a8e8e700f06dba8b83a35fecd06c296034e0a6b0c13c5705d" +path = "static-publisher/static-content/file2347.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/lxd_server/10-automating/index.html_1da13c91d01076070bd13eefbc82e4c9e51f8a5f9a0af3e8f50558fa05cdc94f" +path = "../build/minified/site/ko/books/lxd_server/10-automating/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/lxd_server/10-automating/index.html_br_a01054c9eb4b00dc2f1f1aef73df6a68eb4be727ccad710c75d289884d18a70e" +path = "static-publisher/static-content/file2348.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/lxd_server/10-automating/index.html_gzip_8512e4e9e3ffac27aa9e8d12f22257433e22e8446f0696da632c97d34c573d99" +path = "static-publisher/static-content/file2348.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/lxd_server/30-appendix_a/index.html_65b896c0c8461630c4e9313e2952c18686a1c90c374f00f387d86e678a47a1ad" +path = "../build/minified/site/ko/books/lxd_server/30-appendix_a/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/lxd_server/30-appendix_a/index.html_br_9f9c7cab464ca6f1561e82bd8ab0f096e9c9399834fc7b4d054f91a88d313ae0" +path = "static-publisher/static-content/file2349.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/lxd_server/30-appendix_a/index.html_gzip_9a37acc18ad283e80778dafe0ad76a91cff0afc40b89a0f99d7443f9ccb1cb72" +path = "static-publisher/static-content/file2349.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/nvchad/additional_software/index.html_91256aa7fabb46243b6e6fb1166ef70a4b5201f9e4efdaa64cb1b4d9d7d88c16" +path = "../build/minified/site/ko/books/nvchad/additional_software/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/nvchad/additional_software/index.html_br_ad5a99075de6816e8a0d04b0d8fd7686eab1725329503e064455a842a59f2d7e" +path = "static-publisher/static-content/file2350.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/nvchad/additional_software/index.html_gzip_4c878be29e7234369f8d5896d1e598ad9828869e8a059a05987738f36b1e48d9" +path = "static-publisher/static-content/file2350.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/nvchad/index.html_3876e54b99e0d3f7f12fb09637790e2864a8be49f3099524cc8e632f1053dc21" +path = "../build/minified/site/ko/books/nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/nvchad/index.html_br_82a2e9bf6986065f9053cb3b0aa78ec1330d7421f664d7ea39d666a7e6b2b961" +path = "static-publisher/static-content/file2351.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/nvchad/index.html_gzip_24e615102a8004718d23db0cb0678f832e336a1ddc25c75d04e97211a1b68479" +path = "static-publisher/static-content/file2351.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/nvchad/install_nvchad/index.html_9012c85c5c593570909053b35a1a1b2197cedfa1d9b30ac3d95cfea6fdb885b8" +path = "../build/minified/site/ko/books/nvchad/install_nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/nvchad/install_nvchad/index.html_br_9c17d65606c00edb3be881a24f7312b620765249e44cefd7c4cf17b21f374994" +path = "static-publisher/static-content/file2352.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/nvchad/install_nvchad/index.html_gzip_0d54ff41b5a7d505e83021d78f4abb8db5a4d845d4b837fc2beb868fd261f77f" +path = "static-publisher/static-content/file2352.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/nvchad/install_nvim/index.html_b43314013340dc21ba8860a9e69a516cc9ab7448eacfb589a1618791c355f8e8" +path = "../build/minified/site/ko/books/nvchad/install_nvim/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/nvchad/install_nvim/index.html_br_45ef2b6210d6dd451b6fbe0438ed54c9f4ed366ff889b342062d6c93e8a1acbf" +path = "static-publisher/static-content/file2353.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/nvchad/install_nvim/index.html_gzip_7e932670b8c487c059521a05a0b5496f3f7db458786ef5b206678a41a6a14432" +path = "static-publisher/static-content/file2353.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/nvchad/marksman/index.html_d73e2d38feba6dc5ad0712b9909d7a4c588055224f79f0fe95616f4ce55f7163" +path = "../build/minified/site/ko/books/nvchad/marksman/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/nvchad/marksman/index.html_br_3240bd9ccaf95c165ee2b0ec676c814a29fca3788ad1d5769eff664edf40d2fe" +path = "static-publisher/static-content/file2354.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/nvchad/marksman/index.html_gzip_6030f51850d53bbfd1a3097a02cc942163f3e09dd5bccbf3da3ab819c294bc43" +path = "static-publisher/static-content/file2354.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/nvchad/nerd_fonts/index.html_bb1254811e22a376699d5fad06b19c5610c5f05cebbf69f2852c6ab3cae6c70c" +path = "../build/minified/site/ko/books/nvchad/nerd_fonts/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/nvchad/nerd_fonts/index.html_br_8806a22de90b360411e09b4dad427ad8d7ff82bb14a50a614006903910bf6bf8" +path = "static-publisher/static-content/file2355.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/nvchad/nerd_fonts/index.html_gzip_5248f6ffe846495b4f6c5b32e13fccec6754aae81b71ebe4a7cb2b34b7d84bd7" +path = "static-publisher/static-content/file2355.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/nvchad/nvchad_ui/builtin_plugins/index.html_b789b4fba71ff0becc3ed7bfc9c2dd19fba81248b5129616e97c6a182cf5e21f" +path = "../build/minified/site/ko/books/nvchad/nvchad_ui/builtin_plugins/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/nvchad/nvchad_ui/builtin_plugins/index.html_br_0662c5613e16e2784dbfcf15a5c53b8d1aac2fd0922b4c31b7a31583001f31b3" +path = "static-publisher/static-content/file2356.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/nvchad/nvchad_ui/builtin_plugins/index.html_gzip_849103c54396f5519b094f99bda04a4a0825dd7ed555c0ced4b743e1e28e17ae" +path = "static-publisher/static-content/file2356.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/nvchad/nvchad_ui/nvchad_ui/index.html_6c5a144c4d6eb90319df63fa87b5558617280ff2322f18af32dd79fdc72599f0" +path = "../build/minified/site/ko/books/nvchad/nvchad_ui/nvchad_ui/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/nvchad/nvchad_ui/nvchad_ui/index.html_br_473b34e832214fddd53b8ce515d8f4b67eac686f66da0e330e6afb6608a43a09" +path = "static-publisher/static-content/file2357.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/nvchad/nvchad_ui/nvchad_ui/index.html_gzip_63a7bcf43fb2e207c6fe0433ddde4aa0a254c77b143c8c06b0a9130f89eb17f5" +path = "static-publisher/static-content/file2357.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/nvchad/nvchad_ui/nvimtree/index.html_6125d43f9baca11bf38eff46bd5953e0e1e2e30a90027dd430850f660e1ef171" +path = "../build/minified/site/ko/books/nvchad/nvchad_ui/nvimtree/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/nvchad/nvchad_ui/nvimtree/index.html_br_12db172ed24323fe8737bc975c4e79b6eaebed261b435d39caa36014eeff0c1a" +path = "static-publisher/static-content/file2358.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/nvchad/nvchad_ui/nvimtree/index.html_gzip_20fbdc64104d1b747c377dbd0ba26b819fb3a3779e113f4a705609a6e5f24443" +path = "static-publisher/static-content/file2358.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/nvchad/nvchad_ui/plugins_manager/index.html_2f359bae9bbd0c6eb40d6b6857c47237991b1cf6a9af5fb91b469a1b3b568a69" +path = "../build/minified/site/ko/books/nvchad/nvchad_ui/plugins_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/nvchad/nvchad_ui/plugins_manager/index.html_br_e73e8bf0724c1ef0660455bdaa4cdb97f7620ee28fbaf004b00087d29ef7ed22" +path = "static-publisher/static-content/file2359.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/nvchad/nvchad_ui/plugins_manager/index.html_gzip_4f2a4407d3bf2031a809a77fd260f66fe0a2e0ced0c69475f040e54c96bd9d7b" +path = "static-publisher/static-content/file2359.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/nvchad/nvchad_ui/using_nvchad/index.html_afd1766977baa311438d94cb7042ade57ded7d82593f8bdc8a2f8fbc0c2745ad" +path = "../build/minified/site/ko/books/nvchad/nvchad_ui/using_nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/nvchad/nvchad_ui/using_nvchad/index.html_br_16ff22c22a92f62f6dace7d97dc1c9cf71fa798196d9aef63a179db9cfc0de14" +path = "static-publisher/static-content/file2360.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/nvchad/nvchad_ui/using_nvchad/index.html_gzip_a71c2f913fbed143d792842b8c94e85f92d7752d5e412f299df0b6a2f7b08634" +path = "static-publisher/static-content/file2360.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/nvchad/plugins/index.html_19181c13746b491c63aa7aa533c841cd05fe39d57554e21092dd1f490836b501" +path = "../build/minified/site/ko/books/nvchad/plugins/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/nvchad/plugins/index.html_br_718fb661f5410784be0bf4b7dbdc1ab43fa3944685279ee7e7546f4f898b4f06" +path = "static-publisher/static-content/file2361.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/nvchad/plugins/index.html_gzip_523a3cdd59f0fefbceda143802142e1c055ee948a0edd8b916990a0f70b5a9cd" +path = "static-publisher/static-content/file2361.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/nvchad/plugins/md_preview/index.html_b5fa894db085af5d88005cd1ff290e45e952bda4a0e43e580c4543d88a76444f" +path = "../build/minified/site/ko/books/nvchad/plugins/md_preview/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/nvchad/plugins/md_preview/index.html_br_6c55cfb320980a6f325c8942fd0dc8bdfced2e736e859a134dcd6cae76e5fe31" +path = "static-publisher/static-content/file2362.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/nvchad/plugins/md_preview/index.html_gzip_45a79b3789f264e9d97c3dba55383377e7be33d889612a26e83e69888de36d94" +path = "static-publisher/static-content/file2362.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/nvchad/plugins/projectmgr/index.html_d66ca24610b66bef085a123a96bf602e4f5e6c6528a53d8c8faa06a7495e6853" +path = "../build/minified/site/ko/books/nvchad/plugins/projectmgr/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/nvchad/plugins/projectmgr/index.html_br_3fef4d12f283b4e54b30881e6349edefd54465b8f93bc86b408e4725ac551bc0" +path = "static-publisher/static-content/file2363.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/nvchad/plugins/projectmgr/index.html_gzip_2d7731f28f36b25409ca99ed888e5773f890dfd108bb0f9856cc95f4452511d7" +path = "static-publisher/static-content/file2363.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/nvchad/template_chadrc/index.html_f4f95f9a6f036fad314fbec396122e37cd9a97e9c5b6b9b1a2452704decefae0" +path = "../build/minified/site/ko/books/nvchad/template_chadrc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/nvchad/template_chadrc/index.html_br_767561d6066a789c4adcf978a0aa1b2e74262da4847fef79f31448ce54e17a4a" +path = "static-publisher/static-content/file2364.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/nvchad/template_chadrc/index.html_gzip_e0c70acf7bffdabd162de647fc31a3246ca11783f1e2fbe4df536dfa927977d2" +path = "static-publisher/static-content/file2364.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/nvchad/vale_nvchad/index.html_e87ae20cd940ecd1541fea706ab06f066ae633dfb6cbcad75894e70fe92a7c62" +path = "../build/minified/site/ko/books/nvchad/vale_nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/nvchad/vale_nvchad/index.html_br_5b6ae60122ddf11a1b6e4c71d88a0425189456ae385a82f52c0e74a6675b606d" +path = "static-publisher/static-content/file2365.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/nvchad/vale_nvchad/index.html_gzip_690bcfce5a8e91da701b627f0ce44b41464558b4096ec7f3bd4db80ed60ab361" +path = "static-publisher/static-content/file2365.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html_1ec3db7637574295da0db95ab9b2c3a10363224a1d6e9725c0dc6546a61caf85" +path = "../build/minified/site/ko/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html_br_857c270e0adc1fe591b17344d83a6635cdc586e9fa3bfbd32c087bdb7d729c72" +path = "static-publisher/static-content/file2366.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html_gzip_c81fa7444143de161aaad38cc334d53f3ed2a2b8103664ad0fd51d075b55fced" +path = "static-publisher/static-content/file2366.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/sed_awk_grep/2_grep_command/index.html_c94c09fa7151307b4e1a8d1f38e450c2f5a255faa1bc3551c0947e2d027c3cc1" +path = "../build/minified/site/ko/books/sed_awk_grep/2_grep_command/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/sed_awk_grep/2_grep_command/index.html_br_9dbbee5df2c7a02c8b2d4a447a0f1a876ee94c74d804402cdf4ab94d8bdf6119" +path = "static-publisher/static-content/file2367.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/sed_awk_grep/2_grep_command/index.html_gzip_360170d64ce694299e28fa7ef43bf672b471ae6b0c378a478b512e2e44b92c7c" +path = "static-publisher/static-content/file2367.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/sed_awk_grep/3_sed_command/index.html_c5269cc0d19233a0ee7b4fd612891381c4ba1fac6ba57f5312953d2074830ad2" +path = "../build/minified/site/ko/books/sed_awk_grep/3_sed_command/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/sed_awk_grep/3_sed_command/index.html_br_d1c3b85fdf891808e68e758ac41bab2da8c0301928f2eebbfb9db170711b27ee" +path = "static-publisher/static-content/file2368.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/sed_awk_grep/3_sed_command/index.html_gzip_0570c590c37bf7bc72b4046dc90e5f868d93c9b00e77b330ba5402387cd875f2" +path = "static-publisher/static-content/file2368.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/sed_awk_grep/4_awk_command/index.html_5e3368a558ce82c8721dd32787c1399f7ecd9393ab81f00704e02200409fba45" +path = "../build/minified/site/ko/books/sed_awk_grep/4_awk_command/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/sed_awk_grep/4_awk_command/index.html_br_1943fac3a0bfedb0a0e61d7c7a3fc4349340b19698d9a2afa74aa0d6db859ac5" +path = "static-publisher/static-content/file2369.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/sed_awk_grep/4_awk_command/index.html_gzip_cef76a4b5ca8b5e7065da8e77a26a3455f961343679e02e88c42dbdccb1aa080" +path = "static-publisher/static-content/file2369.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/sed_awk_grep/index.html_7e8a75c8909d31e8eb3a1330ed228a340c4ba501c0d3ec427498a5dbe3ca67ac" +path = "../build/minified/site/ko/books/sed_awk_grep/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/sed_awk_grep/index.html_br_ae5a7948e7310c8901e2135dc315333d0ebed272de2eea44fee1a066955fc5e1" +path = "static-publisher/static-content/file2370.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/books/sed_awk_grep/index.html_gzip_8a480ec457b00767a3d0b93a01ee70ada69ac2768d0dc4d05ff66cd373c13e30" +path = "static-publisher/static-content/file2370.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/containers/docker/index.html_4bf8369c7d8ca9762383b220448f1ad139d4cec67c153847c6c081b8e3e9b3d9" +path = "../build/minified/site/ko/gemstones/containers/docker/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/containers/docker/index.html_br_6f42148a7de282d97f5af3877bc5de270a456a6a53118666b71b2cbb840df0f9" +path = "static-publisher/static-content/file2371.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/containers/docker/index.html_gzip_42474026a723595fcdaadc82fb9b72ad9901b28687fb3d6531b84442de99e4da" +path = "static-publisher/static-content/file2371.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/containers/podman/index.html_3de419b1a95c195e717ac83145b90ba2727789a343e7a159c830555a69754aad" +path = "../build/minified/site/ko/gemstones/containers/podman/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/containers/podman/index.html_br_973fb6a8caa6de6b72cfb88361a88739ac91effd3afdfd7893edbde37a038ac4" +path = "static-publisher/static-content/file2372.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/containers/podman/index.html_gzip_4e28eb7bada3c2e56d34af0e835a6fec43bcc33d6b4cb66e87923458896edba3" +path = "static-publisher/static-content/file2372.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/core/view_kernel_conf/index.html_d042d4f2d317d471a64aa3331cc5ea4de301ff15a9baf3adc5294febf47c1c69" +path = "../build/minified/site/ko/gemstones/core/view_kernel_conf/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/core/view_kernel_conf/index.html_br_63cf2189750b38ab5677bac9c289cc39698d5574f94508fe42fe457fb4e61a57" +path = "static-publisher/static-content/file2373.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/core/view_kernel_conf/index.html_gzip_613e04568b862b219f8f0210ad87d188d6886f2192d1ebbd5f2cd8526277eb95" +path = "static-publisher/static-content/file2373.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/dnf-swap/index.html_15ec37bbcc5f25166eafd9735272e8b8e70c0ed38904b113baa3b23c5b3831e0" +path = "../build/minified/site/ko/gemstones/dnf-swap/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/dnf-swap/index.html_br_3f3b6c07f098fda679e00ad2d82a6461604c805a272f998d6e017077365585a1" +path = "static-publisher/static-content/file2374.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/dnf-swap/index.html_gzip_7392158457e40faa18bea88629231a5add9ba0d3e308fcadb979e79428c5c86b" +path = "static-publisher/static-content/file2374.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/gemstone_template/index.html_0662f338343355ab83ec68268c9121554020529acb1f31eeb86b76d29527da98" +path = "../build/minified/site/ko/gemstones/gemstone_template/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/gemstone_template/index.html_br_6c1fd068485630b4aa2ed105d5e7e95b20def004c9e4e1fa815f61cbfa2e8083" +path = "static-publisher/static-content/file2375.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/gemstone_template/index.html_gzip_27b68ab935e002a8f811e6c9629712d268ccbf2bb1c024ee077a4fd17bea7f82" +path = "static-publisher/static-content/file2375.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/git/00-gh_cli_installation/index.html_6344c6f2c789b43fedb4c5bbfc056a72364b278be25cd478fab31cc077c753a3" +path = "../build/minified/site/ko/gemstones/git/00-gh_cli_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/git/00-gh_cli_installation/index.html_br_e6e8615b96b9f9354d73b010f1eb797d2c12687229782833f891b3e67dace8ee" +path = "static-publisher/static-content/file2376.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/git/00-gh_cli_installation/index.html_gzip_1655fa98563b9eb352c42edda7c393d5e579c8beca5b3b6f7f917bfec3f2e1f9" +path = "static-publisher/static-content/file2376.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/git/01-gh_cli_1st_pr/index.html_cce45637bfd4e5103aa57c39571aa195c0533a60ebc01360aa8143fd15a452d6" +path = "../build/minified/site/ko/gemstones/git/01-gh_cli_1st_pr/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/git/01-gh_cli_1st_pr/index.html_br_78107bc37f0ffe2023721b3fbbb80cfbf44079ac878235d4e6978409646d8ee2" +path = "static-publisher/static-content/file2377.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/git/01-gh_cli_1st_pr/index.html_gzip_b0bc20a110b25452e9d2343132342d6387d100cfebee32ac6b9aca631ac8c95c" +path = "static-publisher/static-content/file2377.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/git/02-gh_cli_edit_pr_title/index.html_fad2bae152a45a86284c40812381d858dc97a7014b763a4929825afebebbc140" +path = "../build/minified/site/ko/gemstones/git/02-gh_cli_edit_pr_title/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/git/02-gh_cli_edit_pr_title/index.html_br_b1ab515c360069c6ff0cde7064b6152ecc824017a73499618daa9c56bb559027" +path = "static-publisher/static-content/file2378.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/git/02-gh_cli_edit_pr_title/index.html_gzip_809865d81f79c9acdfd012b4dfedc702c5906e9c3a595226b6fa3fa8746cdb6b" +path = "static-publisher/static-content/file2378.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/git/02_github_web_edit_pr_title/index.html_2914151bb65ccdc608a65680a5c28a0f4912a323643f29221d0c5d682726275c" +path = "../build/minified/site/ko/gemstones/git/02_github_web_edit_pr_title/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/git/02_github_web_edit_pr_title/index.html_br_6be70d30acf8d31087e52f0f96f49176f952bf601d1d01ff327d8ebc752bd090" +path = "static-publisher/static-content/file2379.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/git/02_github_web_edit_pr_title/index.html_gzip_6fcd7dadf9be109a2b6be7e2d4a436443a9145804354da6d687c022dca5e5886" +path = "static-publisher/static-content/file2379.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/git/feature_branch_workflow/index.html_7a2c5e676b45f5f372a4c06cce29fc603dcf867e3502dcb6fcd033a611339ac0" +path = "../build/minified/site/ko/gemstones/git/feature_branch_workflow/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/git/feature_branch_workflow/index.html_br_d7dea0c70ced6f0a46cd379cc981ae1729335a7257135ea177ee123bceb13a89" +path = "static-publisher/static-content/file2380.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/git/feature_branch_workflow/index.html_gzip_f9233edbf199732455077c67d8825bcf9a5b59c9b19cab5f0410cafcdda186c0" +path = "static-publisher/static-content/file2380.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/git/fork_and_branch_workflow/index.html_9d8cf6603abfe7aa11d60f5b40b8221c231a0474e58e81bb192e8a53ad90e8c1" +path = "../build/minified/site/ko/gemstones/git/fork_and_branch_workflow/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/git/fork_and_branch_workflow/index.html_br_131e65e802cf01f7f16b816cabfe98519e0ac4dd3bf3617df6b6e981deaac65f" +path = "static-publisher/static-content/file2381.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/git/fork_and_branch_workflow/index.html_gzip_6cfa7afa1e099f8cd99c80e657bf6b804365d39c4371877c300dff48783f4503" +path = "static-publisher/static-content/file2381.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/git/git_pull_vs_git_fetch/index.html_924074dc5e40da792946fbc0eee31c575068b3b963e4d8b0720d12b440475ea2" +path = "../build/minified/site/ko/gemstones/git/git_pull_vs_git_fetch/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/git/git_pull_vs_git_fetch/index.html_br_afc756753677dcf793bbfd1d74f7c864300c75bdf94157804f6931790b893702" +path = "static-publisher/static-content/file2382.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/git/git_pull_vs_git_fetch/index.html_gzip_0ace360df5031fc90eab78f2fe39c7bdad374e7b0677d843aa5eb5f795c59f7f" +path = "static-publisher/static-content/file2382.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/git/git_remote_add/index.html_98c938e9929c5c8a003842f77e97ff9cb5217c2f721bdc0c61d16d34b44e8278" +path = "../build/minified/site/ko/gemstones/git/git_remote_add/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/git/git_remote_add/index.html_br_cd15b73030f2078201eb4442ff024d2dcaccacb7c0a5cd90773212372ce9deb2" +path = "static-publisher/static-content/file2383.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/git/git_remote_add/index.html_gzip_264980005d2374c7246b4829758f235afaa14b75701c9fc6da45907364ad68da" +path = "static-publisher/static-content/file2383.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/git/tracking_and_nontracking_branch/index.html_ff84c5a9c206f9dcc502c57338b1a0d4a7906c803ad6737dfd3b4ded1f178a0d" +path = "../build/minified/site/ko/gemstones/git/tracking_and_nontracking_branch/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/git/tracking_and_nontracking_branch/index.html_br_74f97b11e3caeed6a2539935f59c98f467a330d476ad88c95036f900b934fbf5" +path = "static-publisher/static-content/file2384.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/git/tracking_and_nontracking_branch/index.html_gzip_4d90003ad7e692779774a32fb815e70d1cf6d843b5685b3d3d1b934977f342a5" +path = "static-publisher/static-content/file2384.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/htop/index.html_623743c7aa447f5a43ca4c49ce0b80043a381d240d8c57d0843b3abd53aeb3c6" +path = "../build/minified/site/ko/gemstones/htop/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/htop/index.html_br_8243b51145afc39b4968a73532de67bb353fc1f83f0528323f5bb5fa7c55e1da" +path = "static-publisher/static-content/file2385.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/htop/index.html_gzip_2fd5f5cb165075b5fdcfc8db61af4ab92dcf36bf04f306cae7390ecf37ad2e5a" +path = "static-publisher/static-content/file2385.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/https_rsa_keygen/index.html_742f3edb70c1a04e4a53d234aa5e15c0c523192a75455bc21bc203d5bfe2886c" +path = "../build/minified/site/ko/gemstones/https_rsa_keygen/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/https_rsa_keygen/index.html_br_a5c2c3b30079b60fc7ed5095bb388df0e9cac3187cc6d43a42c5b6477de3b210" +path = "static-publisher/static-content/file2386.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/https_rsa_keygen/index.html_gzip_52268119bdeed79d768aae7c6540fab23396a9b67acc7c78049672311d6aae41" +path = "static-publisher/static-content/file2386.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/index.html_714a6f656deb76a3c3b7e55ab0e13abeab8b546e3f819fe09fb077e9b811542e" +path = "../build/minified/site/ko/gemstones/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/index.html_br_e98a384d03179f77f6c166ebf7ca6fa69f9d59a9e18c4469b310c0522df01af5" +path = "static-publisher/static-content/file2387.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/index.html_gzip_74b3a6a1f066caf6e3507a44bdf87685e9796ef795247af2d42aa49ec4951f7e" +path = "static-publisher/static-content/file2387.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/markdown-demo-v2/index.html_82b4933c63b204eafc3cea64352b1a302a22a67f819d907035913236baae0a5a" +path = "../build/minified/site/ko/gemstones/markdown-demo-v2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/markdown-demo-v2/index.html_br_eb06236f3e2adb30e19b5895fb580a97d2a7d331c7bb8accedcecae045d669c2" +path = "static-publisher/static-content/file2388.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/markdown-demo-v2/index.html_gzip_0b655f41ce545d23f4184f1bb3a3c3c1afc7280c3e0d8f23fb8a53ff1eb19cbe" +path = "static-publisher/static-content/file2388.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/network/RL9_network_manager/index.html_0b56a5d314799b3b1f3080449d367716fe04bf2ada203dfbd1be4d8ce52bcec9" +path = "../build/minified/site/ko/gemstones/network/RL9_network_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/network/RL9_network_manager/index.html_br_f8703b71372ce30f3d9e227b7b222aeeb6ba1c83dd49d9bc2eb22a8f2e5c5d18" +path = "static-publisher/static-content/file2389.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/network/RL9_network_manager/index.html_gzip_b82d86181ef28c1cd0e36e2275e915e6ee984925de1c35834a39f16518465886" +path = "static-publisher/static-content/file2389.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/network/iftop/index.html_33d81fcf4df13c404c9611c4c13fa222c43ad5cee7a9a0cb389adfebe4632480" +path = "../build/minified/site/ko/gemstones/network/iftop/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/network/iftop/index.html_br_24bb9fa2b2695a16eb9907be4dedbbb96f3cb14fff8160faa623ee1ed4c7df26" +path = "static-publisher/static-content/file2390.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/network/iftop/index.html_gzip_c1ab4c4f342b07f8fcc5da393320387d894f3f539cb24e82141523dbbfab1f25" +path = "static-publisher/static-content/file2390.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/network/mtr/index.html_e4d7ef46dc5d9a3068ec29d5559ec54fca954caa5fa4cb4496f88962b5b2ea75" +path = "../build/minified/site/ko/gemstones/network/mtr/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/network/mtr/index.html_br_01736e7683befeba751d37332f77568b8e9260dbe5c49d0ddcabd74ad1ac3fc1" +path = "static-publisher/static-content/file2391.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/network/mtr/index.html_gzip_af84cf7a7583fd9453b1a318d8c0ec541884da24ae4afc63054dd06bc7167711" +path = "static-publisher/static-content/file2391.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/network/nload/index.html_50e1027e45888df74ef617e2de979fd84e426435ef58ea499b2a0e908bac05c7" +path = "../build/minified/site/ko/gemstones/network/nload/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/network/nload/index.html_br_58c3497e3e0441416e9f8fa0b8ad86d2f882efcf4a06425c512e3a36cb3c3ecf" +path = "static-publisher/static-content/file2392.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/network/nload/index.html_gzip_9dc975bc6da8d430069fb3fcb8b9ad4e22e8971951674eaee1a763522de699a5" +path = "static-publisher/static-content/file2392.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/network/nmcli/index.html_fb31bf730ae960fadd3f7c59b63d6d63b670efe11879c45907999c070382437c" +path = "../build/minified/site/ko/gemstones/network/nmcli/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/network/nmcli/index.html_br_68d4a029f5246ca7f742ea53385ee311eeb94b7da0372bbe628bb966305ea764" +path = "static-publisher/static-content/file2393.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/network/nmcli/index.html_gzip_714cbd23b9f508bb0aab320237e692a265d9ac958dfa7594360cd313bd53987d" +path = "static-publisher/static-content/file2393.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/network/nmtui/index.html_fab56eb9b5a06f49000493e45e8908440fa9a7db548d2f33927d4cd14d59dd6b" +path = "../build/minified/site/ko/gemstones/network/nmtui/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/network/nmtui/index.html_br_9babb566dc1ca8ab94a0ab56902d390ea016e55b1f41801105c93b7c58db0a30" +path = "static-publisher/static-content/file2394.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/network/nmtui/index.html_gzip_5ef8620c7624cd94c086b8dba785b52741e33ae22e7bc2ad9efe65e06e9110e8" +path = "static-publisher/static-content/file2394.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/perl_search_replace/index.html_41614dc8197ddbeb9b20d0a4904945a21cc3c0ce52f8965b1640c8d2d34d35bd" +path = "../build/minified/site/ko/gemstones/perl_search_replace/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/perl_search_replace/index.html_br_241e6075a8dce6a951cb07539306bee7358aed5d7ecd4b13734d5dde301c517f" +path = "static-publisher/static-content/file2395.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/perl_search_replace/index.html_gzip_0ed556e55863c33906b1ccf24d2aceddf1ca44ef0756b1bcf5b0f10eb1519b0c" +path = "static-publisher/static-content/file2395.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/rpaste/index.html_7f0ce96ef18799a98bdbc44c3c568cee785fc8c4044c036a6a8432fe25ad58a5" +path = "../build/minified/site/ko/gemstones/rpaste/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/rpaste/index.html_br_25f19be0538f5a8624dbab34dd3250dcd5f8cc272e25800110e56219a1c1bedb" +path = "static-publisher/static-content/file2396.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/rpaste/index.html_gzip_54db912ab58276e1ed9118a237113477ce5dec27e3f6753bba173c9ef3b7766c" +path = "static-publisher/static-content/file2396.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/scripts/NoSleep/index.html_0d111fea741a2c21d3e25254b5cb855baad959f751d695bfb42f313efc45ea23" +path = "../build/minified/site/ko/gemstones/scripts/NoSleep/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/scripts/NoSleep/index.html_br_0a134519554a0eb2aa4a0391ae68b6c516ae062961da097f628504b4b592aa7f" +path = "static-publisher/static-content/file2397.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/scripts/NoSleep/index.html_gzip_f4abc512fc8095d0efa488afe68e8e4697d7588e8d79c97d7b176ab47d3e6174" +path = "static-publisher/static-content/file2397.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/scripts/bash_stub/index.html_9e39b2c46ec9844073941cecbd1a459cbfb1bf4880fcbf25023dccec579089ad" +path = "../build/minified/site/ko/gemstones/scripts/bash_stub/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/scripts/bash_stub/index.html_br_bac8bdb02a15d515f8644ef65c975bdbad297d977b633653bfa616c9ab0db27a" +path = "static-publisher/static-content/file2398.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/scripts/bash_stub/index.html_gzip_1d4f60563b62a985fefff105a55898149af1ceae358dd2af7493733bf9380f00" +path = "static-publisher/static-content/file2398.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/sed_search_replace/index.html_e73827f8d0e58b3b8902b07b6694c436abb076f7b9bcec615b76f7a7efad2d2c" +path = "../build/minified/site/ko/gemstones/sed_search_replace/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/sed_search_replace/index.html_br_15079395762575319132d2c4686beff773424235ea9d90cfa7f682606a353d5b" +path = "static-publisher/static-content/file2399.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/sed_search_replace/index.html_gzip_dde643de5ebb9c520385138f181b218782b6ca0702b4d10cbd77f2b614ed9275" +path = "static-publisher/static-content/file2399.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/setup_local_repo/index.html_05fec3ff70e97364cc08d2ac23e49222583948ecae99f240d169acd8e4079309" +path = "../build/minified/site/ko/gemstones/setup_local_repo/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/setup_local_repo/index.html_br_9be9de1cf8ccecc4b469898dd357a27d65d4b7eb9d1ab6f6b3ea80843c08b4f6" +path = "static-publisher/static-content/file2400.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/setup_local_repo/index.html_gzip_e9d9897491f1c788df50f067b806e171de5f0c168a03f82b8c4a18694f8fe4e9" +path = "static-publisher/static-content/file2400.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/string_color/index.html_1dea5e51fefcce5f0ec13136d8beb1a2f0eeabb6af3b04c52b56f13dce2aa39d" +path = "../build/minified/site/ko/gemstones/string_color/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/string_color/index.html_br_b21fe05b3595fe782df625c646c2b44078e6b6c59d33c2ec9ea477d3cdf11735" +path = "static-publisher/static-content/file2401.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/string_color/index.html_gzip_5a372cd9858f66dbe495ac17cba031f9fdeca57e624eda4035c73f683b809f44" +path = "static-publisher/static-content/file2401.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/systemd_service_for_python_script/index.html_282f4544b36d38d1dbacc89e4766a6b5e2f8d3a54f841757e16a48064bbaa4a5" +path = "../build/minified/site/ko/gemstones/systemd_service_for_python_script/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/systemd_service_for_python_script/index.html_br_7b166097f3eeb64d5756003161857cb2dedca0f24b3d8619423beb4752621bb2" +path = "static-publisher/static-content/file2402.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/systemd_service_for_python_script/index.html_gzip_42898eca29d24913ca64ed78bc8a724e472ac677317931468096bf60f5196a6b" +path = "static-publisher/static-content/file2402.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/test_cpu_compat/index.html_fe12695400659401ad1e33a1260995fd5327241ea3f27ce37b128304f8a1ac7a" +path = "../build/minified/site/ko/gemstones/test_cpu_compat/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/test_cpu_compat/index.html_br_5f5da9306c0c664df08a12024f15f11812ffb893b22e06c9d74466f21af3a68c" +path = "static-publisher/static-content/file2403.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/test_cpu_compat/index.html_gzip_cc06c9399272b4dd4df5bad8a1a315604d68bed82ea27f839f6525f3cb686896" +path = "static-publisher/static-content/file2403.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/torsocks/index.html_bd471d6de3aca902661d9216c11234b3b7510b4c7b46891ab31c5e3ecbb6f55c" +path = "../build/minified/site/ko/gemstones/torsocks/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/torsocks/index.html_br_7d9c9ad4eb5fc57e8fd45a96366b4497e0e2ea8cd3e215900a95ae44f8d9f117" +path = "static-publisher/static-content/file2404.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/gemstones/torsocks/index.html_gzip_68db55e5d9a7ab800da1830cc2ecd5a912f0878d0d0573c38ec5661eace8bf3d" +path = "static-publisher/static-content/file2404.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/8_6_installation/index.html_c6af253be50e47c2cd474c09d9aa55a4ce170d4e7cc02f0676702f29c15d06c7" +path = "../build/minified/site/ko/guides/8_6_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/8_6_installation/index.html_br_e90812fa36123f43c2cba757f3a8a3e29b0065d378c3e91a20ea7846a3674a3d" +path = "static-publisher/static-content/file2405.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/8_6_installation/index.html_gzip_d79c221d3f1fc1dbdac70e0c8e031469d112338c8362f5e143c3902b052b62e6" +path = "static-publisher/static-content/file2405.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/automation/anacron/index.html_5c585234c1a7e95850e1a4a65508d2817bad1ce163963f8dd4152ebc03d13251" +path = "../build/minified/site/ko/guides/automation/anacron/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/automation/anacron/index.html_br_47fea1b87995d69c1fa8ae1e21ea51271c640704b1bd22a29838556101dd1070" +path = "static-publisher/static-content/file2406.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/automation/anacron/index.html_gzip_0b3ced5e954bfa7f1cb69154ad837888819e9daa45bdb5c7d1672b3e1be7acf8" +path = "static-publisher/static-content/file2406.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/automation/cron_jobs_howto/index.html_19f9c6f8cb9a1572d49e3d7392e7efb8540b517ae706115b562dfa04cfcce90a" +path = "../build/minified/site/ko/guides/automation/cron_jobs_howto/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/automation/cron_jobs_howto/index.html_br_cec74c2e874856396e011ce36f8413eb196ba16d63bdf22daf2cf5841cb2c308" +path = "static-publisher/static-content/file2407.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/automation/cron_jobs_howto/index.html_gzip_7afe7d9c97f03c8ac438235d062971389b961835a96d1494ec50d8bd9e4212ef" +path = "static-publisher/static-content/file2407.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/automation/cronie/index.html_cf382c234ab1818eebff71ddca91bf29e6d55d96f5f95d9b2320c23f76b30413" +path = "../build/minified/site/ko/guides/automation/cronie/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/automation/cronie/index.html_br_7b82e027dd649e45c06f0d20b9049cb979851d9911fef44649020d48130f133a" +path = "static-publisher/static-content/file2408.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/automation/cronie/index.html_gzip_c70c2d36bd7c8d286070ebbda6e39b2934f22230bac7093d014bde0f30211314" +path = "static-publisher/static-content/file2408.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/automation/olivetin/index.html_211f3d7619bb2d11041e5296ae1b19e4d77bfa50efaf19643f55f00204983cc1" +path = "../build/minified/site/ko/guides/automation/olivetin/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/automation/olivetin/index.html_br_b504f0bdbc23191fa9f54c4e4e614754251135c35edf8dcef359979176b49a4b" +path = "static-publisher/static-content/file2409.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/automation/olivetin/index.html_gzip_2366aea0fcd64e5a895d274b78544be6485defa38d1df6a27a0f936c46e3bf1a" +path = "static-publisher/static-content/file2409.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/automation/templates-automation-packer-vsphere/index.html_be06d28b09e93665e5aecc50e9e42189db534dfb9b81d2896b787ad4350f0a08" +path = "../build/minified/site/ko/guides/automation/templates-automation-packer-vsphere/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/automation/templates-automation-packer-vsphere/index.html_br_d14aba13809edcc50e9e7092795855c40cfcf08745bfe46025f2d8a59badd5bc" +path = "static-publisher/static-content/file2410.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/automation/templates-automation-packer-vsphere/index.html_gzip_7ffbd9b195ebc1e8badedbec6a4dca219bd4030923be8ddac45099ac4f554948" +path = "static-publisher/static-content/file2410.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/backup/mirroring_lsyncd/index.html_5781e25234e119684bb9fb68a9ee09364285fb1989991918beb29463c96c66d4" +path = "../build/minified/site/ko/guides/backup/mirroring_lsyncd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/backup/mirroring_lsyncd/index.html_br_a44fadc975f80d971e55b8d6f7f0595433481d2fa5ddd1a2401bc4df6e7129cb" +path = "static-publisher/static-content/file2411.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/backup/mirroring_lsyncd/index.html_gzip_b5ee6c4b28e5986bf1c70f6e5f1e98479749f464ab15b766f9562209b4de5cc5" +path = "static-publisher/static-content/file2411.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/backup/rsnapshot_backup/index.html_c079e07544d64dbe760a94449c50ae7b0c3ef7c640a0890e93889144c071455f" +path = "../build/minified/site/ko/guides/backup/rsnapshot_backup/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/backup/rsnapshot_backup/index.html_br_e14682c15a28b74c06e4b818f64fe41169f0a874d4d9183ea7d37d834f1fc5d5" +path = "static-publisher/static-content/file2412.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/backup/rsnapshot_backup/index.html_gzip_db1e78fac62a3d9ca81633faa98a7752968cd52505abeb9307d7856391be2a00" +path = "static-publisher/static-content/file2412.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/backup/rsync_ssh/index.html_e8dfb926d0b85ff16a27774ee1b260b396633be28f952aa3ff35b40b3ca047d7" +path = "../build/minified/site/ko/guides/backup/rsync_ssh/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/backup/rsync_ssh/index.html_br_5f9c1c6c7680036c9691a2ab45989a03914f0ba35204ef6891b69c11002a0c77" +path = "static-publisher/static-content/file2413.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/backup/rsync_ssh/index.html_gzip_e5fd6d79ac639a6bb0114cdd079b4b4775b6baded1414b51dc0b6a3ff2f159e8" +path = "static-publisher/static-content/file2413.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/cms/cloud_server_using_nextcloud/index.html_55077a267724b3495c00ae427e7c6dc9a8788e30fdb2498bf0d3a7311f232ae4" +path = "../build/minified/site/ko/guides/cms/cloud_server_using_nextcloud/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/cms/cloud_server_using_nextcloud/index.html_br_dbf9ac0259972de6d99b26de973f0fa691942abad3f26b45754b13b209c7cbd4" +path = "static-publisher/static-content/file2414.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/cms/cloud_server_using_nextcloud/index.html_gzip_a87f9f8250c22259d37617db206237f40d7a2d00777bdc9698a10646e16b1a42" +path = "static-publisher/static-content/file2414.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/cms/dokuwiki_server/index.html_a4f9540470d9f96ccd53094c54a2b4ca6b7b0d4b367142644a8c462bf0fab55b" +path = "../build/minified/site/ko/guides/cms/dokuwiki_server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/cms/dokuwiki_server/index.html_br_c2a9fa194809ab5bf8cf82647415516d528d279cbe5ccb4dd8f861d6724c725a" +path = "static-publisher/static-content/file2415.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/cms/dokuwiki_server/index.html_gzip_819c1aca25d07dfc382335cb85cb6be283d0d1fdc74114648182a9c94953b318" +path = "static-publisher/static-content/file2415.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/communications/asterisk_installation/index.html_ced69384983af11048924f636a9148eae98415f3c46f924c8c9cbd0ea28f40d1" +path = "../build/minified/site/ko/guides/communications/asterisk_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/communications/asterisk_installation/index.html_br_7aded9203c8b2958853834ad0e03bfa36f1bcaa4ab5fddf0c995f6fbedcb1167" +path = "static-publisher/static-content/file2416.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/communications/asterisk_installation/index.html_gzip_640a56941f8712a82dcfb5ebaf6c13a77ef7be83f2cbdfca901501ebb9ca347c" +path = "static-publisher/static-content/file2416.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/containers/lxd_web_servers/index.html_b88fc665dfb9f72d7835dfd5e8ed12e2133e01efb6ee7523c308e7bb402b0d85" +path = "../build/minified/site/ko/guides/containers/lxd_web_servers/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/containers/lxd_web_servers/index.html_br_475b95ffdef9e8cd44c3b58e0f432d7f5045198b418029f188588aeed3e61cfa" +path = "static-publisher/static-content/file2417.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/containers/lxd_web_servers/index.html_gzip_cf2e7110df87c6a7afaa7965cf3745c09fb939b551d42f82e2f57dc4f202fdd5" +path = "static-publisher/static-content/file2417.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/containers/podman-nextcloud/index.html_63d56af2e955f3f9d37570ab81dc847adef2eeffbade3e89cc1352b4b7d3fa9e" +path = "../build/minified/site/ko/guides/containers/podman-nextcloud/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/containers/podman-nextcloud/index.html_br_da3d05e6de85f82af1666312af60b246d08fd30667a9a12011e700ecdd8393b9" +path = "static-publisher/static-content/file2418.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/containers/podman-nextcloud/index.html_gzip_bcc2239850f791b9960ea1f8158727be0a062d0c55727f3e61efbbf21bf756ed" +path = "static-publisher/static-content/file2418.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/containers/rancher_and_kubernetes/index.html_5391cdd54f176a5251918fbf5ad68b33cad10ce6dda0c29af6e773acc4eb1c33" +path = "../build/minified/site/ko/guides/containers/rancher_and_kubernetes/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/containers/rancher_and_kubernetes/index.html_br_d793e2f6dbb54d90792ea23d032cda5bbaf9a9e3c10e1815ab916ad6d04f762b" +path = "static-publisher/static-content/file2419.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/containers/rancher_and_kubernetes/index.html_gzip_71342ccd0d589323f15a1a8f943b51f469bd03cf6c2abbc74d24e0c787aac1ec" +path = "static-publisher/static-content/file2419.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/contribute/beginners/index.html_ffbc04c0a109a654cf3f7aa4eb21d8576f46c622ce9bf88522104804d416ed1a" +path = "../build/minified/site/ko/guides/contribute/beginners/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/contribute/beginners/index.html_br_6c2d7f73e7ffcec6e4cb0d05e7051344faa66307adb0f0e30f67aceabac6f9d4" +path = "static-publisher/static-content/file2420.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/contribute/beginners/index.html_gzip_f58672b1d6bac0d5d5bbdefc5bc543c661bbd801630837d76f9e08c9832f5c25" +path = "static-publisher/static-content/file2420.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/contribute/createnew/index.html_2c83ec422d02d9f14790ba03de90320ded13303cb768a7c6843460643b100224" +path = "../build/minified/site/ko/guides/contribute/createnew/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/contribute/createnew/index.html_br_b157ddadc3b40cae5a2915713569bfee577212158f1f7ade781a98337966364a" +path = "static-publisher/static-content/file2421.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/contribute/createnew/index.html_gzip_82e287c60b27cdc7189229e8c69d94c2bdbdba10f6174481d384f3daf6d13bac" +path = "static-publisher/static-content/file2421.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/contribute/index.html_976f355aa062a489eccc8162b68fb55f354caef9d32f07bbd7e7b7ab0aa5ffe6" +path = "../build/minified/site/ko/guides/contribute/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/contribute/index.html_br_05e69a8f36a1dbaea2193af9904b1f8a2a0e048b75dd5df97a4a2c8e5e2544b0" +path = "static-publisher/static-content/file2422.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/contribute/index.html_gzip_5a9a4dfce0ebb26e54f014397f798e4032f33c831576377441dba98ed7f5db41" +path = "static-publisher/static-content/file2422.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/contribute/localdocs/index.html_6612bdf274e7b332a069641bec52614d2d3c19a6cd81faae2bd66a09009357c5" +path = "../build/minified/site/ko/guides/contribute/localdocs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/contribute/localdocs/index.html_br_cafae5608bc372b4822ab003d20fde1bb6e687daae76a941b2432f1860954854" +path = "static-publisher/static-content/file2423.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/contribute/localdocs/index.html_gzip_8bb36f323735b067a50320f55ad49ca68148d6beea6cdbab767b1dcb4bf18a85" +path = "static-publisher/static-content/file2423.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/contribute/localdocs/local_docs/index.html_d510eb8d687016fb1e2e9d232e3d9466b5a258ae8fe0970f7cb2132e77a9310b" +path = "../build/minified/site/ko/guides/contribute/localdocs/local_docs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/contribute/localdocs/local_docs/index.html_br_d7f89ba136065a2d20b89ce797ce0dc29751ba5d646eef7c9b89dcdd0eb14f7b" +path = "static-publisher/static-content/file2424.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/contribute/localdocs/local_docs/index.html_gzip_14304982914d0e7785a588bdd4e3a8e58b0bf32689b2d43b7fa600cadec60dd0" +path = "static-publisher/static-content/file2424.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/contribute/localdocs/mkdocs_lsyncd/index.html_f05e217b9545450719dbfda03ebfa999846456b44fd3258705f14411c45dbeb1" +path = "../build/minified/site/ko/guides/contribute/localdocs/mkdocs_lsyncd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/contribute/localdocs/mkdocs_lsyncd/index.html_br_a94263e0a507d7fc0d7c784b0ec42c0f2c92ab980257687da7a1ae2acb898f67" +path = "static-publisher/static-content/file2425.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/contribute/localdocs/mkdocs_lsyncd/index.html_gzip_7e5917532716116caef2e7f9fe5962bbc5cdf08325d4355ef9627c7bf89a64ec" +path = "static-publisher/static-content/file2425.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/contribute/localdocs/mkdocs_venv/index.html_e0fe4a123451203e9c3c680186d01a41cd9b72c7b13a5a673f401703e4402f68" +path = "../build/minified/site/ko/guides/contribute/localdocs/mkdocs_venv/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/contribute/localdocs/mkdocs_venv/index.html_br_bd442014368f814856d93bd713e313d47e88d1b3e5c82dc2e27ac02b43f73ed3" +path = "static-publisher/static-content/file2426.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/contribute/localdocs/mkdocs_venv/index.html_gzip_65d7bc36575b308eadcab8fc9bf55fa18961fe11d2afcc93dedbd4d111df904f" +path = "static-publisher/static-content/file2426.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/contribute/localdocs/rockydocs_web_dev/index.html_daad0b4e3ff4f0c03a1be8551e6b606f0d821e0c3d585b97c06a1a5b7d7f214e" +path = "../build/minified/site/ko/guides/contribute/localdocs/rockydocs_web_dev/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/contribute/localdocs/rockydocs_web_dev/index.html_br_715052a6fdad31f1a029445d3a6d855b36672742aae2a1fdec5abc70e3c78b9c" +path = "static-publisher/static-content/file2427.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/contribute/localdocs/rockydocs_web_dev/index.html_gzip_386601a4ceeeb48fcf655caa745de14e52cc70bef248117eb186322be4ee2493" +path = "static-publisher/static-content/file2427.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/contribute/localdocs/rockydocs_webdev_v2/index.html_4338f1f8906ee56b1742b09557cae58d4f672c9e7dd1552629eba1cfc7507912" +path = "../build/minified/site/ko/guides/contribute/localdocs/rockydocs_webdev_v2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/contribute/localdocs/rockydocs_webdev_v2/index.html_br_d48c9c64469410ef81e2e463401668af2192663eae3f80e390bcfd5859c49aa2" +path = "static-publisher/static-content/file2428.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/contribute/localdocs/rockydocs_webdev_v2/index.html_gzip_d1c254b91cebc4e951780da8045779bfeb9c4ca7cd7a03b57a88880aee3d204a" +path = "static-publisher/static-content/file2428.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/contribute/navigation/index.html_f746f5ac667fb0cad2752c2d70a21a10ccc8cab7a67ab063a7b5ba39431ab821" +path = "../build/minified/site/ko/guides/contribute/navigation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/contribute/navigation/index.html_br_e83409324958ddb5f1d39a8b6d8940d22a0d033d780450840b9b51af6e3a541e" +path = "static-publisher/static-content/file2429.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/contribute/navigation/index.html_gzip_f15b34d75fd743f7da5aa086a5c7993e3d02ce0547d5ee30483a5462a6105bd4" +path = "static-publisher/static-content/file2429.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/contribute/rockydocs_formatting/index.html_8a20b18468d5e6730b364e9c167f31a097dc442a6c8877587c222a5cc7497de7" +path = "../build/minified/site/ko/guides/contribute/rockydocs_formatting/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/contribute/rockydocs_formatting/index.html_br_f6b90c0fbd5876b4d733478192b9d5404f8cf721a79e159011914550bbc96b07" +path = "static-publisher/static-content/file2430.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/contribute/rockydocs_formatting/index.html_gzip_406bc8d47cdf1e9af32effb295878b8c0538748769ba1e5515788f418802106e" +path = "static-publisher/static-content/file2430.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/contribute/style_guide/index.html_f6e60dc2ab7a2dd9a319558de82f775a5e66b5d759fa5f191052c8974230ee7b" +path = "../build/minified/site/ko/guides/contribute/style_guide/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/contribute/style_guide/index.html_br_b0d554ae7413ee2b67201ca194a09b1eb185b0c2f52e5ed581547d4bd56bfc97" +path = "static-publisher/static-content/file2431.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/contribute/style_guide/index.html_gzip_442eaa1c0d7aff5e9c3142c5bfde63e40d48159c0d023ee3d52b3c5bc21a0b75" +path = "static-publisher/static-content/file2431.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/custom-linux-kernel/index.html_da02e5719a19a4e9cf6ec67392cc328f78cbc8bdd74300ffbfbbb0b9bf91449b" +path = "../build/minified/site/ko/guides/custom-linux-kernel/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/custom-linux-kernel/index.html_br_6c2f2791015bbdbea0f95779ee454c43672108866ee2ce3ab5b776f197e53048" +path = "static-publisher/static-content/file2432.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/custom-linux-kernel/index.html_gzip_fff19e82569f35d0e5274d1f801f49692d307b37765d1f56753caaefbbc6b1e6" +path = "static-publisher/static-content/file2432.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/database/database_mariadb-server/index.html_78da3d73f434d678f2ca4770b416d6cf66adc959b25f9f7a6c648dae9c1f7471" +path = "../build/minified/site/ko/guides/database/database_mariadb-server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/database/database_mariadb-server/index.html_br_d44b72dd1e484916ac77748edb49a69ba101e28838b1846a0a8ef8dbf4732c4e" +path = "static-publisher/static-content/file2433.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/database/database_mariadb-server/index.html_gzip_c8e04995ee7139abcde80b82d27e193d3f5d39d090b86bc4e691f9ef780b7c89" +path = "static-publisher/static-content/file2433.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/desktop/kde_installation/index.html_13078cd88d3c9f9af56ffd4935d9dbf855cbe59dcf57c922a71c3320699ce3c5" +path = "../build/minified/site/ko/guides/desktop/kde_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/desktop/kde_installation/index.html_br_1fd45708982953bef848a28a349e7f5b1ca66c97605934936165d4ee21501f79" +path = "static-publisher/static-content/file2434.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/desktop/kde_installation/index.html_gzip_46301005ff31bc650dcd649f550c50fc8fbc79fcfcbd898ae1d71b909b5ac263" +path = "static-publisher/static-content/file2434.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/desktop/mate_installation/index.html_7f6895153905a0880f454246c369a8e3cd6078f21b4f639016be0b364bb002e5" +path = "../build/minified/site/ko/guides/desktop/mate_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/desktop/mate_installation/index.html_br_8970a581c9ef93279568eabe0d2506c275ec977577b41913dce33f7273e4d743" +path = "static-publisher/static-content/file2435.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/desktop/mate_installation/index.html_gzip_08b97e43dbaa9c1d03c9cc14d6c8aaa6df6890a939328743f211a62a5cfbb76f" +path = "static-publisher/static-content/file2435.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/desktop/xfce_installation/index.html_3ebce1318077ee7ef77bb14a87dc9f0782b83eb4e91c84c191650ca29e26eb05" +path = "../build/minified/site/ko/guides/desktop/xfce_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/desktop/xfce_installation/index.html_br_2ba96a83bcbd384d78f106ee17ead9cb0e9cc45e9680859a483d6523a6cd7742" +path = "static-publisher/static-content/file2436.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/desktop/xfce_installation/index.html_gzip_99e656b5cd521366604e6f60d2e5f9f14581971db55500180c18d26d4893be41" +path = "static-publisher/static-content/file2436.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/dns/private_dns_server_using_bind/index.html_8e33003d6aac5ddb6602cbbb0b672fa9108f3de749e9fce61a43dcc557f3510d" +path = "../build/minified/site/ko/guides/dns/private_dns_server_using_bind/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/dns/private_dns_server_using_bind/index.html_br_63eece1188cc0458f668721641ca406946c4c9ce9aba7910ed182aae86ff311f" +path = "static-publisher/static-content/file2437.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/dns/private_dns_server_using_bind/index.html_gzip_cdf00aafd59f7ee65685bda861811b4b171306c00438bb64fe814803839957cc" +path = "static-publisher/static-content/file2437.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/editors/micro/index.html_1c30a95c2718356876635481bd25fc7305817c879c5803f13558996d0c2df870" +path = "../build/minified/site/ko/guides/editors/micro/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/editors/micro/index.html_br_d57edf333231c098561518656f0c0017ffc7bf2ad7fcb173d7d0c5c437169ebf" +path = "static-publisher/static-content/file2438.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/editors/micro/index.html_gzip_284337834c757dac8837de300c88d40d1866c70dcdbf454ab5020704e816c0ed" +path = "static-publisher/static-content/file2438.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/email/01-email-system/index.html_fdfa897921125b28b72a04b273b32d45247a4cab017404999b361eac8e4d1781" +path = "../build/minified/site/ko/guides/email/01-email-system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/email/01-email-system/index.html_br_7ff641abbed1ed16cd8976cd91240841500e709d5c65326d14b0db48a1720b75" +path = "static-publisher/static-content/file2439.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/email/01-email-system/index.html_gzip_05e35eef5341e12b8f5f5aaa0e19bef6fd64db3aae423b20b18ed85429560ebb" +path = "static-publisher/static-content/file2439.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/email/02-basic-email-system/index.html_133d4ca1ceb070af20d016b13de2989aa60586f27018f159b9409bc4e9621e1b" +path = "../build/minified/site/ko/guides/email/02-basic-email-system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/email/02-basic-email-system/index.html_br_70d86ee9f962e2b2c0f3f41b8afe2bfe1462a73d35e6c072a32337fd443c8e13" +path = "static-publisher/static-content/file2440.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/email/02-basic-email-system/index.html_gzip_053c3005e1d1de0451e1747fbdd046343e51e58910e7df8924859ff35ed72a64" +path = "static-publisher/static-content/file2440.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/email/postfix_reporting/index.html_afe13758fedeac596de82ad17a50b667bba3354a71f5f5b938f6a9d9c3b7e23c" +path = "../build/minified/site/ko/guides/email/postfix_reporting/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/email/postfix_reporting/index.html_br_37253885263dd904ee705391bdec0f8ce31d66b9ba69ddfe51490447435fdf13" +path = "static-publisher/static-content/file2441.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/email/postfix_reporting/index.html_gzip_6dd7962fc72b7e621d5e912ecad3d0bb158adc8bcd063b54dacc4568e3e4efe5" +path = "static-publisher/static-content/file2441.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/file_sharing/glusterfs/index.html_1ac51a4750557a46385fe135ee13b514cdd214094738cd2c6d961a90668c236c" +path = "../build/minified/site/ko/guides/file_sharing/glusterfs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/file_sharing/glusterfs/index.html_br_fea418cf5784c287d50e767f3de7f7f5014ce8e0ed733a3e0ad1d75986e447d0" +path = "static-publisher/static-content/file2442.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/file_sharing/glusterfs/index.html_gzip_5700a054ac972d781ba83db18d014e1eb4e05578ce3901b2548f84202c7a39f0" +path = "static-publisher/static-content/file2442.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/file_sharing/nfsserver/index.html_38be2d666fff1ce456c05387ef6ab02a8f4d7032e3f560b259fc5b2f7d957a52" +path = "../build/minified/site/ko/guides/file_sharing/nfsserver/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/file_sharing/nfsserver/index.html_br_e75791bc08ae0fcec40de962e4266703c6c3cfd7869679066b761820c13cc73e" +path = "static-publisher/static-content/file2443.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/file_sharing/nfsserver/index.html_gzip_aa8d0f869639e8c14fe0390c37e1b017ae86ebaafa5e69fc74a6607b2c11f43d" +path = "static-publisher/static-content/file2443.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/file_sharing/secure_ftp_server_vsftpd/index.html_85caf8f62c60c774c4ec1d48813560c3ee75212d927685bd121aea029c9d0651" +path = "../build/minified/site/ko/guides/file_sharing/secure_ftp_server_vsftpd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/file_sharing/secure_ftp_server_vsftpd/index.html_br_7242a1140507c611745d2bc0f049f58aab27b29eaceed57a2dc68029872b63a0" +path = "static-publisher/static-content/file2444.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/file_sharing/secure_ftp_server_vsftpd/index.html_gzip_d1a1fe8f6808e88eaf1140434454e7ef67b71b6058ac5fcae56e1dc7046b215a" +path = "static-publisher/static-content/file2444.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/file_sharing/sftp/index.html_baea2c0e6a3b9df771f262efad68f8567f3119bbc3e1b11010e0be241b6e69dd" +path = "../build/minified/site/ko/guides/file_sharing/sftp/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/file_sharing/sftp/index.html_br_989c7423c4085caf7ce5c9ca2087f8ac7f01de9f9f629a7fbf2764847080b4ce" +path = "static-publisher/static-content/file2445.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/file_sharing/sftp/index.html_gzip_a125e5a4c45f7ff7b231163e1761e2fe2516dc5634b92f55cac487ca5c46e1ca" +path = "static-publisher/static-content/file2445.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/index.html_d87c661a6adac14e3c60a8a600ab5e3c074eae815277795227ee5a68cf1978f3" +path = "../build/minified/site/ko/guides/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/index.html_br_04cc40fd978c55388e9efddd24d87c0ee5a06f37b524ac55c20baf29641f5551" +path = "static-publisher/static-content/file2446.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/index.html_gzip_565b3f0d65f5aa5a04af0b2ef5b0ed3da66af08568a37f75bc3aa668920be039" +path = "static-publisher/static-content/file2446.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/installation/index.html_7d3b84ff6b216f5cd0cc5a8aeba9f2b2fb0a6bccd87ffecfd40a07d51a91db15" +path = "../build/minified/site/ko/guides/installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/installation/index.html_br_b54b033937b1c33ac8cdd8dba823ef3b15fa452812d1a5a32b6630ad8104d7ba" +path = "static-publisher/static-content/file2447.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/installation/index.html_gzip_a01362f25777ff8ac7b6ccbd2e0bdb6fcb4ff78c7e6696c52487ef2d437e42f9" +path = "static-publisher/static-content/file2447.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/interoperability/import_rocky_to_wsl/index.html_304b8175000e92e236db0c5767ff9041dd6c2f737c32d80dd55b107b828d4501" +path = "../build/minified/site/ko/guides/interoperability/import_rocky_to_wsl/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/interoperability/import_rocky_to_wsl/index.html_br_a0d4500e39edf5b3d7dedd26c5cbf94cbf627f02d2fe0f7ddfc18b138631dda5" +path = "static-publisher/static-content/file2448.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/interoperability/import_rocky_to_wsl/index.html_gzip_9caef143422e35a60a0ea4b536e0197c2d3eaa1d1fbe1042dc46f5bca737da88" +path = "static-publisher/static-content/file2448.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/migrate2rocky/index.html_e08f898f199f64437ef0529eeda4b4a87aed0431a4b2efc0bfc9e11b330a45a2" +path = "../build/minified/site/ko/guides/migrate2rocky/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/migrate2rocky/index.html_br_d8b620ed8ffb954ebb65bae1bebdf6b08f6fbd881f48fa675f416eede3bb6149" +path = "static-publisher/static-content/file2449.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/migrate2rocky/index.html_gzip_1c8ecc2758ea539f3d9d08361819007b83b6b96380aa589e8504c87cbf92d58c" +path = "static-publisher/static-content/file2449.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/mirror_management/add_mirror_manager/index.html_6f8213040ef3ce5e8c4a62b7c3f5841936c3a9290562607c066fce22a4efe5ec" +path = "../build/minified/site/ko/guides/mirror_management/add_mirror_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/mirror_management/add_mirror_manager/index.html_br_80062033f564b8b611b0287a8ccd82697819de0bb9af0a82a5ad8e2282c4aa22" +path = "static-publisher/static-content/file2450.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/mirror_management/add_mirror_manager/index.html_gzip_99f221c59eb74fc7b1b5196a69f2e56f8ebdee1cb455f2f74021374c43c2c8c2" +path = "static-publisher/static-content/file2450.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/network/basic_network_configuration/index.html_a689700b30483df56532e17215f9a4d73a4c9fc7ba97cfd8b32b910a4c92dc91" +path = "../build/minified/site/ko/guides/network/basic_network_configuration/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/network/basic_network_configuration/index.html_br_01856520f6189970761c614f0bffe1e907d84bc2b3d2419b3602e5f31fbf935d" +path = "static-publisher/static-content/file2451.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/network/basic_network_configuration/index.html_gzip_573b0ba09c3fc3955b44006371d65dbbebda6f9edf3ddd782518d326d4abb5a2" +path = "static-publisher/static-content/file2451.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/network/librenms_monitoring_server/index.html_82b222671d8df012f3cd105fa47216fe8b8680768869f89650ee566b832dd78f" +path = "../build/minified/site/ko/guides/network/librenms_monitoring_server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/network/librenms_monitoring_server/index.html_br_d5677fb991840c416b02903d316da23be79508cea7bb7102f7721e4472a82714" +path = "static-publisher/static-content/file2452.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/network/librenms_monitoring_server/index.html_gzip_6de4baebff71e31de8051aafec084e477b50a6e9ea1d9ae2230d0a2514dd374f" +path = "static-publisher/static-content/file2452.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/package_management/dnf_package_manager/index.html_c56d584aacb389bc6d2159c9f7424ee59cc8d897d2796ab4d43c7a6aebcb1aff" +path = "../build/minified/site/ko/guides/package_management/dnf_package_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/package_management/dnf_package_manager/index.html_br_d2eb0c31eaa99370663ab980da4fb9298f8d9b44dce98e8e4480998ffa0b0fd2" +path = "static-publisher/static-content/file2453.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/package_management/dnf_package_manager/index.html_gzip_2afca8aa54f4c840f89a3827943c568bf0f5ebfea047bc55f4d662e0bbf0fa18" +path = "static-publisher/static-content/file2453.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/package_management/index.html_08bf70471bafcb4bfeca7226c821304e015795642ee0432e776c7a183c477f93" +path = "../build/minified/site/ko/guides/package_management/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/package_management/index.html_br_d97b637dc3afb5c58dc8313e91d46bf4b70493a992112e322ce14fb1cb10a7eb" +path = "static-publisher/static-content/file2454.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/package_management/index.html_gzip_6ef50de69887695dbc84a76f4da83fcb0df8e9878e639fe3a607deb0b8447871" +path = "static-publisher/static-content/file2454.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/package_management/package_build_troubleshooting/index.html_14632b2fbf7ba76707b723d70b26869d914cf6458a53c2c6c20e4d05a771e4c2" +path = "../build/minified/site/ko/guides/package_management/package_build_troubleshooting/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/package_management/package_build_troubleshooting/index.html_br_3b1a68269093d426b8400ad27f49138772b1402d892c4884092b78a26cab2a10" +path = "static-publisher/static-content/file2455.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/package_management/package_build_troubleshooting/index.html_gzip_2683d44a101384110103f103a3545929beab0d11115ea5c22a278001c2cec88e" +path = "static-publisher/static-content/file2455.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/package_management/package_debranding/index.html_9a9fc1fab81f6a3be3e18868ae46182c183e830b6493798dabbf65725e05c441" +path = "../build/minified/site/ko/guides/package_management/package_debranding/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/package_management/package_debranding/index.html_br_f663a8a5b446485ba0cc0d91e40d1759db643548da4cd6442b7133d9b8deea93" +path = "static-publisher/static-content/file2456.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/package_management/package_debranding/index.html_gzip_acf57d51a4d9346159ea5015da256d5cf055cfe9ef738fb3cb89dcfb52bd6c9c" +path = "static-publisher/static-content/file2456.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/package_management/package_dev_start/index.html_be9db00a03d03706d7db7cc9f5db22a1101069f992cb58b2d2d61f4b06f8e1a0" +path = "../build/minified/site/ko/guides/package_management/package_dev_start/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/package_management/package_dev_start/index.html_br_f48f5f3ac3c05e75acd5d8d45ff47a15ec9a91928e5209063a68b8a8c50514e3" +path = "static-publisher/static-content/file2457.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/package_management/package_dev_start/index.html_gzip_4a337761cc9d1d016069aa92373cc6b4201cd159f15b3f3d2919c69c9721ab6f" +path = "static-publisher/static-content/file2457.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/package_management/package_signing/index.html_97d8d2b2e2c288f942162fd8e6c4ce6ba90f15c0540126ec38842f012eb4778b" +path = "../build/minified/site/ko/guides/package_management/package_signing/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/package_management/package_signing/index.html_br_51011872e49b0fe6d5e231582bab7bde8ddd7df01067d7f9478680d46522da07" +path = "static-publisher/static-content/file2458.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/package_management/package_signing/index.html_gzip_69c4c8a8224c770b6ffe411e5dbc9d8f097a4146214a9bc4e56049de36792b8c" +path = "static-publisher/static-content/file2458.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/proxies/haproxy_apache_lxd/index.html_7467b7487f44f754b34cd4647b23844d1b82d97ac087a994389ad28567f39358" +path = "../build/minified/site/ko/guides/proxies/haproxy_apache_lxd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/proxies/haproxy_apache_lxd/index.html_br_fe4c396f89a341ac9a1e07efb0be7582f41abde77505da14291aa5b2a27d0413" +path = "static-publisher/static-content/file2459.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/proxies/haproxy_apache_lxd/index.html_gzip_0be52e04413167c9d753fd1daec2b953e564f2422cb28d3e2f82b17bbc3464dd" +path = "static-publisher/static-content/file2459.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/proxies/pound/index.html_e799b8d981c732863ff9bf8ddddd13a050d4baaa69e840cc90978757c467f996" +path = "../build/minified/site/ko/guides/proxies/pound/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/proxies/pound/index.html_br_3b8edad548aeda39c28acbbbe6a4f3dc6771505f258546eb980d706499d8da11" +path = "static-publisher/static-content/file2460.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/proxies/pound/index.html_gzip_bdfa61610417c329f8052a8315639646affc972a45f1d76f3a7feb2b03450385" +path = "static-publisher/static-content/file2460.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/proxies/tor_relay/index.html_342c9bc8792d82b086be6a3861923b66e56e7d5a38e5c3ac13ea72a52c137abd" +path = "../build/minified/site/ko/guides/proxies/tor_relay/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/proxies/tor_relay/index.html_br_4f3eef53ea5b741e4846155ea5939c5be3a9f07d930586a591541a2922b21987" +path = "static-publisher/static-content/file2461.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/proxies/tor_relay/index.html_gzip_0f40fa0d318de5deee0da6a4580f2e15b0b9b6c8fe62a908c1b6980510a6237f" +path = "static-publisher/static-content/file2461.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/security/authentication/active_directory_authentication/index.html_b257e9ef5a885c8cc3eeaebb47b1b9682c2c361d93aa3723c68a28f686e14122" +path = "../build/minified/site/ko/guides/security/authentication/active_directory_authentication/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/security/authentication/active_directory_authentication/index.html_br_c51cbfb7fe895a54f3aa01e903689ef6faa2aa2a96c970f663f824f03db2f59e" +path = "static-publisher/static-content/file2462.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/security/authentication/active_directory_authentication/index.html_gzip_44dc4b48287f64dc79de7c5865d8687b97164bee7db7377472ab4ec972551f12" +path = "static-publisher/static-content/file2462.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/security/dnf_automatic/index.html_525261015678138134fef897813988837bc4293c6bff7b4aa8451b5c06d807d4" +path = "../build/minified/site/ko/guides/security/dnf_automatic/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/security/dnf_automatic/index.html_br_8fcd72f32c9da788a15a632cb07fd816250937cfc88341a2d2375c4d6a3be493" +path = "static-publisher/static-content/file2463.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/security/dnf_automatic/index.html_gzip_953510762faffaf5f90bd9d80ca95b14fd982d801ae82720306847adc9955f31" +path = "static-publisher/static-content/file2463.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/security/enabling_iptables_firewall/index.html_26bad52f28140305ed65394114d31b4cb0d9e05ec8d081fb631fd0468166c271" +path = "../build/minified/site/ko/guides/security/enabling_iptables_firewall/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/security/enabling_iptables_firewall/index.html_br_f35736100ca3e15acf892f5a600d6c7a4fb5b1ee70d18931f40f7f04cbf6aebc" +path = "static-publisher/static-content/file2464.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/security/enabling_iptables_firewall/index.html_gzip_e3e352bebf28c541e43e01fbeda8bd5e9557ee1a2e8c87b8fde444d898e37397" +path = "static-publisher/static-content/file2464.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/security/firewalld/index.html_8d42cbde096fbca22031f74306363af91705e290e1255e9c821a789bc7358d18" +path = "../build/minified/site/ko/guides/security/firewalld/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/security/firewalld/index.html_br_cd204dd18efad65c526b0cc4797b97f7dfee63d250f417066ab598665d81f698" +path = "static-publisher/static-content/file2465.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/security/firewalld/index.html_gzip_4a5bc8c672ac88f5a128f84845ab3c50cf5ef5ebb1df1e35f28b276ede25ed63" +path = "static-publisher/static-content/file2465.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/security/firewalld-beginners/index.html_72f6b074a7658d718fdde55fe5fa521bbdd5270fccb02db3ca5848789cc60c78" +path = "../build/minified/site/ko/guides/security/firewalld-beginners/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/security/firewalld-beginners/index.html_br_cd3b67c3d5edc4c44b843b3b5eb06b70e7687897903e8143d824100a1e936e6e" +path = "static-publisher/static-content/file2466.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/security/firewalld-beginners/index.html_gzip_aa4c14cf334fc77dcf2207e686fef67b8798c99522b1ada92ff6181fa25f0560" +path = "static-publisher/static-content/file2466.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/security/generating_ssl_keys_lets_encrypt/index.html_c3410b2d7eb5fd20bed0e0b1ede2bb3d66602bba615610a860c4c11ed7459154" +path = "../build/minified/site/ko/guides/security/generating_ssl_keys_lets_encrypt/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/security/generating_ssl_keys_lets_encrypt/index.html_br_d83a08269c326ea5d9b2b9073ba3f487ec227a8d58e1978ba86414afbb751cef" +path = "static-publisher/static-content/file2467.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/security/generating_ssl_keys_lets_encrypt/index.html_gzip_5470d6234dd6c72df1cd8454c9178ead87801c4ddf5ab1268ba459120e211c4c" +path = "static-publisher/static-content/file2467.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/security/learning_selinux/index.html_e67f4882a10692d6be1335d28b5906c2ddf0d1eee516f12754d88765e5e8369c" +path = "../build/minified/site/ko/guides/security/learning_selinux/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/security/learning_selinux/index.html_br_24f3b0481d1f44e4f1a7a20860d88d4a10fc1977bc9bc58e11298666532fef88" +path = "static-publisher/static-content/file2468.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/security/learning_selinux/index.html_gzip_f0c929634dcfe50e7c5c700b3df6aaefa7245c9f4ecb5cf88687090aa72c41ef" +path = "static-publisher/static-content/file2468.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/security/pam/index.html_aaa8084b57a9f22600fd162d91d768c542981dd05c84619d7018dcc3e3c3e2c2" +path = "../build/minified/site/ko/guides/security/pam/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/security/pam/index.html_br_7c29d88ebef82d47f360bbf2e62bd20d9136a650e2bcbbcf26a84b880cebe138" +path = "static-publisher/static-content/file2469.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/security/pam/index.html_gzip_7911f444f28d6c73a87884b1d69ce5e692507f5fe5a7fb7b38c8a2ab4f2c6770" +path = "static-publisher/static-content/file2469.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/security/ssh_public_private_keys/index.html_80881aca33747c6a8f25f6ffbb2b7b8d9c2cb3c3d76275e6796f7267dcd168b0" +path = "../build/minified/site/ko/guides/security/ssh_public_private_keys/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/security/ssh_public_private_keys/index.html_br_8a14eb1b7b8614aaf1b9276e4728ccdce0780ce3b7ddafdfe2adb2bd324b6c24" +path = "static-publisher/static-content/file2470.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/security/ssh_public_private_keys/index.html_gzip_5c9101b1f1eeee137dc43ece05916aace499f10c5a52519760c74538cb9113f6" +path = "static-publisher/static-content/file2470.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/security/ssl_keys_https/index.html_41e42b12f58688947c95868148321ac64ced5892aada62cc3ecc649e0375faa9" +path = "../build/minified/site/ko/guides/security/ssl_keys_https/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/security/ssl_keys_https/index.html_br_eddd16b4c4c256cc606945d9fdc665e40a82d73df8cdc6e3d87653193b201d03" +path = "static-publisher/static-content/file2471.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/security/ssl_keys_https/index.html_gzip_aa63edfc3c4bf7958522d35e571dd71a7d60fe8cf170693e0ead9d61c0cd93d4" +path = "static-publisher/static-content/file2471.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/security/tailscale_vpn/index.html_2c7201dabd06364f5286e2838171c2ab6a054c3fe044802958b91256a0449e20" +path = "../build/minified/site/ko/guides/security/tailscale_vpn/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/security/tailscale_vpn/index.html_br_a3674b21936a5bc8bd5d23e1069c79c7ee4e79f90db8c91e0ab11f38be273655" +path = "static-publisher/static-content/file2472.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/security/tailscale_vpn/index.html_gzip_8019daa0d936386cd7d0e11a10ee68b2b8e44f6bb8641959df7cddad50545b0c" +path = "static-publisher/static-content/file2472.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/virtualization/cockpit-machines/index.html_8db302876f31a69fd747d4729322b7f062e816a7a16c29ecf8ba2118934e3bf1" +path = "../build/minified/site/ko/guides/virtualization/cockpit-machines/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/virtualization/cockpit-machines/index.html_br_8e29ac73c7ba62bbda9070bd2030ae97244a92a80d7d6a09e235e3518beead14" +path = "static-publisher/static-content/file2473.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/virtualization/cockpit-machines/index.html_gzip_bbe7159eff3f5995fba194293ad2f71cc716d6fab280877afab7040e58254f68" +path = "static-publisher/static-content/file2473.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/virtualization/vbox-rocky/index.html_255b95c1b871a531fd105d0ba6ed7b2dbbc0a60ef37a10f194c46492f62db28f" +path = "../build/minified/site/ko/guides/virtualization/vbox-rocky/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/virtualization/vbox-rocky/index.html_br_1c96d0afffa662a0d650f231fbc8afb9802924f52c404cbafd8c9d3891ff9a9a" +path = "static-publisher/static-content/file2474.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/virtualization/vbox-rocky/index.html_gzip_9ed4a4b828a835cca847a147b4b6d7391c252ce142dce18c393358093d500362" +path = "static-publisher/static-content/file2474.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/virtualization/vmware_tools/index.html_e381c2d775067e14334c31f78fc7b1e1dd4aea38671db0e3d620053a9713acbb" +path = "../build/minified/site/ko/guides/virtualization/vmware_tools/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/virtualization/vmware_tools/index.html_br_cae844d821b764e4dfaa155e4ebbff8ea66b2422f3cd2cfca000be9307eb8f8d" +path = "static-publisher/static-content/file2475.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/virtualization/vmware_tools/index.html_gzip_0f00215d0aadb4167cd07a0b3c8b3e26f9ed7d38ce3da69fe2670fb25cdaebf9" +path = "static-publisher/static-content/file2475.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/web/apache-sites-enabled/index.html_fac91a6c643bc660def83f327b412ec96cfc8ef81fe0ea34ea67f50421a8ef81" +path = "../build/minified/site/ko/guides/web/apache-sites-enabled/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/web/apache-sites-enabled/index.html_br_9938c03deb48eca45e0006420381312d33f967a376e291b1d3f16b327e938d1c" +path = "static-publisher/static-content/file2476.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/web/apache-sites-enabled/index.html_gzip_9501a12a875638d86dab3883514167982bfbf4210bcb78d3474182fa088b8b14" +path = "static-publisher/static-content/file2476.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/web/apache_hardened_webserver/index.html_dfb4dd5a209ff84e03c7e9a3bfdc4c4263d80c42980c92eb91e208abab58f23f" +path = "../build/minified/site/ko/guides/web/apache_hardened_webserver/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/web/apache_hardened_webserver/index.html_br_fe7142946cb3af2138ea2e6584c8f4f72d02964ab8600760a88966234517dce0" +path = "static-publisher/static-content/file2477.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/web/apache_hardened_webserver/index.html_gzip_e95a3ff11a84d0d1b0b56bc38864bcf3742bacf27a4d0b1c03bfb000c7521d4e" +path = "static-publisher/static-content/file2477.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/web/apache_hardened_webserver/modsecurity/index.html_144c0cc3f8b65307349a0307ae0e0486befb905442dad32747490320fc9daf79" +path = "../build/minified/site/ko/guides/web/apache_hardened_webserver/modsecurity/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/web/apache_hardened_webserver/modsecurity/index.html_br_1be288273482d03ef0f97e12030c9e531fa8903930e5f23499a25d712e4f1477" +path = "static-publisher/static-content/file2478.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/web/apache_hardened_webserver/modsecurity/index.html_gzip_9a2ab668248f26409aae7afdfba694008da359fc4f1ffac3688d2bdce4ef4e71" +path = "static-publisher/static-content/file2478.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/web/apache_hardened_webserver/ossec-hids/index.html_73e5f78cb9772291f0231cd85de326116bb5f0f0f8d520e345cd45ad24f36cfa" +path = "../build/minified/site/ko/guides/web/apache_hardened_webserver/ossec-hids/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/web/apache_hardened_webserver/ossec-hids/index.html_br_9f96c58c23d844371aa27a7ffcaca4485ea1fe90d34f8db149567da3b5a435cf" +path = "static-publisher/static-content/file2479.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/web/apache_hardened_webserver/ossec-hids/index.html_gzip_bf850ad573df83a642971f49cd428aeef0d7405089aaf5b69eb3134526456a6f" +path = "static-publisher/static-content/file2479.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/web/apache_hardened_webserver/rkhunter/index.html_57ae6d219666eeb2893e4fae0e6056654e6481a0c7ce69efb1763da7e2960c30" +path = "../build/minified/site/ko/guides/web/apache_hardened_webserver/rkhunter/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/web/apache_hardened_webserver/rkhunter/index.html_br_103d1385d46464faecf0dd1a4605c0d53c33eda9aaad6e05a29e6a6dd1640958" +path = "static-publisher/static-content/file2480.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/web/apache_hardened_webserver/rkhunter/index.html_gzip_ca9c2c2c6dc85ec86cdb3c004dda6480797ded38e94416a57e5f9504c88e4c0f" +path = "static-publisher/static-content/file2480.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/web/caddy/index.html_eb050016a33abfec0182e43425bc2b267764e70795e1d391df9a205db1552593" +path = "../build/minified/site/ko/guides/web/caddy/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/web/caddy/index.html_br_615ad61e211c9819ba35f117a94435995dc09fb273a6c75428fcf23670cb1e5c" +path = "static-publisher/static-content/file2481.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/web/caddy/index.html_gzip_4254bc4fd67daa8ea0355c9332608577a0375b88ab49841e375bdd077f00159a" +path = "static-publisher/static-content/file2481.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/web/mod_SSL_apache/index.html_c929dcf1722398efba4803f4a8977030f338351e8ec9c825a36ddd402fa53bef" +path = "../build/minified/site/ko/guides/web/mod_SSL_apache/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/web/mod_SSL_apache/index.html_br_8b439e8579dfd0b44114588094d038497833bd306e7b6346b5cc895c92d6a1f2" +path = "static-publisher/static-content/file2482.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/web/mod_SSL_apache/index.html_gzip_6cdeaf333c1dbc127573809d10113ba11646621562cae1339acdcc48853fda38" +path = "static-publisher/static-content/file2482.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/web/nginx-mainline/index.html_718e1ef13e40718806930f4c4a4af2dfe2ea8fd6109308579bbe8bf643cff7de" +path = "../build/minified/site/ko/guides/web/nginx-mainline/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/web/nginx-mainline/index.html_br_1d598a82a69f671cafcc170f79455711be1f738981d5371bf4d086b798b57b50" +path = "static-publisher/static-content/file2483.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/web/nginx-mainline/index.html_gzip_645a2110ff0df34b70125b83d15704fc526f1c687791aa688b2c3fe5dc6f4ced" +path = "static-publisher/static-content/file2483.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/web/nginx-multisite/index.html_2f0149545269a0ff8e5453788a6c12a3c24ba4f0fc6310f90ff4ecb19961879b" +path = "../build/minified/site/ko/guides/web/nginx-multisite/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/web/nginx-multisite/index.html_br_b573dd2bb1b1ed6cefcea104d15b72950e97607ed0e99d477cd29828d1f88e3a" +path = "static-publisher/static-content/file2484.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/web/nginx-multisite/index.html_gzip_00a9f2f89d95c0a1000ebb158a3ffc0bf649d56e0ce78b788ab52d0c6d30dabb" +path = "static-publisher/static-content/file2484.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/web/php/index.html_fb07bd9fce04768ec4840905ce1b51f452b9a065682cd1e6254845bbd9a2c91f" +path = "../build/minified/site/ko/guides/web/php/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/web/php/index.html_br_4a4dbcf378bc40fb54055c41c5840fe802f068e0b70040d06c0a98b139405c72" +path = "static-publisher/static-content/file2485.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/web/php/index.html_gzip_acaa3202c8e667f3665186efe1b42aa99821d445cae8106da677fce1f3bfc0cc" +path = "static-publisher/static-content/file2485.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/web/tor_onion_service/index.html_720b15e1d57f0b6413f7e51fe8da1fbe9120124462fcb8fd18fdaa73f5db21b0" +path = "../build/minified/site/ko/guides/web/tor_onion_service/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/web/tor_onion_service/index.html_br_15137e7326874e2b6cbfe2eb71cd0249c24e9b72acd26166ab41f61f6a391d32" +path = "static-publisher/static-content/file2486.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/guides/web/tor_onion_service/index.html_gzip_081a4595ecca8428fa1bd30fb9cb1a7bf717dc4c87d1311968733d7b612574d0" +path = "static-publisher/static-content/file2486.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/index.html_c81d8160fb2c4c32f31027c21178862ffa97e72ab37e0184a1d18628ec54a875" +path = "../build/minified/site/ko/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/index.html_br_61fdb0864247609f5e7d8628a51cf6ee46dc7f7cff873486bd52c47fefa630f3" +path = "static-publisher/static-content/file2487.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/index.html_gzip_04eb5094d6c2a7cc9b6b78acc5001c4c9819cd0e069aa7bfcecf04cacf2adfe5" +path = "static-publisher/static-content/file2487.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/labs/index.html_a9986e98c413119b884baefb05730af4c76bff613e422f3190b2a5d2d322515c" +path = "../build/minified/site/ko/labs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/labs/index.html_br_52539a0a7e3d549fc0fded505e8fe4cc0053b8c6344577f9a2c53800773a6164" +path = "static-publisher/static-content/file2488.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/labs/index.html_gzip_4127347afb1fa9f25c4a9c86d8280200a9958b3dc5898f8908f60182606d608b" +path = "static-publisher/static-content/file2488.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/labs/networking/lab5-nfs/index.html_28487cd054c0b96c5284df12df3199bc47e3e8848cf0cb67922b1240b4e5bc92" +path = "../build/minified/site/ko/labs/networking/lab5-nfs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/labs/networking/lab5-nfs/index.html_br_ba9f3a6f390f08c9e9c9baa22039417e6ee99e73af7cc3d9f97b4e7eb5fd97ee" +path = "static-publisher/static-content/file2489.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/labs/networking/lab5-nfs/index.html_gzip_8b52340a7c892d30420aa1a6d3407b0239f204703992bf8239697d26bccb6844" +path = "static-publisher/static-content/file2489.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/labs/security/index.html_9fa0bd1f8e9aa7c1db68d494f5b0847319af18a8d09744b0e2321c9966c42ef3" +path = "../build/minified/site/ko/labs/security/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/labs/security/index.html_br_86a683b199d2b24cbff5c44b0e9d4bf14cffeaf2955949b249269fa8e7f2778e" +path = "static-publisher/static-content/file2490.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/labs/security/index.html_gzip_92db6f8ec3fb638f4d216acf3911809cb00cb350779bca23444e4ba1e068147c" +path = "static-publisher/static-content/file2490.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/labs/security/introduction/index.html_48747d0ee9708b304e57e65d8440cf1c9edbf8676051ccebae4f5a9f954d1743" +path = "../build/minified/site/ko/labs/security/introduction/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/labs/security/introduction/index.html_br_d410dfb0cca764aadfda22206c0b036b4cb030077dc4701083ef6fa3d2679fea" +path = "static-publisher/static-content/file2491.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/labs/security/introduction/index.html_gzip_3885f5860f671fe627ce79f55aba3e89a4df5357f7ab335863dd1ad633314be5" +path = "static-publisher/static-content/file2491.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/labs/security/lab3-auditing_the_system/index.html_aa94e62079d1dd6c64f6429bd1c788811bbe9267ce554f1a1285dbc98757c880" +path = "../build/minified/site/ko/labs/security/lab3-auditing_the_system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/labs/security/lab3-auditing_the_system/index.html_br_6b5816f1f5119258f78923a675de3b6c5d2308122a6c15f8fb56e80d445dc754" +path = "static-publisher/static-content/file2492.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/labs/security/lab3-auditing_the_system/index.html_gzip_35edabf147c07a78956a3c4d4169c104f313fad6aaecf613d59ce937e08e5ce7" +path = "static-publisher/static-content/file2492.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/labs/security/lab8-iptables/index.html_e5432ff4addd5dd92c4b5836027eda923ba0869d2cf9c441bccacb2c37c9d003" +path = "../build/minified/site/ko/labs/security/lab8-iptables/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/labs/security/lab8-iptables/index.html_br_6d82aba00b8c1f5cf553cea7b4cdfa911eb60ea1b91a6ad3464d993f578eda8f" +path = "static-publisher/static-content/file2493.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/labs/security/lab8-iptables/index.html_gzip_42d0b3da4b17fdd9e559c11fe156f0fd27c9dddba92f42dcec5110b42ef87887" +path = "static-publisher/static-content/file2493.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/labs/security/lab9-cryptography/index.html_2f7dd0b940e6905eebd9fddc23008a32951103dfd769ec904af254e318b24080" +path = "../build/minified/site/ko/labs/security/lab9-cryptography/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/labs/security/lab9-cryptography/index.html_br_056ed0ba62b5cd849c191ae8678157d7efe0150b476b7267f855dad3bcd3745a" +path = "static-publisher/static-content/file2494.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/labs/security/lab9-cryptography/index.html_gzip_2c55656b73403f77d8774ff2b0ffacc109ba9c07ad9db10722fb5300a750cd16" +path = "static-publisher/static-content/file2494.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/labs/systems_administration_I/lab3-system_utilities/index.html_69aa1e58d1d1b6f6163fe6e843e2d6ccdaebe030e1508c8798dc1c63662006fd" +path = "../build/minified/site/ko/labs/systems_administration_I/lab3-system_utilities/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/labs/systems_administration_I/lab3-system_utilities/index.html_br_bae3b6ad397a2a057d5314a47dccb3e8028c9ab52b0baf90de7d258bb37aa8a6" +path = "static-publisher/static-content/file2495.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/labs/systems_administration_I/lab3-system_utilities/index.html_gzip_bb669673c58713791db6a502b79cab24a45893b6c9535e959f9a3e817169ae5d" +path = "static-publisher/static-content/file2495.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/labs/systems_administration_I/lab5-networking/index.html_ebcb1e62901ae7719c590f81e0d6c9ef08289b9e9a9f17f31edde6c64575cdcc" +path = "../build/minified/site/ko/labs/systems_administration_I/lab5-networking/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/labs/systems_administration_I/lab5-networking/index.html_br_df991096bd55f7659db4aeb7246ec7419e08fddc76e12f094a2d2422ff2bb8f5" +path = "static-publisher/static-content/file2496.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/labs/systems_administration_I/lab5-networking/index.html_gzip_4edcd71513007596f39845f3a3c4492d5fc9b623185d9439b86dc464f589bbfb" +path = "static-publisher/static-content/file2496.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/labs/systems_administration_I/lab6-user_and_group_management/index.html_25241586bf0353bc0fbd0aa89a7010d803fbd36310f1edb4947aaf63f0bc64cb" +path = "../build/minified/site/ko/labs/systems_administration_I/lab6-user_and_group_management/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/labs/systems_administration_I/lab6-user_and_group_management/index.html_br_8cad297b8d3da2c794e4a88da8b1a84ccb5f301b92cbc74a60c67cfb38b4b82f" +path = "static-publisher/static-content/file2497.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/labs/systems_administration_I/lab6-user_and_group_management/index.html_gzip_116cc3d3b5b27a10e90b4308d843c0322d90dce98e189d888a7530aaf4f505c6" +path = "static-publisher/static-content/file2497.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/labs/systems_administration_I/lab7-software_management/index.html_4686ad25edb790f3d5d70accede2aa7e111e8dc85db2fc6b0fa7e60a00432501" +path = "../build/minified/site/ko/labs/systems_administration_I/lab7-software_management/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/labs/systems_administration_I/lab7-software_management/index.html_br_0590b160436a0b2cc3b6de3fe965e0a7836dc16a3d2d53adce60c53080309200" +path = "static-publisher/static-content/file2498.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/labs/systems_administration_I/lab7-software_management/index.html_gzip_2c4cf35598af4224d84d1a101a4caf6664095608e7eb2b13812ce178231969e8" +path = "static-publisher/static-content/file2498.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html_e34351a2e78033cff273e44ad311cf0219ea12450fc3ff274ea7d60ff93e95aa" +path = "../build/minified/site/ko/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html_br_46234a631192494535303dfa5820f10221560db200f8a8e4592bef8aa91b7e70" +path = "static-publisher/static-content/file2499.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html_gzip_095a1ca26cc9993567e21e707aec45f6522b871c272ffbada29584a7562139c8" +path = "static-publisher/static-content/file2499.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/labs/systems_administration_II/lab3-bootup_and_startup/index.html_84d964cd9afdca60a16902b71122bfea17af335b3480646888f6fac9bacfb4be" +path = "../build/minified/site/ko/labs/systems_administration_II/lab3-bootup_and_startup/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/labs/systems_administration_II/lab3-bootup_and_startup/index.html_br_ef101425d7935431ede9a8abeac9e88644a2f090836804d7f86a03b7d127fb21" +path = "static-publisher/static-content/file2500.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/labs/systems_administration_II/lab3-bootup_and_startup/index.html_gzip_f3cbb923256e306c3fa1c2bdd5f850d19a2f3f0d9604ca680dd9d6b7f16c148c" +path = "static-publisher/static-content/file2500.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html_9557287bf4c0fe8a4ddf8b437ea903dece9915506ae1313ef59656243dd84f30" +path = "../build/minified/site/ko/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html_br_a72e584dd77196f2d5bd29ee6222647ce83ca25e5a808445df2740acbe76d400" +path = "static-publisher/static-content/file2501.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html_gzip_0be0997b6150055b2588d17dc9c108839bdddb6b58790d49c92efcfb69737e1f" +path = "static-publisher/static-content/file2501.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/labs/systems_administration_II/lab6-the_file_system/index.html_79c084569df9593a850d6ad4c5253e05455a9de6148707d6dc7f3e5f3de0fe1a" +path = "../build/minified/site/ko/labs/systems_administration_II/lab6-the_file_system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/labs/systems_administration_II/lab6-the_file_system/index.html_br_2d768ae87f974b7433e69f2651ea51b3cfebebd0c5e370db0cc373a9ae879797" +path = "static-publisher/static-content/file2502.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/labs/systems_administration_II/lab6-the_file_system/index.html_gzip_5f5a18f6696b917fb12eddca7a8dc34d205a79ff6ee2d9ad6b1ac44184d5ce47" +path = "static-publisher/static-content/file2502.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/labs/systems_administration_II/lab7-the_linux_kernel/index.html_9fdd95e47ab920f9a7092fbed8e7068031e7cb2b16ee4dec043e2767f510496d" +path = "../build/minified/site/ko/labs/systems_administration_II/lab7-the_linux_kernel/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/labs/systems_administration_II/lab7-the_linux_kernel/index.html_br_7100d0a974a7279f54ba3dc7543313dd7b96301a69dd028f88b52349fbcf55c8" +path = "static-publisher/static-content/file2503.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/labs/systems_administration_II/lab7-the_linux_kernel/index.html_gzip_9df77a4f05b7425927581a8ee2562c260dbb56262a08be3e08f5624c6ab811db" +path = "static-publisher/static-content/file2503.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/release_notes/8-changelog/index.html_181a3d6fec415d6c35632126684eb0414b7d702fefd9a497e2ab92417bfda509" +path = "../build/minified/site/ko/release_notes/8-changelog/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/release_notes/8-changelog/index.html_br_b7a89bc0874531bd33256de9183ae73947a6744dcdb691887147f116f5cf7017" +path = "static-publisher/static-content/file2504.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/release_notes/8-changelog/index.html_gzip_cef1c329c22169bb40a2e280887478e65622a8d9166a5f90095e63e6c6fef41d" +path = "static-publisher/static-content/file2504.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/release_notes/8_4/index.html_fadd6fd7f6a66c4afcd06a68608f5c9a4727d087cafc55d9803add684dd8ba29" +path = "../build/minified/site/ko/release_notes/8_4/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/release_notes/8_4/index.html_br_118d9509b9d5f2de75bb41e752bbabca263ca296a11ad094473ccd729830aa06" +path = "static-publisher/static-content/file2505.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/release_notes/8_4/index.html_gzip_4e831be1f107eb1dee25da1b1153e317ba4e4eb5bbb212cf2f3ea3f5d54186ee" +path = "static-publisher/static-content/file2505.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/release_notes/8_5/index.html_0461a2a683a05332c80f69d0959b91ac8563d082720f2579712885faeaed13f6" +path = "../build/minified/site/ko/release_notes/8_5/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/release_notes/8_5/index.html_br_4a049ff7df4fb45d4d45439e6ae6659456ef9abf37ef39d18e984cbf237f9ec1" +path = "static-publisher/static-content/file2506.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/release_notes/8_5/index.html_gzip_a454628752c8bf3facb272db9e3aa19a6dd0f9a13f7e550ec30d7c9d210bde9f" +path = "static-publisher/static-content/file2506.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/release_notes/8_6/index.html_8b3965612cc7f5454bfdbebb8b594b136f6692764f0773e8c2827342f105a09e" +path = "../build/minified/site/ko/release_notes/8_6/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/release_notes/8_6/index.html_br_3e91ae4831c248763eb786b887cee4df2404d7df408cb5fad334243fe9f329a1" +path = "static-publisher/static-content/file2507.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/release_notes/8_6/index.html_gzip_4b012fab8e6ff4aad2fe0a9e734a9598f56098814f7f7329ab5e093cf54ed6b9" +path = "static-publisher/static-content/file2507.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/release_notes/8_7/index.html_c6e71c946fbf04e64b35cf87f1fe20611fe50d2b6296017444243643908443d4" +path = "../build/minified/site/ko/release_notes/8_7/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/release_notes/8_7/index.html_br_83b698ca67288f6e26c4ed5bcc385434723f16bd0e44066e1133699eee0ea69c" +path = "static-publisher/static-content/file2508.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/release_notes/8_7/index.html_gzip_160f220151428917ae9bedaf06d6536cb37bf2cb7bed434e3355a7d7d5d5c8b3" +path = "static-publisher/static-content/file2508.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/release_notes/8_8/index.html_026bc81e3a08597b76979a926a8915194139b239e5958b2805dabc092fadb10a" +path = "../build/minified/site/ko/release_notes/8_8/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/release_notes/8_8/index.html_br_c63b2b606ee2da866c11f906f9b93409c27f782e7437d5e4b0244949416c6f4c" +path = "static-publisher/static-content/file2509.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/release_notes/8_8/index.html_gzip_7135b6516ef2abf57c90ae84a68ec5596823552feb91e971077eaa9696f59838" +path = "static-publisher/static-content/file2509.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/release_notes/8_9/index.html_7342c1b96002420a05b22f12875d3acf10e20f5793f48dec18b0e1852e2c82ed" +path = "../build/minified/site/ko/release_notes/8_9/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/release_notes/8_9/index.html_br_f8de9681f9578048acf5a929ae2b94ad0243d2b3807cf660d2212d4a27d984e7" +path = "static-publisher/static-content/file2510.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/release_notes/8_9/index.html_gzip_5ae7436b484873f7f07d8658b8c2aa03de41aabb60acd1cca6418d3383d2e282" +path = "static-publisher/static-content/file2510.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/release_notes/9_0/index.html_c4a3713cc2a75fe672f827398609b6db9999b0389e7960cba78b76d44aaec9a5" +path = "../build/minified/site/ko/release_notes/9_0/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/release_notes/9_0/index.html_br_4c94122cd8f237a479e2932cbe64e28c219753696cc5b72ca38e2c840e4f9c72" +path = "static-publisher/static-content/file2511.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/release_notes/9_0/index.html_gzip_20ecf5d4726af3467434e928ad1f26ad22825d0e356f62ba2c5068c2296ac6d5" +path = "static-publisher/static-content/file2511.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/release_notes/9_1/index.html_8fad59fee0fd811114c58296ee2157cd975757339c16119db86461679dc8e5b3" +path = "../build/minified/site/ko/release_notes/9_1/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/release_notes/9_1/index.html_br_58ee4c3ecd9c00b757beda03725b13c6478104188b56dc22daa0753c523f1716" +path = "static-publisher/static-content/file2512.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/release_notes/9_1/index.html_gzip_14d8edce499a170135bf173291824b824aa04f5aaec3a6ec2fdbcf95b27ab694" +path = "static-publisher/static-content/file2512.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/release_notes/9_2/index.html_ad09c9f59de93f008080ee2949a7fa0906aed75ef54e749d9693abe67758490c" +path = "../build/minified/site/ko/release_notes/9_2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/release_notes/9_2/index.html_br_76274d10bc90c3de9326095e1e7fc9464ff236d03d1f5526c747bbe128d56c6f" +path = "static-publisher/static-content/file2513.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/release_notes/9_2/index.html_gzip_f03ec7d8f8d18a2fa177c6a5b30be854f15e2006a5b5f542058c641f904374e8" +path = "static-publisher/static-content/file2513.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/release_notes/9_3/index.html_21abf1782dbc005d50a03d31547d50181d6ec5e2c13334a9790d0135aa287129" +path = "../build/minified/site/ko/release_notes/9_3/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/release_notes/9_3/index.html_br_ed1e69a3977ee4cd5224deaf9ad20625fe8b264fe3f214b97b50b87385c3ca96" +path = "static-publisher/static-content/file2514.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/release_notes/9_3/index.html_gzip_74c52adcc59a7889f94dbc9e1bc9f70fbbf72c0ab985f107ab2311f4254834a5" +path = "static-publisher/static-content/file2514.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/release_notes/index.html_43ae74e05f82877ef09736e0e6bc17d6eb8e56c9beb3044f30f07ec4bc0c7308" +path = "../build/minified/site/ko/release_notes/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/release_notes/index.html_br_f098271c065e89185546a0c68723550ba922bc8078f7f9a871bbe2777f71a919" +path = "static-publisher/static-content/file2515.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ko/release_notes/index.html_gzip_c084c77b0c05f700aea9f4a4c50d025cd40791ee04cb0c00629b15a993749a08" +path = "static-publisher/static-content/file2515.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/labs/index.html_8ea6a92dfed0b17ca2b96bbd6354510ff47c700ae801cec0ed0e10a184abf04a" +path = "../build/minified/site/labs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/labs/index.html_br_d46b9691e89bfb7cfcd0ac97cdc048cfdb14f41f9ae85222ce695d188190fa27" +path = "static-publisher/static-content/file2516.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/labs/index.html_gzip_32aaafdca8f5a0ed15a9819ba310c08af58f2a3e6bf84a56880d985a878052f9" +path = "static-publisher/static-content/file2516.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/labs/networking/lab5-nfs/index.html_dbd08c932928be1ea038f462c8d19d46b64811a00b9e5e014f76f63494372c44" +path = "../build/minified/site/labs/networking/lab5-nfs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/labs/networking/lab5-nfs/index.html_br_d49a64f6d064fe8bd4677e477fbadf969741490efaba4431e0b05f1bfea1e0a2" +path = "static-publisher/static-content/file2517.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/labs/networking/lab5-nfs/index.html_gzip_9824f318bdb55af036f7c42a7f4cbde714d6449e24d0244270249a412c4bee92" +path = "static-publisher/static-content/file2517.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/labs/security/index.html_70a3ea10a5c7d7ea904eb9d149e801f74bb2b8a5eb4ce288167cb37df1f03c0d" +path = "../build/minified/site/labs/security/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/labs/security/index.html_br_07d412391ed9417b83716699a389ad3821ac5c888c4c1d34e95ed144c7759d18" +path = "static-publisher/static-content/file2518.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/labs/security/index.html_gzip_4aeea9b31c3762d611d25b3aa46a03e659002b92bc9ad02816c0f3d13556888e" +path = "static-publisher/static-content/file2518.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/labs/security/introduction/index.html_b16ed272047a12db76d231ce47e4c79eb52ad5858258db46a4649f66a2e88a20" +path = "../build/minified/site/labs/security/introduction/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/labs/security/introduction/index.html_br_b6cb0e539386817a57754338b9d7b1999bca5f9d4d3391d08672faf92374cbc1" +path = "static-publisher/static-content/file2519.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/labs/security/introduction/index.html_gzip_e34c92e708accb2e3e48625dc60ece98540b5522024bf8004e58c2fb889f6d61" +path = "static-publisher/static-content/file2519.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/labs/security/lab3-auditing_the_system/index.html_38685743a0036e5e6b7e0f8c80b9a0fafc105ee3aadfc0df212b4f1284e68912" +path = "../build/minified/site/labs/security/lab3-auditing_the_system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/labs/security/lab3-auditing_the_system/index.html_br_9d160b76e96578e503173fec3c94eb6bc6dc7f27287791b000292404cbf3b6cb" +path = "static-publisher/static-content/file2520.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/labs/security/lab3-auditing_the_system/index.html_gzip_24bd0ad174f6b46efae6795f33466c8669e378e2ff56df537127601b7e8b8c92" +path = "static-publisher/static-content/file2520.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/labs/security/lab8-iptables/index.html_5eb603288734f8065245b903f4660ba97b2ecf9939cb49f5cfd196de0a6c1c80" +path = "../build/minified/site/labs/security/lab8-iptables/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/labs/security/lab8-iptables/index.html_br_889752744c047d532cc9706d37619a7e0491026e59571e8cc6a22a3b8c991a31" +path = "static-publisher/static-content/file2521.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/labs/security/lab8-iptables/index.html_gzip_1e7e83c280d1376773d85a5a34dc25739c1d1a4f39cea808f9fa301a74c85eac" +path = "static-publisher/static-content/file2521.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/labs/security/lab9-cryptography/index.html_f826585e3c666a5aa54171774994c769049ab2464015a8a4d8211e76477c4ab3" +path = "../build/minified/site/labs/security/lab9-cryptography/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/labs/security/lab9-cryptography/index.html_br_6bd2f6e946e1191b1545db5d3687867e0ca2e8c3f02a2995f28b7ac2baf36f61" +path = "static-publisher/static-content/file2522.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/labs/security/lab9-cryptography/index.html_gzip_72539c31f9402acf4864982dc4dd6d998eb11a3bf9c5f087567db2a18309cd0f" +path = "static-publisher/static-content/file2522.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/labs/systems_administration_I/lab3-system_utilities/index.html_fe5ad75f67472fc099d2ddb2a11005765fa57ea67bec4b022a3285a7f71a9dd6" +path = "../build/minified/site/labs/systems_administration_I/lab3-system_utilities/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/labs/systems_administration_I/lab3-system_utilities/index.html_br_c1bde9b505681bc085fdb7551b9bb07c8922541a99a36cc1eea186acb897ae5b" +path = "static-publisher/static-content/file2523.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/labs/systems_administration_I/lab3-system_utilities/index.html_gzip_b2b07850c0a7e12301cebbc1ef7e89057385ac0c738eb35963628a67339b09a2" +path = "static-publisher/static-content/file2523.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/labs/systems_administration_I/lab5-networking/index.html_b1f8c937d11052dd6db9df003a33e95d7114091c4c49d0a23835b20eced154bb" +path = "../build/minified/site/labs/systems_administration_I/lab5-networking/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/labs/systems_administration_I/lab5-networking/index.html_br_c483a2663b115b63fa3710e8e8fd98a3d573876867148fed18ab9502f93e9d36" +path = "static-publisher/static-content/file2524.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/labs/systems_administration_I/lab5-networking/index.html_gzip_b09a9a9029582cc5a12def71efcde23539af0ac00ee793d786fa33d2e2d9d61c" +path = "static-publisher/static-content/file2524.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/labs/systems_administration_I/lab6-user_and_group_management/index.html_46b378b618595d8fd7c17547a55360086e96f35647e364ca89bc78051dfc13fd" +path = "../build/minified/site/labs/systems_administration_I/lab6-user_and_group_management/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/labs/systems_administration_I/lab6-user_and_group_management/index.html_br_7202cf0e25c2b892b2e71e4f4cd6aa9f57935e9d9ed04ec4c239bbe188195778" +path = "static-publisher/static-content/file2525.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/labs/systems_administration_I/lab6-user_and_group_management/index.html_gzip_c2fd6c51ab34cd7fd59eee41e7820a25e31d9d366c278085ce4fc93561254889" +path = "static-publisher/static-content/file2525.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/labs/systems_administration_I/lab7-software_management/index.html_12c66d557601f57269e311848324128665625b3ff2612ae8e9cdb2460e2605c8" +path = "../build/minified/site/labs/systems_administration_I/lab7-software_management/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/labs/systems_administration_I/lab7-software_management/index.html_br_33743e6a1574ca978e4ce989219dd28cb3d780c0f81f641ae6694ab2580cf8cb" +path = "static-publisher/static-content/file2526.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/labs/systems_administration_I/lab7-software_management/index.html_gzip_1b45c1b690ede0cc82fe793ba6a68d90246b2580b3627fb1951b299883d2f312" +path = "static-publisher/static-content/file2526.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html_eb41d9d43ae3c5fc54b4e6de9a3ffe6c10aa3e6b37b51730f93757b136515f11" +path = "../build/minified/site/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html_br_235868a70e65218f6cb5c66360c888787d4d8f7c4a489078f29846dbbb8bdcd6" +path = "static-publisher/static-content/file2527.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html_gzip_fd69f1a5d7da54a1ac5a31ce39d7b8d63871ac4892d1e9c36e1b2c6e4c74898a" +path = "static-publisher/static-content/file2527.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/labs/systems_administration_II/images/lab2-il01-kernel.png_9f40a20d276e651d2d7ff5e0e407d897137e7cc905a11c8742d406e8e1ed1d24" +path = "../build/minified/site/labs/systems_administration_II/images/lab2-il01-kernel.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/labs/systems_administration_II/images/lab2-il01-kernel.png_br_9170d74d6fd612926ba77ac36a5eac036de4d23dd699a895ae956c177d20dbe6" +path = "static-publisher/static-content/file2528.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/labs/systems_administration_II/images/lab2-il01-kernel.png_gzip_57fcc915b2be8d8a4487bed39393cd1bb7cbe2cedad4e2b691a6879a847ab0c8" +path = "static-publisher/static-content/file2528.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/labs/systems_administration_II/images/lab2-il02-kernel.png_6ad7e86bebdaeb8a507ab46ea040b00ef946a04da33c64713fa66e69438f7f73" +path = "../build/minified/site/labs/systems_administration_II/images/lab2-il02-kernel.png" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/labs/systems_administration_II/images/lab2-il02-kernel.png_br_a0155c1b4bcee7ca317b961887b28781c7df826f510c8855da1ce10a0b73a005" +path = "static-publisher/static-content/file2529.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/labs/systems_administration_II/images/lab2-il02-kernel.png_gzip_d546235b82332c83707f1947b62a7e9c98c3ced2f6faec6a8718b1a40332df44" +path = "static-publisher/static-content/file2529.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/labs/systems_administration_II/lab3-bootup_and_startup/index.html_b45ba6605350501c5de06fc20c2a921599e4bf460c07820bc84e5a2a74d7506b" +path = "../build/minified/site/labs/systems_administration_II/lab3-bootup_and_startup/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/labs/systems_administration_II/lab3-bootup_and_startup/index.html_br_e20a5be19384eba30294f35a7b56ea9e038999a58671fbb8037fb051e2823e0a" +path = "static-publisher/static-content/file2530.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/labs/systems_administration_II/lab3-bootup_and_startup/index.html_gzip_754638ec912fe97fde12add1f3392729c6212b2336f2c477f527b3abc65b291f" +path = "static-publisher/static-content/file2530.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html_d4a9da764113b8f30169d08446ae93e581f07b262cad7abcd51f298fb95a5749" +path = "../build/minified/site/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html_br_b64b285083cade0e198b2f31d7dc85ec3fed96d4f924fdf56e0b44ad761103b9" +path = "static-publisher/static-content/file2531.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html_gzip_3a5310bf0e2261fecb3fcfaec8354e60c6775317a513f9d7c1bb179362ccf1a6" +path = "static-publisher/static-content/file2531.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/labs/systems_administration_II/lab6-the_file_system/index.html_dac72654ace15225aa6aaa8fb6686609176ae5d45c7a32893fe61b2976b72065" +path = "../build/minified/site/labs/systems_administration_II/lab6-the_file_system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/labs/systems_administration_II/lab6-the_file_system/index.html_br_269219b7dce18ba2045022a92599353446fce2e366606e77db13ba22bfede5f4" +path = "static-publisher/static-content/file2532.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/labs/systems_administration_II/lab6-the_file_system/index.html_gzip_5209a33472522285eff32f8d3203d815419b109a5ded4b5879a50029209fdac0" +path = "static-publisher/static-content/file2532.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/labs/systems_administration_II/lab7-the_linux_kernel/index.html_27cbe2c7c57c38461d6dcaef5b5c83916a7c15bcad4e7b908187d18e6cd44a4a" +path = "../build/minified/site/labs/systems_administration_II/lab7-the_linux_kernel/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/labs/systems_administration_II/lab7-the_linux_kernel/index.html_br_7287afb1851715373b348367f71e477e83c26c89486dd94b2ead2c1b6d44ab27" +path = "static-publisher/static-content/file2533.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/labs/systems_administration_II/lab7-the_linux_kernel/index.html_gzip_38494a92aa72840b37934f2049f7f4077eab7209c386f16ce0038bf2bccd6850" +path = "static-publisher/static-content/file2533.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/admin_guide/00-toc/index.html_3a6a066c2c0e950745623dcb901403e50d354a2c5409e4e68eeb666bea49c933" +path = "../build/minified/site/pl/books/admin_guide/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/admin_guide/00-toc/index.html_br_72759fb3a9924c3a9f38d39c551adcc30583cd2429862209f718b528494845b7" +path = "static-publisher/static-content/file2534.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/admin_guide/00-toc/index.html_gzip_16168b5334d82e3dfa0e38687028263bb41ec001102e5a6bae76f30b2931897b" +path = "static-publisher/static-content/file2534.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/admin_guide/01-presentation/index.html_4a52c31fc222e27c59b4b10c71d144491a487f7c75afaeb60737e5ec8c8cc645" +path = "../build/minified/site/pl/books/admin_guide/01-presentation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/admin_guide/01-presentation/index.html_br_7c19caf69a15d0fba56f6c0ae49e3e7a109a9b68fc5350279912f3b41609f961" +path = "static-publisher/static-content/file2535.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/admin_guide/01-presentation/index.html_gzip_c865851362247d030c3ae3c7a96015d11029f18ef9059c406905f9d69020c6a5" +path = "static-publisher/static-content/file2535.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/admin_guide/03-commands/index.html_d3610d674afa549cdc4c80c6e9aa51843353b964e3e0d0f8a912844b0d21f5ed" +path = "../build/minified/site/pl/books/admin_guide/03-commands/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/admin_guide/03-commands/index.html_br_740e6f93929df6aeb00b7fecdd5419d2183bfc16a5aed13c0b72725a2d7acb18" +path = "static-publisher/static-content/file2536.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/admin_guide/03-commands/index.html_gzip_2fc4a7caf429bca6c1c4d024431af52ece13eef02c4656d48cbf5a945b7d404c" +path = "static-publisher/static-content/file2536.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/admin_guide/04-advanced-commands/index.html_c2b99ba207c2181469ec238198dfe462c454f6ca4df2a465579cefc45fd607e7" +path = "../build/minified/site/pl/books/admin_guide/04-advanced-commands/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/admin_guide/04-advanced-commands/index.html_br_90a1b8f0537ff2e795cb811f161e3b89dc1664e5537b84d07a078ffe8a2ecc26" +path = "static-publisher/static-content/file2537.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/admin_guide/04-advanced-commands/index.html_gzip_522d5954db5dda2ec0de4e9105276732f07f2c40377cd2faac78cae04a342932" +path = "static-publisher/static-content/file2537.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/admin_guide/05-vi/index.html_eb1a4bfe3bd54ea210225c676f145fc054c32d9e808a7fe7a158fd034db2f53c" +path = "../build/minified/site/pl/books/admin_guide/05-vi/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/admin_guide/05-vi/index.html_br_0daf651df8d73a5c941ce40b33b686854eb1d19a3d240033f280b54f7c202513" +path = "static-publisher/static-content/file2538.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/admin_guide/05-vi/index.html_gzip_39d272ac3c60446923e6987c8d46f9474a9bf889d46fd898c922ef9b5ec20e91" +path = "static-publisher/static-content/file2538.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/admin_guide/06-users/index.html_00263a495d37d3be97b1d3c1037914a03a2b9b50083d7ce92e8c2f5864d9018e" +path = "../build/minified/site/pl/books/admin_guide/06-users/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/admin_guide/06-users/index.html_br_2bf11cbfe6f47855c3917f5c32a7a6219152c93f03ed50fd1a06c9d64eeb33f4" +path = "static-publisher/static-content/file2539.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/admin_guide/06-users/index.html_gzip_20ae4076ca6cbe68b5cbc36e6e33dbb7c466cf8bedd5e92b9075a282cd848671" +path = "static-publisher/static-content/file2539.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/admin_guide/07-file-systems/index.html_9760037beb647bcd9271e970508a457a3f9e6006346b477db976da05c1fb3805" +path = "../build/minified/site/pl/books/admin_guide/07-file-systems/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/admin_guide/07-file-systems/index.html_br_aef75b25af02f165a060774958b0f3e8d558b61a79e4ef150c6560334ca0b36b" +path = "static-publisher/static-content/file2540.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/admin_guide/07-file-systems/index.html_gzip_c3cb2702cbebcdb8ae51f88dd0824f031bfdaccebccb083a64a20d219436c9b9" +path = "static-publisher/static-content/file2540.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/admin_guide/08-process/index.html_9b105a2b6fe5a62f55ffa3202b96c34f9bb9cf34ea73aa02e6dece8264bac167" +path = "../build/minified/site/pl/books/admin_guide/08-process/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/admin_guide/08-process/index.html_br_e213af4a791b3ce44a7bb6d1d3d602e8ffb52072a0ea74b43300dc52f7f185fd" +path = "static-publisher/static-content/file2541.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/admin_guide/08-process/index.html_gzip_3bd3261e6b2b67ed16432d69b3ae48cd69b14b67dc9ecd1a78e4e433144face6" +path = "static-publisher/static-content/file2541.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/admin_guide/09-backups/index.html_2aa16563ed821d2d2ad650243bdff703fdd204426b1bdf0bc45f50d02fd264db" +path = "../build/minified/site/pl/books/admin_guide/09-backups/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/admin_guide/09-backups/index.html_br_34ccf8696b44294db7554c520a1959dee4d7318445bc7dd6e2c515001ca3879f" +path = "static-publisher/static-content/file2542.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/admin_guide/09-backups/index.html_gzip_f1b773e3e36bae50f742c8d7bc4d30a004dbabc477c777d3406e51b657fa9fd9" +path = "static-publisher/static-content/file2542.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/admin_guide/10-boot/index.html_b1284746b819b8b7dd60a0a83625b3883579e83a4b7b05cd05ea9645a827c747" +path = "../build/minified/site/pl/books/admin_guide/10-boot/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/admin_guide/10-boot/index.html_br_a2e922d56d24ca835c95c8ac830d3db5300d40da7992f19f73999d977746733f" +path = "static-publisher/static-content/file2543.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/admin_guide/10-boot/index.html_gzip_579f27107aecb4e47b452a0f84ab8ec4d95f16ad3adf6552f3bb4c7d07650475" +path = "static-publisher/static-content/file2543.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/admin_guide/11-tasks/index.html_c497bf6186ed0382054ee5977f4954f44abdb3d72871a09677054f5024ee289f" +path = "../build/minified/site/pl/books/admin_guide/11-tasks/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/admin_guide/11-tasks/index.html_br_7558cd573f7639ce8523aa666fea1eddd532e82295de80d920e82395038a7cd8" +path = "static-publisher/static-content/file2544.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/admin_guide/11-tasks/index.html_gzip_44def808e3b2c5e34fcd511dde2db2f14316da684f029711fd30dece7f08bf29" +path = "static-publisher/static-content/file2544.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/admin_guide/12-network/index.html_08749eeea0002a165a43ff172186d085d9e72a8281223b7ede34bcc267599d3b" +path = "../build/minified/site/pl/books/admin_guide/12-network/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/admin_guide/12-network/index.html_br_419c985c9152c01f20711ce1c545f6e8906280e88ef4f4af9f39c0c82cebc2c3" +path = "static-publisher/static-content/file2545.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/admin_guide/12-network/index.html_gzip_288e05bcebc1c921898b4bc52d07a7ca53b51c92f7de13c8ebb41af990c92eb5" +path = "static-publisher/static-content/file2545.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/admin_guide/13-softwares/index.html_9904c49994442c54359332cb2e30ba0fc5d4339cd69d8b5ae433700cb0522e5b" +path = "../build/minified/site/pl/books/admin_guide/13-softwares/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/admin_guide/13-softwares/index.html_br_9948216eee58aa3a0b6e703c3871ce58a2a81d832cf54356d90b1450bb35c1c3" +path = "static-publisher/static-content/file2546.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/admin_guide/13-softwares/index.html_gzip_d4b70dd810b86e694d701e42a2036b308781561b3c378efc76b915a769ba824f" +path = "static-publisher/static-content/file2546.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/admin_guide/14-special-authority/index.html_1ad00fd7055c0f81066c255ef54c4569b88ca936b5378d0bf09ad6e3e11663e3" +path = "../build/minified/site/pl/books/admin_guide/14-special-authority/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/admin_guide/14-special-authority/index.html_br_21a7d7208581e66778d0fa4921350c35bda18bad618e92a356f29e0b396c64c7" +path = "static-publisher/static-content/file2547.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/admin_guide/14-special-authority/index.html_gzip_b78d4003a0daa94df5b5b4a2f2e15eb75ee4b7f220cf1d3176993ca358ebd9a2" +path = "static-publisher/static-content/file2547.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/admin_guide/16-about-sytemd/index.html_38ebb9c8a56630f47ffcbb4a4d68862aee1bd13fcb967022f4f40325250e71e5" +path = "../build/minified/site/pl/books/admin_guide/16-about-sytemd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/admin_guide/16-about-sytemd/index.html_br_29dd1dc8be1ceb5c60a2c45930e078f9993bac01b61089acf6b3cc8817a8c57c" +path = "static-publisher/static-content/file2548.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/admin_guide/16-about-sytemd/index.html_gzip_2a40a5e1c0f50371e564c0b97a8a6d2d4c18969f15467276755d0bcc7f7e1413" +path = "static-publisher/static-content/file2548.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/bash_programming/01-Shell-overview/index.html_b61ee764ed733fbd949ee2c9009a3c257a61e18a37e2e61b3f249233550dac73" +path = "../build/minified/site/pl/books/bash_programming/01-Shell-overview/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/bash_programming/01-Shell-overview/index.html_br_575bf454e8e6f35d51161e67ab7c1c88fb3998579399316b6c9f548739bf78c9" +path = "static-publisher/static-content/file2549.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/bash_programming/01-Shell-overview/index.html_gzip_06755d6039ffe137b1ea2376118595caff8e71723e90166b3df277497deb3551" +path = "static-publisher/static-content/file2549.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/disa_stig/disa_stig_part1/index.html_70755006a0e7f0a06c2c7e5c49564b465377b46cb4068746b28c79425d5ee478" +path = "../build/minified/site/pl/books/disa_stig/disa_stig_part1/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/disa_stig/disa_stig_part1/index.html_br_7399b23d45b4708eeaca1ed857d902236cd692cbc15b5205dbacf38b7ee4f093" +path = "static-publisher/static-content/file2550.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/disa_stig/disa_stig_part1/index.html_gzip_03e85212f015cf1c51589ac15012cac3fe31c0a71d1d2fe8e1fb212ca19a166a" +path = "static-publisher/static-content/file2550.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/disa_stig/disa_stig_part2/index.html_b359cac4555c35161bed6c26ca6774c0b0301a91a3f6d340178d5a884adea61d" +path = "../build/minified/site/pl/books/disa_stig/disa_stig_part2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/disa_stig/disa_stig_part2/index.html_br_f3061e5fe93b430fa521e75c664046e6ea3f07df65fa54b6ce552a3187f92a5e" +path = "static-publisher/static-content/file2551.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/disa_stig/disa_stig_part2/index.html_gzip_23c768733e7c530c0be43a6afbe7f9aaf0dda43d9e646de5738b9351e15718bd" +path = "static-publisher/static-content/file2551.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/disa_stig/disa_stig_part3/index.html_ab4de78015805cb18a4c8dc0ba458e9b96d93433d6847880bfea9cd420426a50" +path = "../build/minified/site/pl/books/disa_stig/disa_stig_part3/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/disa_stig/disa_stig_part3/index.html_br_d808e49cd6ff808a4a6dc69ec6c5a9e2dfb38858eab32a87a51ce0cfba5cdfa5" +path = "static-publisher/static-content/file2552.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/disa_stig/disa_stig_part3/index.html_gzip_5d79ff488f2a68eaa840e08480367e2dc7b6d02a3523ef7efdec9e68c817bdf6" +path = "static-publisher/static-content/file2552.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/index.html_e9852e398b974cc4c16cc6fca4f986d3b4b5d91cc17897ea29539e938ad7edd3" +path = "../build/minified/site/pl/books/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/index.html_br_1be0bdc50ef68cbd8378efd79a9809d5433d6def4ad6aaa25f27d88e72c5d86c" +path = "static-publisher/static-content/file2553.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/index.html_gzip_41a4e0ae61775110be38308a588ccbe3aecee9e8c45077c50c31000cf5af8a4f" +path = "static-publisher/static-content/file2553.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_ansible/00-toc/index.html_9d5d732cb6601ce811a379c7bfdea26f4863813a3cf2da3c710f1ff2c9d94688" +path = "../build/minified/site/pl/books/learning_ansible/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_ansible/00-toc/index.html_br_0bb47dc528a79b03761ae601f457d8d5e561085bb58c2df851b9e89e9652a971" +path = "static-publisher/static-content/file2554.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_ansible/00-toc/index.html_gzip_9040c6a1e7f1be6236b9210b67441a312409e908acdf2581f8bb48b34c330b3a" +path = "static-publisher/static-content/file2554.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_ansible/01-basic/index.html_b8979979ee0630452e3267f35f24a4ec7cadbe32d803e5f6eff5cb3af3160be2" +path = "../build/minified/site/pl/books/learning_ansible/01-basic/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_ansible/01-basic/index.html_br_6c69c7bddb73078a90ca9b84a584081c30479ff979fa4a48d3823718519620a0" +path = "static-publisher/static-content/file2555.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_ansible/01-basic/index.html_gzip_aa482d7a3717a9f1952e68edd44964042b6f41e57fc8fdac7eb1cd6a81a65e99" +path = "static-publisher/static-content/file2555.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_ansible/02-advanced/index.html_1fad764904cd1bd66840d2d1e02ee158de6d194068512c7a629a2af10f1fae95" +path = "../build/minified/site/pl/books/learning_ansible/02-advanced/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_ansible/02-advanced/index.html_br_423c28c4b998fef4c1976db4a51b75ea144cfa7b6e3106ee02b2b58954ae6a87" +path = "static-publisher/static-content/file2556.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_ansible/02-advanced/index.html_gzip_abcb0096273de9337a3fdb4f66a2e25f4b54abfee1b3b11c1143b814271f60f0" +path = "static-publisher/static-content/file2556.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_ansible/03-working-with-files/index.html_28d1cb83991591d110bb823f494488d810e504453548cd2df539d9193707bfa8" +path = "../build/minified/site/pl/books/learning_ansible/03-working-with-files/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_ansible/03-working-with-files/index.html_br_d6dd5c5ba2fc07879dc6bd144e6604856806ca0cfdd78124ed576c407bc4a01e" +path = "static-publisher/static-content/file2557.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_ansible/03-working-with-files/index.html_gzip_bbb8b584f94715e0e070502fa583cc0dac1a4c8ee666091d0be2a69a018643ab" +path = "static-publisher/static-content/file2557.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_ansible/04-ansible-galaxy/index.html_a0e2820941492eba6e9a3ad3fe20f03ed512c0c9a1e30f568aef8e2604b2c8ef" +path = "../build/minified/site/pl/books/learning_ansible/04-ansible-galaxy/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_ansible/04-ansible-galaxy/index.html_br_06635d9e187dc31d8ea8393d3069c541247d3935bc603df0d15dec9dca8539c5" +path = "static-publisher/static-content/file2558.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_ansible/04-ansible-galaxy/index.html_gzip_3cb7eac3e71cd9f70253d5b707e0d0c0fcb72c0a5c5efc269d8f2beb65983e8f" +path = "static-publisher/static-content/file2558.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_ansible/05-deployments/index.html_dd9988365a8dcacbfdb62bacfc5f708123f6f099b86a892d708557f241ed677c" +path = "../build/minified/site/pl/books/learning_ansible/05-deployments/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_ansible/05-deployments/index.html_br_90826d70c479798583b6e84aa9fea7d30d945b27ceb0e58faa10750075c2d80f" +path = "static-publisher/static-content/file2559.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_ansible/05-deployments/index.html_gzip_517043df938e25d4f07b4420e5dab9bce363213d75d639d9acd8c2286c0c707f" +path = "static-publisher/static-content/file2559.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_ansible/06-large-scale-infrastructure/index.html_1826168d0c0bfa6d16ec93548d50bd721d51ea609d331530d23eb6346c89d558" +path = "../build/minified/site/pl/books/learning_ansible/06-large-scale-infrastructure/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_ansible/06-large-scale-infrastructure/index.html_br_5559ee2f0ddfa23114070b91424d961e9c68a6f1caae9621cfb7955088b15bdc" +path = "static-publisher/static-content/file2560.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_ansible/06-large-scale-infrastructure/index.html_gzip_79ef14da7e103f1486eb28de43414f0c225924022f328819bf120cd605c0c337" +path = "static-publisher/static-content/file2560.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_ansible/07-working-with-filters/index.html_8471327c5e7eef98b3e51396e3d1c4f49e614908c7e95b9164784babd83b7fce" +path = "../build/minified/site/pl/books/learning_ansible/07-working-with-filters/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_ansible/07-working-with-filters/index.html_br_6202d0c02e40407638605d2bc97e1601650e51b255392e0b12180b1351cfec5e" +path = "static-publisher/static-content/file2561.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_ansible/07-working-with-filters/index.html_gzip_6d0fc1a2142673023803612f29895cec69b44da19f5ff6a3f1e2de0e2193f9e7" +path = "static-publisher/static-content/file2561.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_ansible/08-management-server-optimizations/index.html_d57bbf86a04c9f528bdf0ce1bfa7c39ad01fccd076f88a0ce435e4a7757d3f34" +path = "../build/minified/site/pl/books/learning_ansible/08-management-server-optimizations/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_ansible/08-management-server-optimizations/index.html_br_5708d0d78e96f7baaf21c8fe6c10243d487ffbaee8d855e67a48ebb7d2120c2c" +path = "static-publisher/static-content/file2562.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_ansible/08-management-server-optimizations/index.html_gzip_94ac3531fee28f0288844d983421f4ff9a4ff67ad5db6b9fb4f0a088e6875f9c" +path = "static-publisher/static-content/file2562.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_bash/00-toc/index.html_5c19ab8f982d906a43ec01898e566af3adeae3f7e77dfdaa5323d01bc9854803" +path = "../build/minified/site/pl/books/learning_bash/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_bash/00-toc/index.html_br_6ff88e9e57be50b9b97f61034cae7ce08c19aeb81b62ce1a97775484ad55947b" +path = "static-publisher/static-content/file2563.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_bash/00-toc/index.html_gzip_d364acd34595af486deb87e554bf9d72eb7d6e058377889dbae6b4cde099ca5b" +path = "static-publisher/static-content/file2563.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_bash/01-first-script/index.html_f1027775e04c84ab0fe5d7c02f457a804dd65ef98c58b245032c81b4f6fa3d1c" +path = "../build/minified/site/pl/books/learning_bash/01-first-script/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_bash/01-first-script/index.html_br_fe9dd84314b77f9fc3c58c4359592f711fdcc8f7c3db0c611a1d295e30e43719" +path = "static-publisher/static-content/file2564.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_bash/01-first-script/index.html_gzip_8c4be28d318e673b6e21ba7e317a193229df9aa05eede44f90ed27d6d94b0c30" +path = "static-publisher/static-content/file2564.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_bash/02-using-variables/index.html_84ff205b065392c12d46e8d72c98710c8552bd64305d02151f777b9006b5005f" +path = "../build/minified/site/pl/books/learning_bash/02-using-variables/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_bash/02-using-variables/index.html_br_77cae23518a1820de470d34ac7dd5e9c4f2ae23375e56179b435a96b066b60f4" +path = "static-publisher/static-content/file2565.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_bash/02-using-variables/index.html_gzip_7a5ffbe1d68991d81f8a4e271951386be3461a05e683450214d8020b97373dea" +path = "static-publisher/static-content/file2565.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_bash/03-data-entry-and-manipulations/index.html_1bd00592680cf2b8628f3d19b62bd042663484912f46e31cf7c807638ab3873b" +path = "../build/minified/site/pl/books/learning_bash/03-data-entry-and-manipulations/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_bash/03-data-entry-and-manipulations/index.html_br_ec56614f54193b148226a95b00969a9697c45d439303f82200bcd1b79321f5c3" +path = "static-publisher/static-content/file2566.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_bash/03-data-entry-and-manipulations/index.html_gzip_c22926884188172a501fa4efd5480956eca0af77cac71e411f3eb3df3bccc178" +path = "static-publisher/static-content/file2566.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_bash/04-check-your-knowledge/index.html_ed13a50030b46df7910f8e1a3608972c0435ecd16afd85374ba5c4644358013e" +path = "../build/minified/site/pl/books/learning_bash/04-check-your-knowledge/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_bash/04-check-your-knowledge/index.html_br_065e80d590fefa920f2b08f5c9a5322bc6feb32ecc546ac8e0f01e9777b1cfb1" +path = "static-publisher/static-content/file2567.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_bash/04-check-your-knowledge/index.html_gzip_31573526ff5ffc8c952ecbabbad752f4eb28beb0ca99053027cf435140d2c167" +path = "static-publisher/static-content/file2567.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_bash/05-tests/index.html_b03d33312856f6f5283e9f4a3467a19c2fc05768f51ac3815be697483bb7575c" +path = "../build/minified/site/pl/books/learning_bash/05-tests/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_bash/05-tests/index.html_br_82cd2bcf917275c162a80559a21a0548fd6858a8aba5ceb97d9701c163522dc1" +path = "static-publisher/static-content/file2568.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_bash/05-tests/index.html_gzip_66cf3d223caa93b820261b90cddfa0e79cab71731eb1fc79a8d9378e8dcf50fc" +path = "static-publisher/static-content/file2568.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_bash/06-conditional-structures/index.html_fe17f1579ee5f3b76ef476eb1b0ceb0266370b2e172a15eb56e1bc6c4f471cc2" +path = "../build/minified/site/pl/books/learning_bash/06-conditional-structures/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_bash/06-conditional-structures/index.html_br_86b658ebfadee3f7ac05999e15cdf7a2ae6e5cf19ed1cac4ef88ef57a1fd54ad" +path = "static-publisher/static-content/file2569.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_bash/06-conditional-structures/index.html_gzip_851fdcf824c799875e717cd65244efd4c1b1a66e66d946ec6570bcea7522d3f4" +path = "static-publisher/static-content/file2569.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_bash/07-loops/index.html_cb1e2f19f065ad725e8bfdfb5f9a368daba0c9df4cd862609f4d4b5719924523" +path = "../build/minified/site/pl/books/learning_bash/07-loops/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_bash/07-loops/index.html_br_37ede74a1609918984c7b6faec6c9db26b3994a1648ca1ad9a087172bcaede07" +path = "static-publisher/static-content/file2570.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_bash/07-loops/index.html_gzip_9e9548dc91dc82acaef1061cd0f5fe2cc6d24840f0aab74261b006b4baf310d6" +path = "static-publisher/static-content/file2570.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_bash/08-check-your-knowledge/index.html_b812741f28d0f7c6467e98e42e070ddc4a109b728a7219d6b5c2a4667bd9573b" +path = "../build/minified/site/pl/books/learning_bash/08-check-your-knowledge/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_bash/08-check-your-knowledge/index.html_br_a80e0064545550be6db8e15f2e095b23358076bc753a8511d53c8f9764c986e4" +path = "static-publisher/static-content/file2571.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_bash/08-check-your-knowledge/index.html_gzip_c5dcae426f99bc7a5378fa9f5169e68f81dca5fe95f7d2dd486a9820383c1eb5" +path = "static-publisher/static-content/file2571.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_bash/appendix/02-variables-logs/index.html_d2f95eaff49aeebe0755b3cbc48f12d3fa9c5f657418a9662f2526e910761165" +path = "../build/minified/site/pl/books/learning_bash/appendix/02-variables-logs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_bash/appendix/02-variables-logs/index.html_br_2e3ff245200afb75102fc59130b2c87cee5e476e2efe2670ff8f987ac79d5ee7" +path = "static-publisher/static-content/file2572.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_bash/appendix/02-variables-logs/index.html_gzip_448a29290eb570586de6175fb842013315cb36527a045ec43080a8f329190c45" +path = "static-publisher/static-content/file2572.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_rsync/01_rsync_overview/index.html_6b4592ebbef0de72862f7328637271f99134291f70c4852cf229534a130195f4" +path = "../build/minified/site/pl/books/learning_rsync/01_rsync_overview/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_rsync/01_rsync_overview/index.html_br_68b37f7fec24999fc17bb477800520e768fa3ee343bcc8db2df8d8d6bae6f8c3" +path = "static-publisher/static-content/file2573.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_rsync/01_rsync_overview/index.html_gzip_43ec65438163b1836f57313795545d4a963b701ae7cbd23ad6f57f6051667dcd" +path = "static-publisher/static-content/file2573.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_rsync/02_rsync_demo01/index.html_fb11102ca2e7e8fd30af562df9b1f9fca9c569a7cc990bf29c72c158c7965241" +path = "../build/minified/site/pl/books/learning_rsync/02_rsync_demo01/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_rsync/02_rsync_demo01/index.html_br_5f02c31dd49a3c50f6bfd29a4f04001a8fe2f807d5417162486649666ab14d50" +path = "static-publisher/static-content/file2574.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_rsync/02_rsync_demo01/index.html_gzip_6bb97b15e4f15c2a82f1284fc6173175d37815604d94ce110d1f7163b502b6c3" +path = "static-publisher/static-content/file2574.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_rsync/03_rsync_demo02/index.html_9eb26182dec08293011742d8f231524aee536ff5ce26217c427d3ed7a29e32a0" +path = "../build/minified/site/pl/books/learning_rsync/03_rsync_demo02/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_rsync/03_rsync_demo02/index.html_br_1eafed255f4bcca42fd01e4adc1f377cfa6fd0d746356df6efa1a93e3a8ad4eb" +path = "static-publisher/static-content/file2575.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_rsync/03_rsync_demo02/index.html_gzip_39c2da3f792e1a6992df8de415db82a0d90e94664df9d3b5d7c2cf4e633b6b91" +path = "static-publisher/static-content/file2575.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_rsync/04_rsync_configure/index.html_4e2300de8bd33bb65d8b6519f3ae7d2da53fff6ca91c38cff56118e7ccfac16d" +path = "../build/minified/site/pl/books/learning_rsync/04_rsync_configure/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_rsync/04_rsync_configure/index.html_br_cb5b923e5599a193fbc688d333592f30da2b000eae67b92fb764bda2e79149a2" +path = "static-publisher/static-content/file2576.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_rsync/04_rsync_configure/index.html_gzip_c58e63cd8fa331309a6031f8a00779336f2240f019961be7162bf0695a122113" +path = "static-publisher/static-content/file2576.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_rsync/05_rsync_authentication-free_login/index.html_9171c400338bc226039dd6231e4c4df8a143806318f81c768864ee7bd1e614e8" +path = "../build/minified/site/pl/books/learning_rsync/05_rsync_authentication-free_login/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_rsync/05_rsync_authentication-free_login/index.html_br_e7a684e58b12a137872410ab84821509550bda7a9efd0b87ff7a961265645996" +path = "static-publisher/static-content/file2577.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_rsync/05_rsync_authentication-free_login/index.html_gzip_07c409d46a702ce6de393a7dd8d829b7c99699e765feb6658b54c40a8c2115c4" +path = "static-publisher/static-content/file2577.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_rsync/06_rsync_inotify/index.html_e8fb31f08a3102591511a3599b2dbdc9873805412a70762818b5c506f272b592" +path = "../build/minified/site/pl/books/learning_rsync/06_rsync_inotify/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_rsync/06_rsync_inotify/index.html_br_94cdcfa7d0003d9b02b741218565f92fc5195ea2a3778a1538e3d0cfbcba453f" +path = "static-publisher/static-content/file2578.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_rsync/06_rsync_inotify/index.html_gzip_9eb40c70501428812e648ad0526b868837a94bcfc2cf825922611b6baf8d9cdc" +path = "static-publisher/static-content/file2578.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_rsync/07_rsync_unison_use/index.html_b2a62e6fa0af92ddb905e8f04e53c6d81fa92c1c12a70619cc514adf03ec40b9" +path = "../build/minified/site/pl/books/learning_rsync/07_rsync_unison_use/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_rsync/07_rsync_unison_use/index.html_br_71cc7d75d6f88da9db8e917c60bda94422c8369c0b97a613e44c4470737a016f" +path = "static-publisher/static-content/file2579.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/learning_rsync/07_rsync_unison_use/index.html_gzip_b08e44ff51554c1d8488f9e1f9d6070c0767300d4ae394f656cfbb57bed749f4" +path = "static-publisher/static-content/file2579.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/licence/index.html_7ad593898d52b7671c9804054cb552e486ebabac8d07e6a83c39bb12ab3524b5" +path = "../build/minified/site/pl/books/licence/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/licence/index.html_br_4a18292f09462b097e3792195f8d9200456ee9de5517280314036a6166d467a7" +path = "static-publisher/static-content/file2580.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/licence/index.html_gzip_1e84ef0deee3ab7ad1ed591e50dc0b9d599be0de223b071cecf92460a47c713c" +path = "static-publisher/static-content/file2580.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/lxd_server/00-toc/index.html_e69d306a2997a7a3f4180b537edddc157e4f0a415ce20adbdd5d94e179c9b40b" +path = "../build/minified/site/pl/books/lxd_server/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/lxd_server/00-toc/index.html_br_61086a253201b9fbd4558205633277145226cb19168942a15d01ada0b060d585" +path = "static-publisher/static-content/file2581.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/lxd_server/00-toc/index.html_gzip_dbddc104e854188acd8dc6be4a768483364c674e52f04bcc0cb949309d47a26d" +path = "static-publisher/static-content/file2581.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/lxd_server/01-install/index.html_9d9b3db4c21889f8cf6508f94a250ab016aee465f0d060551b24962022f705d9" +path = "../build/minified/site/pl/books/lxd_server/01-install/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/lxd_server/01-install/index.html_br_cc9f42a5675797272344954a8f07f2a676149a8b43ad41974e081a01b6e8b1b6" +path = "static-publisher/static-content/file2582.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/lxd_server/01-install/index.html_gzip_4b5d8d4059edc0d2457ac5e31db177e024f6a1da368becbaf7b4136e7a7cd9bc" +path = "static-publisher/static-content/file2582.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/lxd_server/02-zfs_setup/index.html_38758486184f4afead450f0949d53e3f75f6ca78d4a1337a9c0cc7a39943059d" +path = "../build/minified/site/pl/books/lxd_server/02-zfs_setup/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/lxd_server/02-zfs_setup/index.html_br_6b445eb2dc68e48d0836c3872d689a3265ee3d8517ce228a5e9e6b1c568630e4" +path = "static-publisher/static-content/file2583.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/lxd_server/02-zfs_setup/index.html_gzip_519f71508d9a6056bf0f33ad4b382b75194d21d60387c204eb95f5d7bba4d90a" +path = "static-publisher/static-content/file2583.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/lxd_server/03-lxdinit/index.html_987342eb7706b9d90a0be76ff2ca07c8bcf9cd7dcc26529f72ce82cd54233945" +path = "../build/minified/site/pl/books/lxd_server/03-lxdinit/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/lxd_server/03-lxdinit/index.html_br_5862c12f45e75fb1633fd809e460903d683c2a5f9a883784ffd18b42b910d0fe" +path = "static-publisher/static-content/file2584.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/lxd_server/03-lxdinit/index.html_gzip_b725bfa5b7f811d8e9cc142b948e42184de2973a59376a8cda52d24a1a3b638a" +path = "static-publisher/static-content/file2584.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/lxd_server/04-firewall/index.html_2b8da3d681ce49538d75e8f258b3d66442075d10c521f102eaa1566049e55a9b" +path = "../build/minified/site/pl/books/lxd_server/04-firewall/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/lxd_server/04-firewall/index.html_br_f22f3bff23481e1d34e70fa42a361281f32b13918ad285b1800d823bfe1ef948" +path = "static-publisher/static-content/file2585.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/lxd_server/04-firewall/index.html_gzip_a9dee664472a00110dac90a132a881de976753df18313454eba45160ca3610ef" +path = "static-publisher/static-content/file2585.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/lxd_server/05-lxd_images/index.html_ea75d882b7c3d5b53a2368222e6325a07e10b1bc14a15640c25b222690ff2a6a" +path = "../build/minified/site/pl/books/lxd_server/05-lxd_images/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/lxd_server/05-lxd_images/index.html_br_c120551b5bd773be11d9eae5830c800d3219f52477513026af002bf9e852867e" +path = "static-publisher/static-content/file2586.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/lxd_server/05-lxd_images/index.html_gzip_6af7215d8a7a78551500edc8f5cc60d651f92342443d81c3e628a75af1b26b2a" +path = "static-publisher/static-content/file2586.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/lxd_server/06-profiles/index.html_7d8ca2ca9c68eb18f47a2e9cfc835b3376d41105f897c144471ade2b24cae323" +path = "../build/minified/site/pl/books/lxd_server/06-profiles/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/lxd_server/06-profiles/index.html_br_10ddb204fd590d44d165a8a0614463f80455db2c493a4281ca30d2835a947d82" +path = "static-publisher/static-content/file2587.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/lxd_server/06-profiles/index.html_gzip_84ec330b3eced951dd6827a302f8c9183c24d983a96e1b2e72c6b0f329ee2597" +path = "static-publisher/static-content/file2587.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/lxd_server/07-configurations/index.html_2692af0eeab2c59935071e4937c383a2c988a932c383fd75c20700eb4e699ae7" +path = "../build/minified/site/pl/books/lxd_server/07-configurations/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/lxd_server/07-configurations/index.html_br_e954d51df8feba2bbcf34ac7cd36a1d6011311815f823159742789b05507e77c" +path = "static-publisher/static-content/file2588.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/lxd_server/07-configurations/index.html_gzip_a8f5baefdd32aacde84f71669771d7f36ceff7d3e33401279f4f67b320b375fc" +path = "static-publisher/static-content/file2588.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/lxd_server/08-snapshots/index.html_5ef75824f4743104bc28cf0e7e0e16f4f85b621cec86cdabb84a47c00a32b04e" +path = "../build/minified/site/pl/books/lxd_server/08-snapshots/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/lxd_server/08-snapshots/index.html_br_96c665b6fa9c97a5a2145c33b2974fc07ef2747c10525fe1c3417a7ab83de71c" +path = "static-publisher/static-content/file2589.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/lxd_server/08-snapshots/index.html_gzip_2df8815c6fb57a75078c50d30c092160640ecc2937724351da627c6f4212c8e1" +path = "static-publisher/static-content/file2589.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/lxd_server/09-snapshot_server/index.html_5d7958a874d824e23265c29b90711c468d9d5afb090f24917943812a3eac6353" +path = "../build/minified/site/pl/books/lxd_server/09-snapshot_server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/lxd_server/09-snapshot_server/index.html_br_a6a2e9396c4ce2945c20058e3b234eeb78d8989af44d9cea9c0935cc6f71cf3a" +path = "static-publisher/static-content/file2590.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/lxd_server/09-snapshot_server/index.html_gzip_1b33dbd280e4012a228428c1e5ae7318b3949e2fa46545094748cd0db0a5d378" +path = "static-publisher/static-content/file2590.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/lxd_server/10-automating/index.html_2c145111fb153aeeac08452c9adbcb327692a441fd89017f50e6f230983fb915" +path = "../build/minified/site/pl/books/lxd_server/10-automating/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/lxd_server/10-automating/index.html_br_7ea6b7c6d0dfe0fb7eac685b23f10cbe0eca7df1f39c09f03da082d1e29f5015" +path = "static-publisher/static-content/file2591.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/lxd_server/10-automating/index.html_gzip_1563aa46444269dee12a1349533927e3bdc2e66cfdaa038905696681edd0bac1" +path = "static-publisher/static-content/file2591.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/lxd_server/30-appendix_a/index.html_5ea723fdc3cdbecd84aed4a2abd921adcb1241ff53d7b13fa320639e36e27089" +path = "../build/minified/site/pl/books/lxd_server/30-appendix_a/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/lxd_server/30-appendix_a/index.html_br_6e659e4f4539203296dea5f9c59a81ceef3f235f5fb8e63694dcb6d6142ade17" +path = "static-publisher/static-content/file2592.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/lxd_server/30-appendix_a/index.html_gzip_21ca8bce913358eb504c468998aa1450cac82916bdc0f93b73df6e3d105a5812" +path = "static-publisher/static-content/file2592.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/nvchad/additional_software/index.html_56638358df4f45fd74b2fbccf7602fc985bbaeec92298e8ff82b891c3edeb7aa" +path = "../build/minified/site/pl/books/nvchad/additional_software/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/nvchad/additional_software/index.html_br_dbb5608208d8619fc77fdcf1121eccee8509ad8756dad3b6cc832af3d969b2c1" +path = "static-publisher/static-content/file2593.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/nvchad/additional_software/index.html_gzip_456969d4e78d2fabc471cebc68c237d7ada236bf46108822488fda7b41f8198d" +path = "static-publisher/static-content/file2593.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/nvchad/index.html_75608c978b6d3857e687067c4a37a9f0a4f4ed6bb5c84e2a3a428e6b33cf8cd3" +path = "../build/minified/site/pl/books/nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/nvchad/index.html_br_75941a70f31c5126e0b9dcef3b632f90938e1a0b52708d419f571521485dc022" +path = "static-publisher/static-content/file2594.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/nvchad/index.html_gzip_87e20dc7f549d95a45716f0360f07145f1e1ab55b3941afa2e5d045f22941db6" +path = "static-publisher/static-content/file2594.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/nvchad/install_nvchad/index.html_392aec2d338f7c893b1b779b51fc7d2c20c5bb7dd914f58b0c28015b97b3deb5" +path = "../build/minified/site/pl/books/nvchad/install_nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/nvchad/install_nvchad/index.html_br_686a9821132ff1e22abb1ceffde828db99410f081c79ca73cd4e3999ac717a4c" +path = "static-publisher/static-content/file2595.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/nvchad/install_nvchad/index.html_gzip_e1b500a9b76e0ec60b68537c658b5cb94f04fd67c76605ad8c2558472c67f33d" +path = "static-publisher/static-content/file2595.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/nvchad/install_nvim/index.html_8731af001e119f1c7bb7eade64947d2c6ac84e0dbe96e53762e34d67bef52091" +path = "../build/minified/site/pl/books/nvchad/install_nvim/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/nvchad/install_nvim/index.html_br_3ebe6788ae6c52a37d704e93fb9a848bfcb36555de431ddad853df68b7eeea7d" +path = "static-publisher/static-content/file2596.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/nvchad/install_nvim/index.html_gzip_14f602fb449e665ba243fb0cb170da8abf99da069407fcab733b44080756cb39" +path = "static-publisher/static-content/file2596.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/nvchad/marksman/index.html_8ca4d7654deaaa777e98c3eaf057818918f22a8a1f50ea63e6f017c94ed4355c" +path = "../build/minified/site/pl/books/nvchad/marksman/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/nvchad/marksman/index.html_br_59a27304acb809ad3d744fe91adaec2ad5b3bd355fed0206cbc14b657041c2be" +path = "static-publisher/static-content/file2597.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/nvchad/marksman/index.html_gzip_90789f14ef26078854079ca2cd8828fc1845557b96c2a9c17982b8a7af714969" +path = "static-publisher/static-content/file2597.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/nvchad/nerd_fonts/index.html_44ad75342731b6c6622c4d55aac0eb2a9d55fc09d282a8e83a947ff633afc77f" +path = "../build/minified/site/pl/books/nvchad/nerd_fonts/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/nvchad/nerd_fonts/index.html_br_7757a0fd2ed5fc674d6f246881504b2e9bbe2e88995f0f36dcd766f4cef313b9" +path = "static-publisher/static-content/file2598.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/nvchad/nerd_fonts/index.html_gzip_83ec34d5bdbfcbd17019972a077414414b9d537ba23556061d901860ca5c6c4e" +path = "static-publisher/static-content/file2598.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/nvchad/nvchad_ui/builtin_plugins/index.html_06344246c66afbd15d9ec860c7437ac447289b2c9fb53e2346da742082668f6f" +path = "../build/minified/site/pl/books/nvchad/nvchad_ui/builtin_plugins/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/nvchad/nvchad_ui/builtin_plugins/index.html_br_7fc80baf6468256b142e74dfdfcd22aed5c6f14ee481ebb5d0cbc1bcb9019e7f" +path = "static-publisher/static-content/file2599.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/nvchad/nvchad_ui/builtin_plugins/index.html_gzip_3dcad0343d549c556121d7c8599db013506330b3c9e9eda63c64e0873345a58f" +path = "static-publisher/static-content/file2599.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/nvchad/nvchad_ui/nvchad_ui/index.html_af054e3e87b7342247497823764a80a9b56934815ed97559c3f3e40226d37d60" +path = "../build/minified/site/pl/books/nvchad/nvchad_ui/nvchad_ui/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/nvchad/nvchad_ui/nvchad_ui/index.html_br_8e1e21b69b09d3aba4855483345f9ed3d34116a449c74fb60e1aa9bdd756590a" +path = "static-publisher/static-content/file2600.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/nvchad/nvchad_ui/nvchad_ui/index.html_gzip_e2e32bf9682077efedec0fb10800c11bcdfa8a19638098fffd579407a040adc6" +path = "static-publisher/static-content/file2600.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/nvchad/nvchad_ui/nvimtree/index.html_41bd41f6401f0fe4ef3d8faaaaa2e92a496396e82069ee536629373757a5356d" +path = "../build/minified/site/pl/books/nvchad/nvchad_ui/nvimtree/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/nvchad/nvchad_ui/nvimtree/index.html_br_dc63a2f4783aaea808a4cd5047c551ace73b7002df2fae3dd5712ebe8c9bdc3d" +path = "static-publisher/static-content/file2601.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/nvchad/nvchad_ui/nvimtree/index.html_gzip_c862a5e0a3205e45ae1e80673313ccaefaa502d94c410a8f19118a82e85a33b9" +path = "static-publisher/static-content/file2601.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/nvchad/nvchad_ui/plugins_manager/index.html_aee369e017ff4a7768446555d59da85ec1d3254c5d143b9e0dca031313df9715" +path = "../build/minified/site/pl/books/nvchad/nvchad_ui/plugins_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/nvchad/nvchad_ui/plugins_manager/index.html_br_997300b138f70aec057f9d8b012b852f8e5fa0de1a86e4292a68e8cd1fc9413a" +path = "static-publisher/static-content/file2602.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/nvchad/nvchad_ui/plugins_manager/index.html_gzip_e8555c68db281494594e0700477f898c47c39543a6627c883ddd852ed4d50178" +path = "static-publisher/static-content/file2602.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/nvchad/nvchad_ui/using_nvchad/index.html_0fa61b94b2db3501bf62d1f7fb3f062b37a529267016bf1da99135f277b36ed5" +path = "../build/minified/site/pl/books/nvchad/nvchad_ui/using_nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/nvchad/nvchad_ui/using_nvchad/index.html_br_08a82f206557997e792d83b17ceb4aaeed6916aafcd526992fcb20ba16157749" +path = "static-publisher/static-content/file2603.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/nvchad/nvchad_ui/using_nvchad/index.html_gzip_870c30a86e92abe1562a6f8caa5bc564e97bae371ec7582d84736e0a4393ecf1" +path = "static-publisher/static-content/file2603.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/nvchad/plugins/index.html_e0936a4a34c5816c81cd81ae555cd830c38610cf16b265a4fedaaff9c28dd790" +path = "../build/minified/site/pl/books/nvchad/plugins/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/nvchad/plugins/index.html_br_1616cfde8984d9bbe9f4f1147ac6de22306006b8abd9ebe80faaad3bd3621acb" +path = "static-publisher/static-content/file2604.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/nvchad/plugins/index.html_gzip_50e6afc98a807ede0607969e8d7799685dbfd467260bf0da532476452963961a" +path = "static-publisher/static-content/file2604.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/nvchad/plugins/md_preview/index.html_0da9f0fbdc5b5da9e9865766b6efa251740314d6e44f8100172d7dd24852c1bb" +path = "../build/minified/site/pl/books/nvchad/plugins/md_preview/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/nvchad/plugins/md_preview/index.html_br_ac832ca7cda0a229176421cc9860626d83c74e1b077a169495a2e88bdb732047" +path = "static-publisher/static-content/file2605.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/nvchad/plugins/md_preview/index.html_gzip_f096a359aae599cbf8caff716456375d2ac1f4debb7a87fd98cb346ffe726d9a" +path = "static-publisher/static-content/file2605.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/nvchad/plugins/projectmgr/index.html_5326c5abd38a0386c12992960911fc8552b6bc98e5130267c02b2af90fcdedac" +path = "../build/minified/site/pl/books/nvchad/plugins/projectmgr/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/nvchad/plugins/projectmgr/index.html_br_a53dffdaeef6e32dcffd305f5fa89f7588e418eea5ed50b651533a2993a7d192" +path = "static-publisher/static-content/file2606.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/nvchad/plugins/projectmgr/index.html_gzip_774e2e21dfa2400797702766384b117c04caa580408725bb02faf9202cfd01a1" +path = "static-publisher/static-content/file2606.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/nvchad/template_chadrc/index.html_57615a59992b1ce64946049773005cf8ff0fc3d15e34ef868b9b39b3c6922036" +path = "../build/minified/site/pl/books/nvchad/template_chadrc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/nvchad/template_chadrc/index.html_br_e6208bfdc87b5814dd1c0f6d32e46ac917aef1e1221e061f4076b9e64a69913d" +path = "static-publisher/static-content/file2607.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/nvchad/template_chadrc/index.html_gzip_3a385f815a18f199cb21042538b129c76504f9ce8cfd59d5be20caa5539a0814" +path = "static-publisher/static-content/file2607.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/nvchad/vale_nvchad/index.html_a0c6e4d1da62f9fca1b4c65529a5a723ce18b6bf0f93ffc8162c35bcad3220a3" +path = "../build/minified/site/pl/books/nvchad/vale_nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/nvchad/vale_nvchad/index.html_br_e1005f4b6d2975505475fb1df3dd9b8d6d0ccc4e3effe431263a93c9b71eaada" +path = "static-publisher/static-content/file2608.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/nvchad/vale_nvchad/index.html_gzip_b683a49d512789b395b22f49ebc1ca81ee4dc9bf5c37774dfe64515e41a02235" +path = "static-publisher/static-content/file2608.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html_ade5bfbe3e7c8ffd659573f55e887d59e78410ab7b9269efcdbe569e2996418e" +path = "../build/minified/site/pl/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html_br_ea0494fcd028f8c09edd54f04a8e9d4f44fab74fa1f9f8863461237aaa6dcdec" +path = "static-publisher/static-content/file2609.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html_gzip_f6e8f7b45b9ad1d562729f189019748c17a6efdd0312bbdf08a980b1b4f42681" +path = "static-publisher/static-content/file2609.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/sed_awk_grep/2_grep_command/index.html_2c0b4c770e35e4950826d75e0bbcea2c5ce74eecfa796b67fd991c7fc5b7a820" +path = "../build/minified/site/pl/books/sed_awk_grep/2_grep_command/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/sed_awk_grep/2_grep_command/index.html_br_48a3ab691ba78c8b43af111e2f24e79b4f8a72ff7a39c43aca67ad3b8c604036" +path = "static-publisher/static-content/file2610.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/sed_awk_grep/2_grep_command/index.html_gzip_958502f826936beafdeecb4c38dac939fcbb551b9426780d91ce73ddb302cd01" +path = "static-publisher/static-content/file2610.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/sed_awk_grep/3_sed_command/index.html_593db9d3959a256aedc38070e8d143ef162b6e6aa1f84a085cf67070d187067c" +path = "../build/minified/site/pl/books/sed_awk_grep/3_sed_command/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/sed_awk_grep/3_sed_command/index.html_br_5a63b087531c4b414bf580f508c71f7a12d72bc08d478c7fa5c3259cb37bf3e9" +path = "static-publisher/static-content/file2611.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/sed_awk_grep/3_sed_command/index.html_gzip_3e828c59612b0eedfe333cd49874d7716db34834d2756bac5184098cfc4024cf" +path = "static-publisher/static-content/file2611.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/sed_awk_grep/4_awk_command/index.html_8265956c7497280137c9c1aebbe0ec53dc6d8fdd34b350b0543c3294b4252040" +path = "../build/minified/site/pl/books/sed_awk_grep/4_awk_command/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/sed_awk_grep/4_awk_command/index.html_br_ca1cdae1901193e42fe96755a5a529722a7da6585e69e63f5561d805ebcc53d1" +path = "static-publisher/static-content/file2612.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/sed_awk_grep/4_awk_command/index.html_gzip_76f18da6639bac50c7a3132870cb3cf2f527e31ed6d0a8d811ad80a8de2bb399" +path = "static-publisher/static-content/file2612.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/sed_awk_grep/index.html_008d7636f85439246e824e7852d14b32e3b525749b0b2acceea7ce611e072732" +path = "../build/minified/site/pl/books/sed_awk_grep/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/sed_awk_grep/index.html_br_424833c86670191589103fbecbd81ce6652b3da42a6a57f48188969abf7b7929" +path = "static-publisher/static-content/file2613.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/books/sed_awk_grep/index.html_gzip_19139caa345bb929d101f0d953299bcc9dba95c17d07d5ae2157daa1efab256c" +path = "static-publisher/static-content/file2613.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/containers/docker/index.html_8b03adf210246958f29bf0b505bffcb2a04a104c1e3d5f5b750bd4553bc019e8" +path = "../build/minified/site/pl/gemstones/containers/docker/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/containers/docker/index.html_br_c3a8a170af1d10b451e3b51abfe45baf7039de558bbba214db4e2504d3343a92" +path = "static-publisher/static-content/file2614.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/containers/docker/index.html_gzip_3924fb17b8db5f24a72a68045a110ed09727ac3a98e1d89368947ecd93cbe219" +path = "static-publisher/static-content/file2614.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/containers/podman/index.html_531fa60ea43f54ba6ed846be69122acc62a65fe8d0100aca02a0d1e4509d8a2b" +path = "../build/minified/site/pl/gemstones/containers/podman/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/containers/podman/index.html_br_0c461b809bb3e91db4866b1e3d9669aa758dd91d4a26059125bcf066245bf6f8" +path = "static-publisher/static-content/file2615.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/containers/podman/index.html_gzip_9248d8b0c643543bfa95fc38a58526a960eefa2777c2205507ea52b47530ed48" +path = "static-publisher/static-content/file2615.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/core/view_kernel_conf/index.html_63651130d431601ea7e9c1eab2854434addd3a677d8cb440b0829a9280a67aed" +path = "../build/minified/site/pl/gemstones/core/view_kernel_conf/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/core/view_kernel_conf/index.html_br_e32fefd4b07ec079805f794b034b3ca3731f87416d978bb2012c3308700ed3ce" +path = "static-publisher/static-content/file2616.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/core/view_kernel_conf/index.html_gzip_331fa1a2c0541ae18206c119a1e8155a66595aade6023897eb2136bf477dc9b3" +path = "static-publisher/static-content/file2616.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/dnf-swap/index.html_42b2727bc6db2a85023ce6557e555fb4d2c439283a2062a5f6f02d5d11b3b48c" +path = "../build/minified/site/pl/gemstones/dnf-swap/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/dnf-swap/index.html_br_eeb21d8754bd335decf96d149ec069b10b11be70f5c59e821bb56adbf85dd75a" +path = "static-publisher/static-content/file2617.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/dnf-swap/index.html_gzip_8672db22941967683c91ac00b556d80ef023f4ad5b209d4a54ed55035defe033" +path = "static-publisher/static-content/file2617.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/gemstone_template/index.html_28cc25e8e345015c2151f2636e8de34afc1bdb85c6c319cf8cf0f75e2cf7e77a" +path = "../build/minified/site/pl/gemstones/gemstone_template/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/gemstone_template/index.html_br_7950277b715aba1e344fd383f21e3b1361731b5a7d5491aa50ce0aafff663ff6" +path = "static-publisher/static-content/file2618.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/gemstone_template/index.html_gzip_a5b5ce631a7fa6385cd8ca3f7b04c258dff77c46ffc3fe325b6504cb99a45f70" +path = "static-publisher/static-content/file2618.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/git/00-gh_cli_installation/index.html_bb210165c2f4a12977444d606f73bcb93a98227ded75763da53c638eb5bd30fe" +path = "../build/minified/site/pl/gemstones/git/00-gh_cli_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/git/00-gh_cli_installation/index.html_br_d68b1b1c38a794c85bf886c3c369645a21d30bfa4b36621d67ed78462810c13e" +path = "static-publisher/static-content/file2619.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/git/00-gh_cli_installation/index.html_gzip_6e97b8a6174dcba255b1f8d9e0a2d393d428e4b37785a783d4e51b1e68cc1933" +path = "static-publisher/static-content/file2619.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/git/01-gh_cli_1st_pr/index.html_e47acb2e29f242e4482cb1ae6f3967b986a910ec12b0efc5056691a0d74b43dc" +path = "../build/minified/site/pl/gemstones/git/01-gh_cli_1st_pr/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/git/01-gh_cli_1st_pr/index.html_br_97e52f2e28d4587029ebeaeab3c2cf3ffebf356c5797faa4c21f89260de484ee" +path = "static-publisher/static-content/file2620.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/git/01-gh_cli_1st_pr/index.html_gzip_c1a6566901496a4c09e612c95a853dfb4a9053dc62c335c543dbdc3dcaf13dad" +path = "static-publisher/static-content/file2620.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/git/02-gh_cli_edit_pr_title/index.html_18408dbd39bcaa867d881565bc56ae19704f135f981f1f3b271922de9c3c9274" +path = "../build/minified/site/pl/gemstones/git/02-gh_cli_edit_pr_title/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/git/02-gh_cli_edit_pr_title/index.html_br_6a12368a1aa97c2b628836866c0a2b235bca0ca5fef5b953e53081958bb86ed2" +path = "static-publisher/static-content/file2621.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/git/02-gh_cli_edit_pr_title/index.html_gzip_e52daf5476fe9de1d70a0c0858cc1ee9bb4970532a1f9b7da43bef500a2894e9" +path = "static-publisher/static-content/file2621.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/git/02_github_web_edit_pr_title/index.html_08627b82ac5421c0ecfa44244f7d7b9948bfb47dbb585fe691f5777e18951d60" +path = "../build/minified/site/pl/gemstones/git/02_github_web_edit_pr_title/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/git/02_github_web_edit_pr_title/index.html_br_50e15514ad8926262a1d3f7b0c9b7dca3c42de6e99b52df82f60b3bb02b01136" +path = "static-publisher/static-content/file2622.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/git/02_github_web_edit_pr_title/index.html_gzip_d961aca612261be35e7979eed00b12ca73251d78b4e99c1a317447fee209eec6" +path = "static-publisher/static-content/file2622.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/git/feature_branch_workflow/index.html_1bc3909d2ea7e02736b868ff45ef90e7a185d6c4695f3279ae018373ad3a5f19" +path = "../build/minified/site/pl/gemstones/git/feature_branch_workflow/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/git/feature_branch_workflow/index.html_br_d8985a8ab33350f14edf7d43d2e592967f9a6180ff0eb020f4a3cbcee3da9f20" +path = "static-publisher/static-content/file2623.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/git/feature_branch_workflow/index.html_gzip_600bb806a2bb2604d7fa21a753c8182dd39cbda54977f195ccd1b66b447aa169" +path = "static-publisher/static-content/file2623.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/git/fork_and_branch_workflow/index.html_41e915b5f7480cc3404ec51d8fdf4c8953b4750ea4aefbf28ec21b6d69eabb5a" +path = "../build/minified/site/pl/gemstones/git/fork_and_branch_workflow/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/git/fork_and_branch_workflow/index.html_br_dd1ae385da783c8d4843cbdf718625c078978c982c0e8aff154a96cd359b3afc" +path = "static-publisher/static-content/file2624.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/git/fork_and_branch_workflow/index.html_gzip_059c397e888e94f9e6f0201f6bf2e2f99b61e3954b4bbe7a3eaf1129008cfac6" +path = "static-publisher/static-content/file2624.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/git/git_pull_vs_git_fetch/index.html_f1ffcc2ad41502c613d72305c255af4e15710becc5af904436b763b3a32124a1" +path = "../build/minified/site/pl/gemstones/git/git_pull_vs_git_fetch/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/git/git_pull_vs_git_fetch/index.html_br_8e1b2c941bd484cb06a0315d328e11e55bd290df2be06a715c36c5603478437a" +path = "static-publisher/static-content/file2625.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/git/git_pull_vs_git_fetch/index.html_gzip_1fe6ce53de16fc8a8247cf1ee8946b41e989effdcef88134f05a4bc764d16c0e" +path = "static-publisher/static-content/file2625.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/git/git_remote_add/index.html_119f518e7e244fc4e106dc196538b56d32295c22d47576b38cb1c7b600bc8728" +path = "../build/minified/site/pl/gemstones/git/git_remote_add/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/git/git_remote_add/index.html_br_99785580cc76bb62a732f47b124927aff686f92d9a4844254d5bbdb305cd636f" +path = "static-publisher/static-content/file2626.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/git/git_remote_add/index.html_gzip_f929396170d0dabe37ca25bdc5f2ea804dc4c5524dc92860862fefad2bd3f876" +path = "static-publisher/static-content/file2626.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/git/tracking_and_nontracking_branch/index.html_a11ae3fd73709bca9828ebb7eb8158712c24aea5b5ed7a5d121020bf562b290a" +path = "../build/minified/site/pl/gemstones/git/tracking_and_nontracking_branch/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/git/tracking_and_nontracking_branch/index.html_br_b49e2958942488c5727fb279ed92afed1f58abe430412af6e5517d47498e76f8" +path = "static-publisher/static-content/file2627.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/git/tracking_and_nontracking_branch/index.html_gzip_87d403ce2dad390ed7a3d6400930020ec90708899c6bec25a7a7f48981c84864" +path = "static-publisher/static-content/file2627.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/htop/index.html_845dd1b959dd78f85af55982ec9d577c6653d7bd6fe5697c8f9a35d45f753082" +path = "../build/minified/site/pl/gemstones/htop/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/htop/index.html_br_4a3cf82bdc994789117fd5f3f874c033a150b8d345e3629860ead366fddfb8ae" +path = "static-publisher/static-content/file2628.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/htop/index.html_gzip_b3027b23f0d733fcb483434c2f37628e6bec03df8bdfea4b1832743505bf0fe7" +path = "static-publisher/static-content/file2628.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/https_rsa_keygen/index.html_4ade1d191643ec787590a4a0d927422179fc30982b5c7921712e97d737d31a3f" +path = "../build/minified/site/pl/gemstones/https_rsa_keygen/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/https_rsa_keygen/index.html_br_2ecd62d7dc2e3cfca3149a95c07487e64f22f0cedcb67d698118d32250a4566a" +path = "static-publisher/static-content/file2629.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/https_rsa_keygen/index.html_gzip_2845b3f8ad437efc0e6472dd5f14f915823d53ab784a3de6c3096888b3e9a458" +path = "static-publisher/static-content/file2629.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/index.html_52f46b307083f5b3cab13087bdf04313601545702f5d9615ce9aa2f9f7684317" +path = "../build/minified/site/pl/gemstones/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/index.html_br_e9db9be4e07dfabb34c9aa78ed1c44715383bdb0ccbe9300e97c3b39e8c47e19" +path = "static-publisher/static-content/file2630.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/index.html_gzip_6a2faf069e1af8f91910d7497a086569b530e7c42366c47b1fcc1ee77356a551" +path = "static-publisher/static-content/file2630.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/markdown-demo-v2/index.html_176e1dfdd43f6f8b573603a12d9e87c0aeaf7d4db64dc4ae4823e4b41fada271" +path = "../build/minified/site/pl/gemstones/markdown-demo-v2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/markdown-demo-v2/index.html_br_6694fbb9bcf51d56ea38cbfd34b836044fbebf3ff71c69d2b8c85b6dacd9e715" +path = "static-publisher/static-content/file2631.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/markdown-demo-v2/index.html_gzip_4ac186682858537a5d238809beae1f3db7e94e9cb3149f62aef5b39e8ae63335" +path = "static-publisher/static-content/file2631.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/network/RL9_network_manager/index.html_ed7024fceb4ae518b38a1eefe860d50a92e1a12c07cfbf114af75fb081302684" +path = "../build/minified/site/pl/gemstones/network/RL9_network_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/network/RL9_network_manager/index.html_br_29e13817a9b20ba56fc30b359d779c9b1bac86363f01895e69daba1b9b99dc13" +path = "static-publisher/static-content/file2632.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/network/RL9_network_manager/index.html_gzip_d36ce34d2eb62bc5c2fddd18e8a6517a6c65b95d68fc107d10356bdfa984910e" +path = "static-publisher/static-content/file2632.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/network/iftop/index.html_99709bde7667707d7ca92161dec80841af68639a7d6a94caab2cb41b8908f229" +path = "../build/minified/site/pl/gemstones/network/iftop/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/network/iftop/index.html_br_67d53e8ae11b996347bbbb3d298f931756efd155d275b573916b864e347058a6" +path = "static-publisher/static-content/file2633.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/network/iftop/index.html_gzip_d3ba17d767aab0af663384f4ddf35ce1eb5822ac5a781fb933d9b234f895801a" +path = "static-publisher/static-content/file2633.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/network/mtr/index.html_1541cf24fc563661c278a7908cba3f4cbd950719daf3a37cd8f797f105323485" +path = "../build/minified/site/pl/gemstones/network/mtr/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/network/mtr/index.html_br_39fc9076304bdb3862bca5f4df09bd1152f1ccb9a233b312f401ab344fc421b0" +path = "static-publisher/static-content/file2634.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/network/mtr/index.html_gzip_ab4fbab229d0f8b1c34430c05277c42ed999efd3f8bc69e7a222c68ef3825991" +path = "static-publisher/static-content/file2634.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/network/nload/index.html_c2fa7145987f3104b0e6c041b767d4e241df0dc5d7594166fa677dfe1a0b50eb" +path = "../build/minified/site/pl/gemstones/network/nload/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/network/nload/index.html_br_d41118c0922f809b029feff809c1ee1e5b717d374992879efa5746456c273259" +path = "static-publisher/static-content/file2635.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/network/nload/index.html_gzip_b5c55bd02132af5c0af8f822ab23b77d8db66ae1476240a647972d4a251cb97d" +path = "static-publisher/static-content/file2635.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/network/nmcli/index.html_d146570f3ebc44690b7497e472631ea1038d7db0ad908cfc6fa58cb2450e0b16" +path = "../build/minified/site/pl/gemstones/network/nmcli/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/network/nmcli/index.html_br_fff50c15b54b79e4f85e89b2ea4a7bb5dcc70a8d0eb2d69607da969a2c7ce34e" +path = "static-publisher/static-content/file2636.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/network/nmcli/index.html_gzip_4f4260e0f63274af38a87e3116d9394a81515b5e5e28f05b52bb1b723453b28b" +path = "static-publisher/static-content/file2636.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/network/nmtui/index.html_888460f6deb1797fdb1356be7011c8bf5351a2aca569f5f4e16ccfbf5216bd2a" +path = "../build/minified/site/pl/gemstones/network/nmtui/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/network/nmtui/index.html_br_5e7bec0466ec61a3a5a32c403ddca3d6990f9b976d830b77433742ac6728f3a6" +path = "static-publisher/static-content/file2637.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/network/nmtui/index.html_gzip_8f13402873fa1bdbef26f31f7ff022627085c3ce7d46cbf65bd792e8aafdaadf" +path = "static-publisher/static-content/file2637.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/perl_search_replace/index.html_28def9d454d4002401f0edb3b35be78dfc9cb37db43a37e70940334a7b49b212" +path = "../build/minified/site/pl/gemstones/perl_search_replace/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/perl_search_replace/index.html_br_64ac69d98247a408e990ecdcf644be85e5c969aa441365213331a141550640ce" +path = "static-publisher/static-content/file2638.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/perl_search_replace/index.html_gzip_5dc1c9789191a092ff0f2f6c7be8c79b9ede00597655466d0b88d9db88cc4dfe" +path = "static-publisher/static-content/file2638.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/rpaste/index.html_c27666fb35830c8a84f9d322e416134839e17c59f485f7224dd424729a693a9d" +path = "../build/minified/site/pl/gemstones/rpaste/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/rpaste/index.html_br_280fc56f77456fb86da6476c252441082d153181d7b5b0eb52ddb3dd7cea734b" +path = "static-publisher/static-content/file2639.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/rpaste/index.html_gzip_3d3d0fbd3b263211f60fa879f9926abcd0fa57bcb2eda4883e8c1b845389672d" +path = "static-publisher/static-content/file2639.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/scripts/NoSleep/index.html_7ccad9d0506e8d28abe4714bffdb75c426502fc7463b93189d8a7a6525d089bc" +path = "../build/minified/site/pl/gemstones/scripts/NoSleep/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/scripts/NoSleep/index.html_br_d3ce96e7abe962125f0818ccf64a881a6e3a1a7d32dc17979a544fe9b5f9d63f" +path = "static-publisher/static-content/file2640.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/scripts/NoSleep/index.html_gzip_cd30a9d00e2e0b3702b108fcb47f146b4f8b762a8afc4367713caf8834308c5c" +path = "static-publisher/static-content/file2640.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/scripts/bash_stub/index.html_30ecf383028a71fb3684686ef772341466ff0166d84bb7b60219dbd6c4f461b1" +path = "../build/minified/site/pl/gemstones/scripts/bash_stub/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/scripts/bash_stub/index.html_br_3bf4ff08273df9d2e22925fb2c971c303414b3c95538cbf385c7e44c2d56d331" +path = "static-publisher/static-content/file2641.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/scripts/bash_stub/index.html_gzip_a2e2ee8c33daef19cb0278b6e4db673c2b0fa6961f2bf98f68c2fd1ccb740976" +path = "static-publisher/static-content/file2641.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/sed_search_replace/index.html_6d9d0946388cf5e36327f59055cfc73f501fa08bd813b7ddda2bd5efd99f2a9c" +path = "../build/minified/site/pl/gemstones/sed_search_replace/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/sed_search_replace/index.html_br_9ea7ed389b3d4658927238f661ae419623bd79c70ea28b8d27df8f604773d488" +path = "static-publisher/static-content/file2642.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/sed_search_replace/index.html_gzip_b25366a9475aeeffd57be4842feb26084b8dcca3ab32040384c80685e96bd06d" +path = "static-publisher/static-content/file2642.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/setup_local_repo/index.html_09d035ec1f011a3af847e6035516b6bd872908ef94bae750d66aeac4d24a6aeb" +path = "../build/minified/site/pl/gemstones/setup_local_repo/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/setup_local_repo/index.html_br_476cc8c8d7e5c027199729582d4190f531f6084521d573f514072053d2469944" +path = "static-publisher/static-content/file2643.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/setup_local_repo/index.html_gzip_5f76ef4a0f52665023855810145ef593f59f50afa40b726485705dfb8eed8848" +path = "static-publisher/static-content/file2643.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/string_color/index.html_ab43f2d43a05328c16898367b19db53b569caf736891005b5994d5cb5412444b" +path = "../build/minified/site/pl/gemstones/string_color/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/string_color/index.html_br_661c6b59461fc98ff29d47a5c33fce80c5b13d6c41312031520b27777a38462f" +path = "static-publisher/static-content/file2644.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/string_color/index.html_gzip_bb35d9dcc918e42bcbd4355b3eda191ca4c621a66b01871989868bce8d0b1626" +path = "static-publisher/static-content/file2644.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/systemd_service_for_python_script/index.html_e20a086263c7fe8fd516b10071ee87f080a3a968a983fe10581b18116e1eee0c" +path = "../build/minified/site/pl/gemstones/systemd_service_for_python_script/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/systemd_service_for_python_script/index.html_br_d74d679b677b8755cffe2e66cd7321d627a28763ccf7de98a7bc5819be1c397b" +path = "static-publisher/static-content/file2645.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/systemd_service_for_python_script/index.html_gzip_1430cd4673842f13efd6c83f9ae6641ccc15f6db29e3f0244dcfca30b97fca33" +path = "static-publisher/static-content/file2645.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/test_cpu_compat/index.html_c175f8fd76ccdcc498b9e559cd78feea975c6a577b35bbc6db2df2e2d98daeea" +path = "../build/minified/site/pl/gemstones/test_cpu_compat/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/test_cpu_compat/index.html_br_e7e936bcc163fb92febc2e58368722fb336d70bc8e279a2aead329df75d4e6f2" +path = "static-publisher/static-content/file2646.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/test_cpu_compat/index.html_gzip_f3e7ed74cc6f8ad587d61d5c5c9addc70d0112159d4f68efb83f2a617ff3c6bd" +path = "static-publisher/static-content/file2646.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/torsocks/index.html_b7fdaf88238e158ce11e4150873f8acde8b19fa7249418ade4cbd29c54be3e9f" +path = "../build/minified/site/pl/gemstones/torsocks/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/torsocks/index.html_br_dabee565848fafc56292d21acb795a0aaa09f86172535b4abd7517a84296067d" +path = "static-publisher/static-content/file2647.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/gemstones/torsocks/index.html_gzip_df30fd06807480776f6c80d50e6f960f2d60f4fd923d0e61e00c8951648913fc" +path = "static-publisher/static-content/file2647.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/8_6_installation/index.html_5451c1ed22cf59a06df8b47f0ebe2e26bb769895a3c1bb5141c60c578d0031d3" +path = "../build/minified/site/pl/guides/8_6_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/8_6_installation/index.html_br_8c1d6bdf7a9f78e695320f761143fd2bf6dd6b2cddf89d000bddf6b1c6aa7ca1" +path = "static-publisher/static-content/file2648.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/8_6_installation/index.html_gzip_14da041e7416ea54dfb61921d5285204b966ee0120e9135ba6173da3b399828c" +path = "static-publisher/static-content/file2648.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/automation/anacron/index.html_d4b154b1ac87fe3cef93d8c14a4fbc5c732ad2f501491856e42067ee12a4aa03" +path = "../build/minified/site/pl/guides/automation/anacron/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/automation/anacron/index.html_br_2c946b386323df8418c16a3fae687a456c5bb42a0bc63f573baf1924aaf4f371" +path = "static-publisher/static-content/file2649.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/automation/anacron/index.html_gzip_bd33a8e7983955dd7317285e4bd4311e529b1bba1a91f4f0aec4494f4403b9a0" +path = "static-publisher/static-content/file2649.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/automation/cron_jobs_howto/index.html_a6bccde4d0a38659242770de2fc5e6f56931ef7d7d87d908d3042542fcf28ce2" +path = "../build/minified/site/pl/guides/automation/cron_jobs_howto/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/automation/cron_jobs_howto/index.html_br_9aedd23bc2a93f26df3fb36d1066707e062804300c63c5d2c592d6c8a7ea80c0" +path = "static-publisher/static-content/file2650.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/automation/cron_jobs_howto/index.html_gzip_1246d45aa32c80d24dbb97d695b13498c6a85949a5008c474bf601ce9b08a5ef" +path = "static-publisher/static-content/file2650.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/automation/cronie/index.html_422469780d8324308cc58efd1b4a66fac6e2aba199c95944f78de97ad91bf3b7" +path = "../build/minified/site/pl/guides/automation/cronie/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/automation/cronie/index.html_br_80685cd72bfe763e7a5d6fe0ddb32f56d98a4adf3767f591248b94fff7f36843" +path = "static-publisher/static-content/file2651.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/automation/cronie/index.html_gzip_e4e531594762fce97fce9ed1747647a8fc3aedb3f316040dc204524db0540c9c" +path = "static-publisher/static-content/file2651.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/automation/olivetin/index.html_d32111798b12867128aa97af21b6664a863e89bb42f4b818ef42b248a3fbee1d" +path = "../build/minified/site/pl/guides/automation/olivetin/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/automation/olivetin/index.html_br_3cb70011d54419428f44e9d0a29c7b79004a112d56f1a712a4e7691aaea7c299" +path = "static-publisher/static-content/file2652.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/automation/olivetin/index.html_gzip_fab38a6b609b0033eddc61687b8055a96b5eb4e3bf9d2286a432125a0d977e15" +path = "static-publisher/static-content/file2652.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/automation/templates-automation-packer-vsphere/index.html_dfc7999c10369842893fc017e4a5d1115060493d337cf0b6f12b5b5188a61c45" +path = "../build/minified/site/pl/guides/automation/templates-automation-packer-vsphere/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/automation/templates-automation-packer-vsphere/index.html_br_dda369ec0bea2eee8c0a0180c5eb85d51d2e6b7b730eb2f0fae448738fbab98b" +path = "static-publisher/static-content/file2653.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/automation/templates-automation-packer-vsphere/index.html_gzip_70900ca1400b23bc89741543dc37981b76ef39660e28f5273fd5937f2362755c" +path = "static-publisher/static-content/file2653.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/backup/mirroring_lsyncd/index.html_b1641746cff21f70ef82c3a74dddc8d1bb65b7ecbde19a0024a6b5f389716f20" +path = "../build/minified/site/pl/guides/backup/mirroring_lsyncd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/backup/mirroring_lsyncd/index.html_br_e8b06982cfb216eb1f73fd912e2c7c5b45cc9e6def301e3e4f11d7467d98fb70" +path = "static-publisher/static-content/file2654.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/backup/mirroring_lsyncd/index.html_gzip_effca4a0c2662047866f799cfb2274005639007821f658fdba226ea9a093e02e" +path = "static-publisher/static-content/file2654.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/backup/rsnapshot_backup/index.html_16cbe750f759c3be29de5de213bd06f35f3084a30fd778e28bd471524d504e81" +path = "../build/minified/site/pl/guides/backup/rsnapshot_backup/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/backup/rsnapshot_backup/index.html_br_a9be5d8dcd1b5be1990ec496901b8dfa446db2c2efa8d6cf437b8b1693c34e19" +path = "static-publisher/static-content/file2655.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/backup/rsnapshot_backup/index.html_gzip_6806b2fe0784bcc7aff60a5d191a5133ae78eea80dc775e5af5b4de34000ddd9" +path = "static-publisher/static-content/file2655.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/backup/rsync_ssh/index.html_39b016c88c90faec2ffcb8061b7187dd3740d88b9d52bda57c931ca244f1fcdd" +path = "../build/minified/site/pl/guides/backup/rsync_ssh/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/backup/rsync_ssh/index.html_br_c0f7305385acbb3e5c5d97e2ff35f72ef3c4265e044ab0cd2fe73faf3795b4ae" +path = "static-publisher/static-content/file2656.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/backup/rsync_ssh/index.html_gzip_f31eba7c4b335834812591b13af301c02df9d7f56955645b24bb766311fcf95c" +path = "static-publisher/static-content/file2656.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/cms/cloud_server_using_nextcloud/index.html_988e60bb9b114cd3d8aa33eec018d78f6525cf5ef8c860d7c3905d85bb10bc29" +path = "../build/minified/site/pl/guides/cms/cloud_server_using_nextcloud/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/cms/cloud_server_using_nextcloud/index.html_br_9f48713bea327af1d3e9565efbb7d92b84a7b80ce8a8a931baaaf27098d248c8" +path = "static-publisher/static-content/file2657.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/cms/cloud_server_using_nextcloud/index.html_gzip_2ab17e0185779245e2b8d39f3b53bd9912c6ea7d02200515561ea1dbc08a7276" +path = "static-publisher/static-content/file2657.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/cms/dokuwiki_server/index.html_040c6a3936a3af3fcf84d91e07101430012a37e6d587824fc20b9c563c33bb30" +path = "../build/minified/site/pl/guides/cms/dokuwiki_server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/cms/dokuwiki_server/index.html_br_4c4bd364cb9f593bd6cd82f049266d15cba3cae3725511a868613170a3b9fb11" +path = "static-publisher/static-content/file2658.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/cms/dokuwiki_server/index.html_gzip_164a60c3a1550a505254abe8cdf15524f4f85c91bad8c20b30c0732691b5de6b" +path = "static-publisher/static-content/file2658.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/communications/asterisk_installation/index.html_d657377084edc7d43bb61a21b0736c9ea606a3ac6095423c022180ebf9422030" +path = "../build/minified/site/pl/guides/communications/asterisk_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/communications/asterisk_installation/index.html_br_da5b3cf8991baf0f444bc457219559a61af4f9304e4d8b8410531abbf8d935bd" +path = "static-publisher/static-content/file2659.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/communications/asterisk_installation/index.html_gzip_0ce0d381b8a83da7b92365110bef90d3132b6cf427dea0c6a75ea6fc263ee297" +path = "static-publisher/static-content/file2659.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/containers/lxd_web_servers/index.html_fec49a1225f4e55023a55603c992a3f2fe2e988ce48b13fd87131b772fe432eb" +path = "../build/minified/site/pl/guides/containers/lxd_web_servers/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/containers/lxd_web_servers/index.html_br_3555409dca8d002d8b27c07559569881f9a89b5360fc28bcb35422a5b711d161" +path = "static-publisher/static-content/file2660.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/containers/lxd_web_servers/index.html_gzip_314896bda978bcc2996ddbc5bed30b3fb60e684b76d8d10932e3d181139ab32d" +path = "static-publisher/static-content/file2660.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/containers/podman-nextcloud/index.html_1760eed2b56c5c1d2d788e5fcd8ab17ef37d0bd5fe5016d40c2797c14e202894" +path = "../build/minified/site/pl/guides/containers/podman-nextcloud/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/containers/podman-nextcloud/index.html_br_81222ce0295821a6e36bd16be6b585ea092c611b00c16c0469cd0df29866e221" +path = "static-publisher/static-content/file2661.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/containers/podman-nextcloud/index.html_gzip_a53d9165b423d38749a6faeb3e34e11b87bcdec7f085b964dd432c942d28e1de" +path = "static-publisher/static-content/file2661.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/containers/rancher_and_kubernetes/index.html_df6045a77ebaea7194f6868e6383190e2dd27f234f3631d41d5b36924ffb9b02" +path = "../build/minified/site/pl/guides/containers/rancher_and_kubernetes/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/containers/rancher_and_kubernetes/index.html_br_51085817e6416ecf554f3c5dc0fe85c1215bb3a1c1d488c8ddd99c47d22b9d5e" +path = "static-publisher/static-content/file2662.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/containers/rancher_and_kubernetes/index.html_gzip_a623ae8e1d77629710dec0baade283ba102fa7c1c12d4269e980acc5e91e9cbf" +path = "static-publisher/static-content/file2662.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/contribute/beginners/index.html_f56f679ef5bded8f58181c38dea0cc277f460db2533ffc22c7c9e61758fd987c" +path = "../build/minified/site/pl/guides/contribute/beginners/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/contribute/beginners/index.html_br_1fe1dc6e4738a892f2a3aa47390b52c50ad21f31439c66851b470e3f8511927e" +path = "static-publisher/static-content/file2663.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/contribute/beginners/index.html_gzip_d2cd32eba9ea4fa0481aef14fe9698209564aff2ac7a52fe11db274e1c7bfec0" +path = "static-publisher/static-content/file2663.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/contribute/createnew/index.html_7a45d6f8c804fddfda8642e4c87c90116a1dbfbd4c8a2016d5b42863110a9b67" +path = "../build/minified/site/pl/guides/contribute/createnew/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/contribute/createnew/index.html_br_6fcbac3e224f492b950256c90b235aaa307454fc5e06674dcb974988df00b779" +path = "static-publisher/static-content/file2664.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/contribute/createnew/index.html_gzip_4aebec00cb9800627f8d653a66edaf64a03d41c5611d9d056b4b48b25d82c62b" +path = "static-publisher/static-content/file2664.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/contribute/index.html_fef7ec1a9572f6caf91b99b0c6643b58f6bd6eeab1dfda127af358573a5152ca" +path = "../build/minified/site/pl/guides/contribute/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/contribute/index.html_br_0658de7eb79b809e010f6cadd01b1ab7c62f4decee091b7fcfa9a9c4d19b267d" +path = "static-publisher/static-content/file2665.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/contribute/index.html_gzip_93ee227e7751d5776faebc0e0283c70c9c614dbb4e85c1a71e98889e7da03141" +path = "static-publisher/static-content/file2665.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/contribute/localdocs/index.html_50b84687a2c9c0eeafba30ff4bde0f11ffd1cb3a358402d8f9d9fcd5f472bc77" +path = "../build/minified/site/pl/guides/contribute/localdocs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/contribute/localdocs/index.html_br_2b0e6387d7d511624e2714150f84e65702612f8fd88e1be21b5411be06a457ff" +path = "static-publisher/static-content/file2666.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/contribute/localdocs/index.html_gzip_c276feba2e21fe5c9503063d2005c36ff190201c8ebd832b85f2011d13ce4dcd" +path = "static-publisher/static-content/file2666.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/contribute/localdocs/local_docs/index.html_ec14d76b43282c35e29e17d09aee7029b4859fd33948fa26896a5d380c61adca" +path = "../build/minified/site/pl/guides/contribute/localdocs/local_docs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/contribute/localdocs/local_docs/index.html_br_383a8a1ce472534ec2b11f18d2f1bc1d001e543ac5ebf6500158ef78b6316f7e" +path = "static-publisher/static-content/file2667.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/contribute/localdocs/local_docs/index.html_gzip_800d084455792daab446bf4e1700b6a6cb637bfb0e48b9133a228f02cbd2eaee" +path = "static-publisher/static-content/file2667.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/contribute/localdocs/mkdocs_lsyncd/index.html_9138d4dd4eebdd1bcf5aa970021b821173ac40c70f763f6db4c3cfc7b092aca3" +path = "../build/minified/site/pl/guides/contribute/localdocs/mkdocs_lsyncd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/contribute/localdocs/mkdocs_lsyncd/index.html_br_8ee6e39bfc4cbdbe279f612dab4cac1be882fd91834723a99421787c58722515" +path = "static-publisher/static-content/file2668.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/contribute/localdocs/mkdocs_lsyncd/index.html_gzip_20b9d08483b0203246a30380e037be781fa1dcab4b03ce1f8705a3a5ef193cbf" +path = "static-publisher/static-content/file2668.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/contribute/localdocs/mkdocs_venv/index.html_1f79a479f11d40073ea8c37d8fae54eb61eba5f9d3a9c3fb91973519fbfc56ba" +path = "../build/minified/site/pl/guides/contribute/localdocs/mkdocs_venv/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/contribute/localdocs/mkdocs_venv/index.html_br_9bf3435565f0783dcfe367982ee709c75847c1b266d455e6976618545784a541" +path = "static-publisher/static-content/file2669.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/contribute/localdocs/mkdocs_venv/index.html_gzip_0d47525fc88d3927378f8aaceea6cb522d0d403bf6a42b47ae57b6c4a6afec26" +path = "static-publisher/static-content/file2669.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/contribute/localdocs/rockydocs_web_dev/index.html_06136dc3891a16b1f78908d29a65dadb6ee15e60d704a5882d6974576944fc69" +path = "../build/minified/site/pl/guides/contribute/localdocs/rockydocs_web_dev/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/contribute/localdocs/rockydocs_web_dev/index.html_br_4db4a612f8cde58d961f5d2c2b5d389eb3337f388dd3b7927c3859fe487d94af" +path = "static-publisher/static-content/file2670.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/contribute/localdocs/rockydocs_web_dev/index.html_gzip_b143f11f04e74d92a8a02388d698a08ff1fa591b996dbf5d19da6de328349486" +path = "static-publisher/static-content/file2670.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/contribute/localdocs/rockydocs_webdev_v2/index.html_b0ffbef97b916fb3928ada618016be62284c2a27e8886f520c97f9c7385f640c" +path = "../build/minified/site/pl/guides/contribute/localdocs/rockydocs_webdev_v2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/contribute/localdocs/rockydocs_webdev_v2/index.html_br_d1e80d58170d8e194068cdb2ec3301cd3646ea968842f24ad22dbeada9f1e519" +path = "static-publisher/static-content/file2671.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/contribute/localdocs/rockydocs_webdev_v2/index.html_gzip_b7a8036e18b7cb2c511b7c305915dac157e95ad890df260ff508eb8f2544f91f" +path = "static-publisher/static-content/file2671.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/contribute/navigation/index.html_b155e2acc2c5ad7891e83a07b784d3d2908712c85ac57fd5da36d5847e2be87a" +path = "../build/minified/site/pl/guides/contribute/navigation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/contribute/navigation/index.html_br_8793af3a50a7a994ea46de3bc561daea9a6aa1e5f3d93b847c7e3ebc3bfca7b7" +path = "static-publisher/static-content/file2672.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/contribute/navigation/index.html_gzip_9874ac76b9476e5fc9f1a146d486d7ba1f354d37d845a6269a60f358367681a6" +path = "static-publisher/static-content/file2672.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/contribute/rockydocs_formatting/index.html_2c6bd9c5f6d63100d2c77144e26cd88d234a0dc69cb1ac48a284621884852384" +path = "../build/minified/site/pl/guides/contribute/rockydocs_formatting/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/contribute/rockydocs_formatting/index.html_br_584d15ff7cfc64ddfdd2c2c0a878570f6f849316dce1ba7e95f37d190af9a81e" +path = "static-publisher/static-content/file2673.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/contribute/rockydocs_formatting/index.html_gzip_a205176b6b00ea8133127d0250c913e1bfecc6bce591910a8c357c5a9ff153b7" +path = "static-publisher/static-content/file2673.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/contribute/style_guide/index.html_e7ad148a3e7a9a2729194f3d1995c5867223c3a14e0b7acfe96ca602ba34720f" +path = "../build/minified/site/pl/guides/contribute/style_guide/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/contribute/style_guide/index.html_br_e1a3a0d2ec3f14cd76ac060802c178c517f7ca82b96cc96a19aa27c1cf28a37d" +path = "static-publisher/static-content/file2674.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/contribute/style_guide/index.html_gzip_f0066cca7ca4a3be8aa51e8d6df8ea3b147af8c67b1bbe3ba6b6447672fb448a" +path = "static-publisher/static-content/file2674.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/custom-linux-kernel/index.html_db39199a01922a8d122777ea5866c70de93977805aeb732161761262ded53a14" +path = "../build/minified/site/pl/guides/custom-linux-kernel/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/custom-linux-kernel/index.html_br_70bd4a66f2916df88a6ad924086b1783d18d99fde5a72838f933066f589313c4" +path = "static-publisher/static-content/file2675.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/custom-linux-kernel/index.html_gzip_4f6673f5e8b5654f6cef45d2894c8525813d3f3965abad5aa52e87409d458234" +path = "static-publisher/static-content/file2675.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/database/database_mariadb-server/index.html_0588638d0e0e2dad6c9dba11e5f5a7d97d790717fe3964387d40cf4a8b5f145a" +path = "../build/minified/site/pl/guides/database/database_mariadb-server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/database/database_mariadb-server/index.html_br_cdadc010743281bf5d7d2e431c1f3a74801b95f0788fe2c03f015849aaea4073" +path = "static-publisher/static-content/file2676.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/database/database_mariadb-server/index.html_gzip_b61f52a6f20bf829c1e2a06b3be05c2ddaba8ef4e93b5a0328cfab927ec446ee" +path = "static-publisher/static-content/file2676.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/desktop/kde_installation/index.html_86491b512ee70cbc0a6649861d8822cea8120f9c32ddc66dbe67f0d84aa21139" +path = "../build/minified/site/pl/guides/desktop/kde_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/desktop/kde_installation/index.html_br_5a9dc326c56d48d10d16b57c9dda90850cba715ce037572fd394bdc511d41bc6" +path = "static-publisher/static-content/file2677.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/desktop/kde_installation/index.html_gzip_6d76c759967e8bb9a34874153b7da3d9ff34824d6488454eb217a615e036ea4f" +path = "static-publisher/static-content/file2677.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/desktop/mate_installation/index.html_901b0bb47b59d364e33cd10ed3e7874dd0c6a0b49489e8a028fcbec1df3807f0" +path = "../build/minified/site/pl/guides/desktop/mate_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/desktop/mate_installation/index.html_br_07f724fbd285732c733ba8b726671f1ab6bdbd30e720fafbcc2b8159bcc274d8" +path = "static-publisher/static-content/file2678.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/desktop/mate_installation/index.html_gzip_e6799c2dedfaf16f35eaa31d6c666c8a588d8f7b1105aa98ddb4ac832f63611a" +path = "static-publisher/static-content/file2678.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/desktop/xfce_installation/index.html_5080abbd570a6646301894e6a282a0281950e27cbc2b1b704b39915cde8522ce" +path = "../build/minified/site/pl/guides/desktop/xfce_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/desktop/xfce_installation/index.html_br_fd72ae4aa4c74032e8ba295926a87f3ff91de5d39fe2ff52b342789962834e49" +path = "static-publisher/static-content/file2679.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/desktop/xfce_installation/index.html_gzip_28eb33e238691dde419796186906350ea9830525b2108cb871a51f1ac7ad9111" +path = "static-publisher/static-content/file2679.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/dns/private_dns_server_using_bind/index.html_0ed9c4af7ca51de4480ea0187981520117b9e30d0bdb002de7b314c0bbce1c5e" +path = "../build/minified/site/pl/guides/dns/private_dns_server_using_bind/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/dns/private_dns_server_using_bind/index.html_br_4961eff6b69a5d21135c29b4375b4542aac7262fea0c12240f58ce8648041eca" +path = "static-publisher/static-content/file2680.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/dns/private_dns_server_using_bind/index.html_gzip_61dccb5d02fb27b6941ffe1753194ea94652739070d91975aa3e2a54059f30d5" +path = "static-publisher/static-content/file2680.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/editors/micro/index.html_7a0a5762798a4868d26f0e90d421d9e42d70e8b5c2ed6238621bc2b8d8bb8dde" +path = "../build/minified/site/pl/guides/editors/micro/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/editors/micro/index.html_br_0588fcdda10c593d1a49c2cc86517d6009bc1c820f727442b197c94bfc2ac9ac" +path = "static-publisher/static-content/file2681.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/editors/micro/index.html_gzip_5c99824cda8a84b27306a9a7c54bb7d6728bd4db714739884cf4260350842755" +path = "static-publisher/static-content/file2681.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/email/01-email-system/index.html_c550fec7f8d1fb0374cbbb5e494b59edb12e7d1a9c16bfa61e21ca89885f53af" +path = "../build/minified/site/pl/guides/email/01-email-system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/email/01-email-system/index.html_br_aa863e1c944cffe81d95252ce161e202cb4a71f41906e69d33c431b7f343cb08" +path = "static-publisher/static-content/file2682.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/email/01-email-system/index.html_gzip_0ea9936cbc259e3907f9e7e641f98b51ddacefde7da3963728014101e5441db0" +path = "static-publisher/static-content/file2682.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/email/02-basic-email-system/index.html_dff3b07c8c1280f503d679a4292a9f8695585ec59abc41eda3889d16b46a6cde" +path = "../build/minified/site/pl/guides/email/02-basic-email-system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/email/02-basic-email-system/index.html_br_6f092515e400e4f2fe35c9e221d3bbcfa56e0b5c3754efb592a010e99a43145c" +path = "static-publisher/static-content/file2683.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/email/02-basic-email-system/index.html_gzip_50cb792606b3c0daaae656f475bd53d52d137503ac49ee77edd8989033ebd37c" +path = "static-publisher/static-content/file2683.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/email/postfix_reporting/index.html_a9afc2fe5979fee73071df2c6822011deeaead8737deac1541a1709934486123" +path = "../build/minified/site/pl/guides/email/postfix_reporting/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/email/postfix_reporting/index.html_br_c5b61956288f24d8997d26c5f153a24a02d2f93ebd3e2d94b8ba4e227ac6ce97" +path = "static-publisher/static-content/file2684.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/email/postfix_reporting/index.html_gzip_03edc6f7455e7b1215c4e81fe88ed27095ba9a3f8c28d627b34ec302905035b0" +path = "static-publisher/static-content/file2684.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/file_sharing/glusterfs/index.html_5e113b41293ba6f1ee006e8b06fb936c24ddaeadc4d368051680dcdf0559a607" +path = "../build/minified/site/pl/guides/file_sharing/glusterfs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/file_sharing/glusterfs/index.html_br_22916a6f6647d948af463d2cb17edad6798ea8c6a295da769dd50333128e6c3f" +path = "static-publisher/static-content/file2685.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/file_sharing/glusterfs/index.html_gzip_560cade0da1e0a4403e3388431c03c21d83c0f2aa6c900ddea85477b58f763a0" +path = "static-publisher/static-content/file2685.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/file_sharing/nfsserver/index.html_3e68305f59e73fb12d284da919021bd46c9b2bdad8895d1bff49e180f624419f" +path = "../build/minified/site/pl/guides/file_sharing/nfsserver/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/file_sharing/nfsserver/index.html_br_b68e77ad61a5633862116e306486b457b5445bb678a2df29c9984f4c739bb18f" +path = "static-publisher/static-content/file2686.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/file_sharing/nfsserver/index.html_gzip_b77df0b380d4f9ce6c0221fe16eb69cc234c30b3d85b1d1118d0696efe3a8c9a" +path = "static-publisher/static-content/file2686.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/file_sharing/secure_ftp_server_vsftpd/index.html_cbcc4b94b5db88dda799dedaed8b0d9f7957752eb1826502902f88c20212dfbb" +path = "../build/minified/site/pl/guides/file_sharing/secure_ftp_server_vsftpd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/file_sharing/secure_ftp_server_vsftpd/index.html_br_1f17cc9fa1da05dca7f8678364d6969f3737c73c7039d85fc0487e8c0cce5d71" +path = "static-publisher/static-content/file2687.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/file_sharing/secure_ftp_server_vsftpd/index.html_gzip_2acfb3b8524c7164e23a4dee46cbf31625e28250b2d44f4bd0377a9139915f8a" +path = "static-publisher/static-content/file2687.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/file_sharing/sftp/index.html_d2358aa1504cfb2904cad2d012f855156266e13f862b51d44d512445ab520e23" +path = "../build/minified/site/pl/guides/file_sharing/sftp/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/file_sharing/sftp/index.html_br_2f05a26c49e11eec77d8bf81cf152ea031aedb49cf683f961211279985a0e688" +path = "static-publisher/static-content/file2688.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/file_sharing/sftp/index.html_gzip_d2196e6c2c0eefcc5d75761019b809e7da3895d9c962c906d14873795e45f6d1" +path = "static-publisher/static-content/file2688.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/index.html_31162c1e2056d5f41f8d0bfb7e70871b9d404ff75d5a7440e5c5329ceb97b95d" +path = "../build/minified/site/pl/guides/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/index.html_br_53be14f68611e6db22fd8b4462d1b4018cd22d5337ba704c1f8f0730485ad5f5" +path = "static-publisher/static-content/file2689.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/index.html_gzip_60a506460ab9fa699d118becf1731aa27fbfaa302cb6231678ac8c64afd777e2" +path = "static-publisher/static-content/file2689.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/installation/index.html_f6f85c9827b4b509e92dbeec4cdba5c644c1f82e632c9efc1a89233232ac0e31" +path = "../build/minified/site/pl/guides/installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/installation/index.html_br_0026f121b0357568346661fa956f202043ca7dd0abdbd612de9e80be9575fc93" +path = "static-publisher/static-content/file2690.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/installation/index.html_gzip_aa164d8961f2951d750878883f84d8534ad8fbbc84ccde721c7455994cc3683a" +path = "static-publisher/static-content/file2690.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/interoperability/import_rocky_to_wsl/index.html_382193aa641daf3f419d95e9000f137764770c016764f82ae80c1d6445a4e179" +path = "../build/minified/site/pl/guides/interoperability/import_rocky_to_wsl/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/interoperability/import_rocky_to_wsl/index.html_br_b2701115a82a7b8b0876f5e3cdaecb09a6ca7d37f8b15998a350f5059ac7d999" +path = "static-publisher/static-content/file2691.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/interoperability/import_rocky_to_wsl/index.html_gzip_40c4aae17223945bebd20e4c2776774524cdd794fa450b489caf59db2a7b6761" +path = "static-publisher/static-content/file2691.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/migrate2rocky/index.html_dc957e0c1adcb7a168603f5def303ac39ba9999798b704515385c6b7a83e5dfd" +path = "../build/minified/site/pl/guides/migrate2rocky/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/migrate2rocky/index.html_br_07088eb331251c671ca2e488fb5f07eb9a85c755e7845f669f6679d4f99d8c4e" +path = "static-publisher/static-content/file2692.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/migrate2rocky/index.html_gzip_cfe6705ed2098941be8932c796ffed1caa3b053148c7dd4073dd490b0f54db82" +path = "static-publisher/static-content/file2692.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/mirror_management/add_mirror_manager/index.html_cd053cda921c1e327e931ba5822aa0ea2ec006ab1c566a52330fbf08518353a6" +path = "../build/minified/site/pl/guides/mirror_management/add_mirror_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/mirror_management/add_mirror_manager/index.html_br_a77c11a31b244f24879e77eb21352936aa232b2886f39017a688416ceea6e58d" +path = "static-publisher/static-content/file2693.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/mirror_management/add_mirror_manager/index.html_gzip_c25d2d53a131ff26a831569cecf8967d5004a4d32219b3c1facd56f4babdeb3e" +path = "static-publisher/static-content/file2693.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/network/basic_network_configuration/index.html_43589aa3d6c8b4b43b20cfe3bebb0343d82684f0951da10ab29af191467c5c08" +path = "../build/minified/site/pl/guides/network/basic_network_configuration/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/network/basic_network_configuration/index.html_br_90fe7b8801a49f999eecccddf6b583b91f005c4acaae4ec8ec65115f86af499f" +path = "static-publisher/static-content/file2694.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/network/basic_network_configuration/index.html_gzip_3d1bbed544b5ac4d3c83f03e366b48f9bb9f55666ae3f71966db73427e5a315f" +path = "static-publisher/static-content/file2694.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/network/librenms_monitoring_server/index.html_30ce9c9ae30d0fb0ae16cff39e336671086cc5b82468d6d891df025d61fcffd1" +path = "../build/minified/site/pl/guides/network/librenms_monitoring_server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/network/librenms_monitoring_server/index.html_br_d99b7d8ec200c242543138e3afcff77d9adecbae4e861c8c0fb51553fd8eb642" +path = "static-publisher/static-content/file2695.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/network/librenms_monitoring_server/index.html_gzip_bc93cbe83acaa7785606fa6544e9e0953f14a8954272241865d66952eaea35e5" +path = "static-publisher/static-content/file2695.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/package_management/dnf_package_manager/index.html_3cee0963204070103f2f0dc3d43b10b824f4cb7fa227ee4c8a5a46087e8fc1cd" +path = "../build/minified/site/pl/guides/package_management/dnf_package_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/package_management/dnf_package_manager/index.html_br_aa69d38ec65f5cce52bc0091daad8f1aeeca26ee6e046de8d37fb29240ead8b3" +path = "static-publisher/static-content/file2696.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/package_management/dnf_package_manager/index.html_gzip_b2f8d0d005064978dd312681b0a66ed653d77ee1b32d04b45b4708dd32b3503b" +path = "static-publisher/static-content/file2696.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/package_management/index.html_a5e23b6ed25b1929546600aecf8ae8a5bf207029e40853155e44982820789281" +path = "../build/minified/site/pl/guides/package_management/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/package_management/index.html_br_e9cc7412caaad61583d1a79fc3cd1d59b837851da112b9cfa3fdfbab285fa961" +path = "static-publisher/static-content/file2697.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/package_management/index.html_gzip_0619677fd0c40d452d8452955894097346eb4c884c637c54b9a433543717aab6" +path = "static-publisher/static-content/file2697.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/package_management/package_build_troubleshooting/index.html_1eb9970616fc6f8350b05952388a8e1653eb7bdbeed73efe3115f4add2da70d6" +path = "../build/minified/site/pl/guides/package_management/package_build_troubleshooting/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/package_management/package_build_troubleshooting/index.html_br_ed0868fbe03fb8f50f8a534e194974b533eb8624977c9b55beb2483aad385829" +path = "static-publisher/static-content/file2698.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/package_management/package_build_troubleshooting/index.html_gzip_5e58f0eb8ab5d312ccd418351248fbf64af0096886902b73f2fcf9cabc96a242" +path = "static-publisher/static-content/file2698.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/package_management/package_debranding/index.html_7f6ef013b78f8e74bb23100a0d200f92ae4ede4622c41d58c56e5f2c8fae18d4" +path = "../build/minified/site/pl/guides/package_management/package_debranding/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/package_management/package_debranding/index.html_br_c177571c6a92b20cc201b4a9ec8e895031903feb8673950f0b15ac6e2d4e50a0" +path = "static-publisher/static-content/file2699.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/package_management/package_debranding/index.html_gzip_77d45f8f323546fc7f2fe8222d0add91656fd4233acb26c76aa007880766309b" +path = "static-publisher/static-content/file2699.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/package_management/package_dev_start/index.html_dbf212fa2cc42f72da350394f43754a70508491f114410ced27162c64d94e41c" +path = "../build/minified/site/pl/guides/package_management/package_dev_start/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/package_management/package_dev_start/index.html_br_f979585ea96e0b7c09102c4eb8bca43832ae9be109e94ca4dd1990952c6a5620" +path = "static-publisher/static-content/file2700.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/package_management/package_dev_start/index.html_gzip_dfefa57ff892b34669c02df3da8a5be8c116147c1095c883a7d23fcc77a5df32" +path = "static-publisher/static-content/file2700.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/package_management/package_signing/index.html_380808aab1ba6c70b75b77eb7e144812be2f32e52d299f1b873ac54a8305e172" +path = "../build/minified/site/pl/guides/package_management/package_signing/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/package_management/package_signing/index.html_br_a5f3ab6ec0b06bc415cdc39a5afb2aa488e1b18f6283a01b595b3073cff08010" +path = "static-publisher/static-content/file2701.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/package_management/package_signing/index.html_gzip_7605140c25599c730cdbdb0521325fa6b4ffe4900f148ab98bcdcb4b8cdb8186" +path = "static-publisher/static-content/file2701.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/proxies/haproxy_apache_lxd/index.html_3c09fff950f108c7f0d0c40b5623d30b99fbcd8ec2261ae0fdcfd52eadb549bc" +path = "../build/minified/site/pl/guides/proxies/haproxy_apache_lxd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/proxies/haproxy_apache_lxd/index.html_br_71088b7fd1ccf8e361116e80b2cb03fc3465e4232b44ddf8642d196fc4ce5a6d" +path = "static-publisher/static-content/file2702.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/proxies/haproxy_apache_lxd/index.html_gzip_549b16a4f14b47434882a6933f1f513633b25c3309eed2d841703e3d8cf29d8c" +path = "static-publisher/static-content/file2702.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/proxies/pound/index.html_f7cb51e288701a4db31ed85f3bbb546365704ba4a4af124530ad7a0d63c79d61" +path = "../build/minified/site/pl/guides/proxies/pound/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/proxies/pound/index.html_br_7f2a78930cdeb9eed6bf69c9bd8b445ac8117e326a185c87fab5b3bf8b6a0a80" +path = "static-publisher/static-content/file2703.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/proxies/pound/index.html_gzip_85936847f4e0b9bda50f7e166372588221a5231a2b4ad21b65cecb40d5b3f0ee" +path = "static-publisher/static-content/file2703.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/proxies/tor_relay/index.html_30eb57ca7595f9c915deb5fc5a43ea108af7422177d1f57a93cf63e60b3dc1e0" +path = "../build/minified/site/pl/guides/proxies/tor_relay/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/proxies/tor_relay/index.html_br_0b5adfe69ada2d924ad2fc8fa744e0fb92e7acebc877027b716c5ef93a62c88f" +path = "static-publisher/static-content/file2704.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/proxies/tor_relay/index.html_gzip_be1afdecb3af2f522f66aaa08f677e4f570cfe709ff7926107135ce3c64b66f7" +path = "static-publisher/static-content/file2704.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/security/authentication/active_directory_authentication/index.html_5fb79f79d18c2da609f715aea1353e551d0855d0ca973d9f21df6cdf9315ec40" +path = "../build/minified/site/pl/guides/security/authentication/active_directory_authentication/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/security/authentication/active_directory_authentication/index.html_br_556f82050827607eb8ca9ac9d1da64c22bb9aeeb9dd339fb537a207a52981cac" +path = "static-publisher/static-content/file2705.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/security/authentication/active_directory_authentication/index.html_gzip_0f80d2ca6ef7f38a10187b5ad473d6a768466789856e60516cc5a21426d7a55d" +path = "static-publisher/static-content/file2705.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/security/dnf_automatic/index.html_26cb6b7e4b2a68ab30f9c66a706a64a8feb817c644dbcbdcb3e3553b42ce35eb" +path = "../build/minified/site/pl/guides/security/dnf_automatic/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/security/dnf_automatic/index.html_br_842bca55951da2bb13b95a924f871ceecf57604f943a5b97cbe32bd9c92e154b" +path = "static-publisher/static-content/file2706.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/security/dnf_automatic/index.html_gzip_ebaa391d21b101df954a9aff07fdfdac74c03678f1696860e4c7b23725556811" +path = "static-publisher/static-content/file2706.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/security/enabling_iptables_firewall/index.html_ff43a47541239757a29c686fd46366755fee38563972e06bac294bad1cc823b7" +path = "../build/minified/site/pl/guides/security/enabling_iptables_firewall/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/security/enabling_iptables_firewall/index.html_br_8a0d2d315ca66ce2b64679e0eb2a97ff146744daf30275fa28df6b6fe9a4af06" +path = "static-publisher/static-content/file2707.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/security/enabling_iptables_firewall/index.html_gzip_30801e1e52c52ef87ed0a083a16a224c72c015435f81b84f6c94933243734d30" +path = "static-publisher/static-content/file2707.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/security/firewalld/index.html_e3407f039a9ca431986024afb8421f958ca35e4c94aa62d18a6083a5846cf02f" +path = "../build/minified/site/pl/guides/security/firewalld/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/security/firewalld/index.html_br_9984c86713ccef27209be6dd51c01a38c8261d4c305cd80577eb6ae7f17324e5" +path = "static-publisher/static-content/file2708.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/security/firewalld/index.html_gzip_e058f71c7404b33340840dc74f26311176b46eb602b703c16a52448e98383f2a" +path = "static-publisher/static-content/file2708.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/security/firewalld-beginners/index.html_b0438153e9770cce88cf5d89f8b8646c3f5e08121774402f99637fccc18be17b" +path = "../build/minified/site/pl/guides/security/firewalld-beginners/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/security/firewalld-beginners/index.html_br_3ffc78f392c9f0f549c46c9147f4eeb2392f1d69747a115417cbc44dfd5ccf66" +path = "static-publisher/static-content/file2709.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/security/firewalld-beginners/index.html_gzip_128cd651740fa4ed5132c6177435b0e8de6382230bd1dfc8ae8ad1e4945e215a" +path = "static-publisher/static-content/file2709.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/security/generating_ssl_keys_lets_encrypt/index.html_249bf662b9e751f8d4c47aa0c0870f6918e1e72e66c71d0a5823df2ef9c8d93a" +path = "../build/minified/site/pl/guides/security/generating_ssl_keys_lets_encrypt/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/security/generating_ssl_keys_lets_encrypt/index.html_br_e20cb4375fc2994ba4d2319122902a936ce6cb1869b16bfff548685a2805e206" +path = "static-publisher/static-content/file2710.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/security/generating_ssl_keys_lets_encrypt/index.html_gzip_cf98f6afe0a3b6eb7f5532216712d18ad6eee0a5f0fe2cd3e451c95ed0458efc" +path = "static-publisher/static-content/file2710.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/security/learning_selinux/index.html_c140b6a3013d2dad8d3688cda381e9d5e9eb41338a4f0bd4b2af2b304ea24f20" +path = "../build/minified/site/pl/guides/security/learning_selinux/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/security/learning_selinux/index.html_br_5b5974d8c19301c0174700f6b50afb0ed1835ebcf7883e0ccb8169655ba8004f" +path = "static-publisher/static-content/file2711.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/security/learning_selinux/index.html_gzip_a1bf8fe41df0da2b35be6639bdfb175812899a755c57c9f69ed9524487da27b1" +path = "static-publisher/static-content/file2711.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/security/pam/index.html_d199d119788c3641a20be20743504beb21173890f118e2aab94386205666187a" +path = "../build/minified/site/pl/guides/security/pam/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/security/pam/index.html_br_523fecb62e0c3b36d7e32b98e34516af1d7d459da1989f5be490365677736647" +path = "static-publisher/static-content/file2712.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/security/pam/index.html_gzip_539a3cdfe52f4989071e326f595cace0c90cbe2ba507543d6c13d91117cea8f7" +path = "static-publisher/static-content/file2712.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/security/ssh_public_private_keys/index.html_24327831716a04be5514713c2f60bcb57761e227f729d7832bf49f7feccb3275" +path = "../build/minified/site/pl/guides/security/ssh_public_private_keys/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/security/ssh_public_private_keys/index.html_br_e4ffabfd06873bedefca58a34cee837c3fdd71f84a064bff5e2e33e721bc364b" +path = "static-publisher/static-content/file2713.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/security/ssh_public_private_keys/index.html_gzip_b84b1abffe793c8136e4f7708d74d3081f03f494c659fa3d165398561be5c721" +path = "static-publisher/static-content/file2713.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/security/ssl_keys_https/index.html_eeaaa0e7df212a1d1910fcf8bcf01e7e1cf0898a7943e5ae7d2e8840941a315d" +path = "../build/minified/site/pl/guides/security/ssl_keys_https/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/security/ssl_keys_https/index.html_br_293900d3dbbbe5776f4be202ed3ed01d809005439d36bc3c1c6bff77baa0e39d" +path = "static-publisher/static-content/file2714.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/security/ssl_keys_https/index.html_gzip_62c97dfccbed450384ccbd6ff0c6fbc151f70179c588c1421f388d3166801fd9" +path = "static-publisher/static-content/file2714.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/security/tailscale_vpn/index.html_436901aa6782fdab2ac6e7c01b531ceb29a9f4a565b198d049108e11e1c29024" +path = "../build/minified/site/pl/guides/security/tailscale_vpn/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/security/tailscale_vpn/index.html_br_d6e564b07b1a50b3d1fdc8adb84764cef01a83d1edbc76bc46555fbea3e6c802" +path = "static-publisher/static-content/file2715.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/security/tailscale_vpn/index.html_gzip_422562371ba9f11c83570529e9c48e589fdc9d07110af69b088ad641997b6b3f" +path = "static-publisher/static-content/file2715.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/virtualization/cockpit-machines/index.html_2b2a27c6e921727d4c583dc4f0882921ee51c0d930d1ba52889786f152039115" +path = "../build/minified/site/pl/guides/virtualization/cockpit-machines/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/virtualization/cockpit-machines/index.html_br_3fa7658bd14b799e788c3537601ca9a2b773e07552dabc16123c4ccbbc10d6b7" +path = "static-publisher/static-content/file2716.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/virtualization/cockpit-machines/index.html_gzip_5152d81426353fc655a99dc54d91bf6f444256e6071b38bd38b86c26b4b9b9e3" +path = "static-publisher/static-content/file2716.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/virtualization/vbox-rocky/index.html_03f4d8fdc9ee04c112708960025ef8ccde2583fe31f0a4147ebcd6c7a3d48e69" +path = "../build/minified/site/pl/guides/virtualization/vbox-rocky/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/virtualization/vbox-rocky/index.html_br_a5941c1ab30964f68357e83ee0b060bce91eb912703e4968c72d789772ab356d" +path = "static-publisher/static-content/file2717.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/virtualization/vbox-rocky/index.html_gzip_94d720c956a33be6cd70b9b36db3e46fe60b94159e221cdf687b210cc8fabc61" +path = "static-publisher/static-content/file2717.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/virtualization/vmware_tools/index.html_af68cd69d3ed58189bcec411f4a9fb1e8baea49e3529acb37015eef115f849f4" +path = "../build/minified/site/pl/guides/virtualization/vmware_tools/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/virtualization/vmware_tools/index.html_br_264655c8627c3180fda0cc981263eca7e43fc44bfcd124ac4ba05dd7eb86ee9e" +path = "static-publisher/static-content/file2718.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/virtualization/vmware_tools/index.html_gzip_59a3827cbca102314e7f0363fcf3051107ad8d1a0782a469aa3fda072a7c9151" +path = "static-publisher/static-content/file2718.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/web/apache-sites-enabled/index.html_a89298b059600819856c8a0aa818b57360d09eefcf1d6a35e05e9b62f474668e" +path = "../build/minified/site/pl/guides/web/apache-sites-enabled/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/web/apache-sites-enabled/index.html_br_b71e6c971c3b716deb68376528712ea0e8674d8133d8950e418f7f0daf9d9700" +path = "static-publisher/static-content/file2719.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/web/apache-sites-enabled/index.html_gzip_8d50fbccd9bb18057c2804d2908694ee0b10a66773ba9d87cb6c0390eccae6ea" +path = "static-publisher/static-content/file2719.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/web/apache_hardened_webserver/index.html_403fe2c4cf5a0c86018fe773c41464ad5d1e17c5a204ba5f908b946ab24dc480" +path = "../build/minified/site/pl/guides/web/apache_hardened_webserver/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/web/apache_hardened_webserver/index.html_br_04e87af195b640a41c53d55193c0b43d63dc458a4f57421fb618260f797691a0" +path = "static-publisher/static-content/file2720.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/web/apache_hardened_webserver/index.html_gzip_7c7d7eb4fbfebee051b26f779d4769f4d5f45f2c89bc1e623aa13f68d3c60503" +path = "static-publisher/static-content/file2720.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/web/apache_hardened_webserver/modsecurity/index.html_4f0fa8febe95b8110e1ed482ab5e1c13a5ddd54d6dfce0bab91a4c52eb49daba" +path = "../build/minified/site/pl/guides/web/apache_hardened_webserver/modsecurity/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/web/apache_hardened_webserver/modsecurity/index.html_br_89b80c2e3018e09206b8900998ea42f1a67e4b5074b059f3c5ca8ddf63b67175" +path = "static-publisher/static-content/file2721.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/web/apache_hardened_webserver/modsecurity/index.html_gzip_5e617274fd887e4ba8b81e77c13153bea11b0d3f4e3c4c45f470714e767489a0" +path = "static-publisher/static-content/file2721.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/web/apache_hardened_webserver/ossec-hids/index.html_1fa434e2b62f10d5b0a7b8f7bf952abde0048ba3a0c08c93ab0d3d45e70664f3" +path = "../build/minified/site/pl/guides/web/apache_hardened_webserver/ossec-hids/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/web/apache_hardened_webserver/ossec-hids/index.html_br_cf4c9ac63c2e72dc26864a370b5924499290708df79c0b5c1f0f09ef97c3d3c0" +path = "static-publisher/static-content/file2722.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/web/apache_hardened_webserver/ossec-hids/index.html_gzip_ed2e31d016694d6a7ec15a9f07b8efb7238578926faa37e960d4dc2ac6147af2" +path = "static-publisher/static-content/file2722.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/web/apache_hardened_webserver/rkhunter/index.html_3b3c52e15efcc74f968fd21bd97bd1689cc2ee8f18c9235bfe5c2c807c1a1896" +path = "../build/minified/site/pl/guides/web/apache_hardened_webserver/rkhunter/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/web/apache_hardened_webserver/rkhunter/index.html_br_cdad100230994766cbd6ac5b7dbf0fab7fab4727d0a63220292f5004ba5ed05d" +path = "static-publisher/static-content/file2723.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/web/apache_hardened_webserver/rkhunter/index.html_gzip_a270d6a82be81b14b17a82d6c115d636b4cbccdfb54cb8df59bd65659e4c540e" +path = "static-publisher/static-content/file2723.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/web/caddy/index.html_430f287813fd0c75cd2ab3973d2542698e621ac84d73d3b05d072e5f6fa4a113" +path = "../build/minified/site/pl/guides/web/caddy/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/web/caddy/index.html_br_8a3597ae70cd568a793a0ab2bb127eaed5b361b93caf5d578d5a31418df37d1d" +path = "static-publisher/static-content/file2724.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/web/caddy/index.html_gzip_455a679ea9a45c4cc12d74dc8f0a1de417ab2055e5f15ccaf50d260bdee2291b" +path = "static-publisher/static-content/file2724.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/web/mod_SSL_apache/index.html_f3f94268ed200cdb537010f1f45a9cbc70498e506522b87823ac262448d685c3" +path = "../build/minified/site/pl/guides/web/mod_SSL_apache/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/web/mod_SSL_apache/index.html_br_9f415617a52c066825e5d4ad4217b9051564d322b99917ac0d63675766e69b13" +path = "static-publisher/static-content/file2725.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/web/mod_SSL_apache/index.html_gzip_a6a687681af39a6370a3079cc13e800dd61f34482d4f836f9080f08eb7591247" +path = "static-publisher/static-content/file2725.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/web/nginx-mainline/index.html_540c611f365b4b0dc6f325eee40760e1653f844ca94689077d9c0cdbe728e5cc" +path = "../build/minified/site/pl/guides/web/nginx-mainline/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/web/nginx-mainline/index.html_br_ed1b2201181d4dc4d1a359a94a9defdd18e1ad151ece8c8febf4be69264c272e" +path = "static-publisher/static-content/file2726.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/web/nginx-mainline/index.html_gzip_ece6584338b49de50791b7383b6eb177b77c72aa6f0991ee108d367f3a3c8a4b" +path = "static-publisher/static-content/file2726.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/web/nginx-multisite/index.html_a38d04ebbca8bce6fc1f72093f01323cc006cbb894f78ac75408c0f50f747313" +path = "../build/minified/site/pl/guides/web/nginx-multisite/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/web/nginx-multisite/index.html_br_2a89e6fc96e5f31f233c2ae92937b0864d4b218c0da38043e5ec3f266a6edb7b" +path = "static-publisher/static-content/file2727.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/web/nginx-multisite/index.html_gzip_26828290f3f5dc4ab16e815cce04eea307467f772406a5cd28902e9cc4342fb6" +path = "static-publisher/static-content/file2727.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/web/php/index.html_f0097899d9197a3cfc45341cc9d4d843f855b115c524ce0d2dfd17458838572f" +path = "../build/minified/site/pl/guides/web/php/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/web/php/index.html_br_8f6dbf8869ab3dedbb79f9bf5916eaa5636b1a0721cb10d08b83e237f90fee62" +path = "static-publisher/static-content/file2728.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/web/php/index.html_gzip_b8871aab962a0e5f6adbde16ec99f75f3c785f8fd39f5a100c07dd8595fe0ec1" +path = "static-publisher/static-content/file2728.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/web/tor_onion_service/index.html_33601ef779dec41d335a98aa3b6285104b69fc58868a201c50502b6c2d4d8834" +path = "../build/minified/site/pl/guides/web/tor_onion_service/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/web/tor_onion_service/index.html_br_a60cd6f372eebc8cc32cadd32315f8e8aebee2b0ada4f52c98b63b1bd161efd9" +path = "static-publisher/static-content/file2729.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/guides/web/tor_onion_service/index.html_gzip_feba5796f8fc2b16cb12f80e36d021b52c7cb8c0495cee830491e097967e2b17" +path = "static-publisher/static-content/file2729.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/index.html_bcd9c71dd226c5ba81d643c19153d17bc8fa06f5c6c563b0a2f03e578f5ba766" +path = "../build/minified/site/pl/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/index.html_br_f210a8c04b8476ff784209639182be98e1632759f06e6288f40c4e8481bd254e" +path = "static-publisher/static-content/file2730.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/index.html_gzip_7a46f05836ee993e50d654f03dd9c50cb6a11b830a8325dca0a7590a50edffb5" +path = "static-publisher/static-content/file2730.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/labs/index.html_b91cc68d571b631c581b268cc1a337598f37cb37ebd648369d50c9cbcb1d7194" +path = "../build/minified/site/pl/labs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/labs/index.html_br_70a8a78e2bda9a87e14030d2c2b151ae3ef5352838e0a9bf0a01b4a1cb8c8ac2" +path = "static-publisher/static-content/file2731.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/labs/index.html_gzip_96d2787b42646ab3ed5574bd6167d1cf1a3e4c130e6141f24cf0ec25b25f1d4f" +path = "static-publisher/static-content/file2731.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/labs/networking/lab5-nfs/index.html_f456a6ff44ba34b3961ebaa2799cee28809b7b3f1defbf1ea181ccd8a6069704" +path = "../build/minified/site/pl/labs/networking/lab5-nfs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/labs/networking/lab5-nfs/index.html_br_cbf67a2f6e4b681f6f121533b65578797d3fc70c1b018ecf625df751e38c9042" +path = "static-publisher/static-content/file2732.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/labs/networking/lab5-nfs/index.html_gzip_b0d07ead958692eb6c8e461b5c1048f29f693dd2b3dc0fc5a2a276aada7196ff" +path = "static-publisher/static-content/file2732.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/labs/security/index.html_28373450181d551e400621eb9a191334c3139fd73eb733bb22edb52e53d8c42e" +path = "../build/minified/site/pl/labs/security/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/labs/security/index.html_br_4914e08140a1fe609c7dc658f739fb1d84cc83122d60dcf6f6058cb3b2252858" +path = "static-publisher/static-content/file2733.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/labs/security/index.html_gzip_33daae108e482870652961663ef0e477ec981db54957ddccb9c0e58a8038d358" +path = "static-publisher/static-content/file2733.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/labs/security/introduction/index.html_acbb2893aa78e40cd5a452fc63b742eb2d124d19fafec9df2173bac306ed99fd" +path = "../build/minified/site/pl/labs/security/introduction/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/labs/security/introduction/index.html_br_a1df78a249dd9646ed2a6b8b5bf7ab4b6d9838038e8887b4c6f17c4697b1df29" +path = "static-publisher/static-content/file2734.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/labs/security/introduction/index.html_gzip_bda3271339508689526c1617e52feae08c6dde5498bbfb6a8281aa5494e20036" +path = "static-publisher/static-content/file2734.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/labs/security/lab3-auditing_the_system/index.html_361738061fe01dbc9021da8253c79f29f00d707197d43fd0932bcd0b4383faaa" +path = "../build/minified/site/pl/labs/security/lab3-auditing_the_system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/labs/security/lab3-auditing_the_system/index.html_br_b9e5e7f022d6869b93ad0bae547966a45ffa79c6cf4eedba579e76479ce3bedb" +path = "static-publisher/static-content/file2735.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/labs/security/lab3-auditing_the_system/index.html_gzip_e01b1bfdb1ea4ed09c7e0cdc5bdadff21a3fb846e08fe61b14bdc33a5226d716" +path = "static-publisher/static-content/file2735.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/labs/security/lab8-iptables/index.html_567b65f8ebaf6c814646e2cb84fe563deb3dd420b6ce2d312a31077cf7261608" +path = "../build/minified/site/pl/labs/security/lab8-iptables/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/labs/security/lab8-iptables/index.html_br_32dc5849810916835df89e4c2f8aac84a252ae855a813a96ebf1ed67f9a377d4" +path = "static-publisher/static-content/file2736.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/labs/security/lab8-iptables/index.html_gzip_d002ec7d1eb6973a58116da564767cdc5a0729335b54858987c13d06ca66ab76" +path = "static-publisher/static-content/file2736.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/labs/security/lab9-cryptography/index.html_1f607354a543d8286ddaee43d598f8f3ad7726fc9fec1b66160d855474b84553" +path = "../build/minified/site/pl/labs/security/lab9-cryptography/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/labs/security/lab9-cryptography/index.html_br_7580ac995cad97fcd7ea5141b22b385b96bd7ecd233dd82172a33cef67fea561" +path = "static-publisher/static-content/file2737.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/labs/security/lab9-cryptography/index.html_gzip_0bd8b729f8c7cc63bcc20a8732eea6a7ca6d2fad3fc2a8da9a98b26a7c18019d" +path = "static-publisher/static-content/file2737.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/labs/systems_administration_I/lab3-system_utilities/index.html_63e1b06bbe96c3edd7f4b537e12bf006d9c696b7030590ed6e492e1d6cd199fb" +path = "../build/minified/site/pl/labs/systems_administration_I/lab3-system_utilities/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/labs/systems_administration_I/lab3-system_utilities/index.html_br_319858ec6585c3ed75f9c1b3db65b9da9aaa8a3a05ff542128525ed537adda15" +path = "static-publisher/static-content/file2738.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/labs/systems_administration_I/lab3-system_utilities/index.html_gzip_f52f6c988f5d39bac3b97977648a91314d20e8d12d75c7ce4d14c357eeec7f0e" +path = "static-publisher/static-content/file2738.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/labs/systems_administration_I/lab5-networking/index.html_a28e7c8e61486d136fe85e2feb7c2c515a006b7eaf7c6be98cdf92dacd0162be" +path = "../build/minified/site/pl/labs/systems_administration_I/lab5-networking/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/labs/systems_administration_I/lab5-networking/index.html_br_8ccdaf6b39d66b8a0869584839c5b43dd35d734d36eda23480ce06962e0bf3df" +path = "static-publisher/static-content/file2739.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/labs/systems_administration_I/lab5-networking/index.html_gzip_d4e12aae85ad221208601f25ffae782b4420268a70d9be9009e8db61cce18b6f" +path = "static-publisher/static-content/file2739.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/labs/systems_administration_I/lab6-user_and_group_management/index.html_6f76032b73e76452e2703d2fea842ba49a0515b2df9d190f3d60511af98aa82d" +path = "../build/minified/site/pl/labs/systems_administration_I/lab6-user_and_group_management/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/labs/systems_administration_I/lab6-user_and_group_management/index.html_br_833dbd571142a18f6bfb6225b988518f64bbc58c37ac83b4c06359f9cb30b429" +path = "static-publisher/static-content/file2740.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/labs/systems_administration_I/lab6-user_and_group_management/index.html_gzip_383563a0ce2b074f72e0c635fd0ab57d09c7563daebcfde379d1f3c86e5e3817" +path = "static-publisher/static-content/file2740.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/labs/systems_administration_I/lab7-software_management/index.html_961e22bb045ffdaf1232a7a6cb10a85b63569a2fba880e8c8b40e4ef327c2b5a" +path = "../build/minified/site/pl/labs/systems_administration_I/lab7-software_management/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/labs/systems_administration_I/lab7-software_management/index.html_br_db68b5594def3d774099eed0ed4f8b8014550a9e1fd0f95ef3bff33ba07adaef" +path = "static-publisher/static-content/file2741.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/labs/systems_administration_I/lab7-software_management/index.html_gzip_6b8f86fdc07baa16852426d76a9f496cc26fde13765b72e1338085089fbc647c" +path = "static-publisher/static-content/file2741.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html_6ed60eb61a21c20a4f08329aef3097c488ca570ffcbb821b3f4506d8a31ec75b" +path = "../build/minified/site/pl/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html_br_346e07c8d9f541684a9344adc1fa29e20d5fb421c84ca21a3b5a379af8ee8c85" +path = "static-publisher/static-content/file2742.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html_gzip_66dc2b312c475a8349743abca867ca78f1b4914814865184c566c157e886fa54" +path = "static-publisher/static-content/file2742.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/labs/systems_administration_II/lab3-bootup_and_startup/index.html_c999afc16ccb7185ddd7f93806f6200e6db881334e09a7054cb2432f061036b2" +path = "../build/minified/site/pl/labs/systems_administration_II/lab3-bootup_and_startup/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/labs/systems_administration_II/lab3-bootup_and_startup/index.html_br_f8f61a167727577eb78bec08c207c77fa8ab889ec4b646cf65967af38e38d617" +path = "static-publisher/static-content/file2743.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/labs/systems_administration_II/lab3-bootup_and_startup/index.html_gzip_8b9c76cfb39cab1bca40a38ecfe97d54ca38495b88dd726e8e678edaf98607d8" +path = "static-publisher/static-content/file2743.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html_21fff50a6d8a70c1b9629b11ce697da8b05a55d6aa314cfa24674a9c9426ee54" +path = "../build/minified/site/pl/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html_br_3cd386b7bb130d9f782de554509cd144922cca8f3c4b827e6c1369e4f0064112" +path = "static-publisher/static-content/file2744.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html_gzip_d4c4f0820d067a1e97d0c479d86eebe153acbdd35f0a9380585ae7543c94e1b5" +path = "static-publisher/static-content/file2744.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/labs/systems_administration_II/lab6-the_file_system/index.html_c1a155d429e599951984843492ba55bb6a26e40455e0e09ddc59d518315e3a28" +path = "../build/minified/site/pl/labs/systems_administration_II/lab6-the_file_system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/labs/systems_administration_II/lab6-the_file_system/index.html_br_f8b75a930e0012ca4c7850b73deb68d1b90a94979837535cf577df3c40fec4eb" +path = "static-publisher/static-content/file2745.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/labs/systems_administration_II/lab6-the_file_system/index.html_gzip_865b76f31c50be3fba643bf5586213e451e5baf31177a1a74fbe2c71751d5189" +path = "static-publisher/static-content/file2745.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/labs/systems_administration_II/lab7-the_linux_kernel/index.html_eafac26b8d0a13c4f6ad851b50ee537ad4aa883e4081ac8db9087039e19adc76" +path = "../build/minified/site/pl/labs/systems_administration_II/lab7-the_linux_kernel/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/labs/systems_administration_II/lab7-the_linux_kernel/index.html_br_e73862dbfd55a625053252395b59bd57091378cbb7c4f3cb55507c1f74078b71" +path = "static-publisher/static-content/file2746.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/labs/systems_administration_II/lab7-the_linux_kernel/index.html_gzip_f61f1240ad0fbfa44028b10ee5b6ab83276c595757892013604e9c5cb2dce6b2" +path = "static-publisher/static-content/file2746.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/release_notes/8-changelog/index.html_bffdc4742b9712f01a0263981389c0b1bc48291b3b7802ea7e592279583d31df" +path = "../build/minified/site/pl/release_notes/8-changelog/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/release_notes/8-changelog/index.html_br_8adcf2bb1f3f68f2d08aa2ab7354819702442845ae8644f72637b112ef38d929" +path = "static-publisher/static-content/file2747.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/release_notes/8-changelog/index.html_gzip_40c909cbceeb70f13e38a5e8360cda059ab63c74e2f3b9e4c10133038c7d5984" +path = "static-publisher/static-content/file2747.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/release_notes/8_4/index.html_464c4669766de7e5a9bad56e666a7a7237365d7835c178815a5996fda73bd7f7" +path = "../build/minified/site/pl/release_notes/8_4/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/release_notes/8_4/index.html_br_ca9a5b16c9de71e9e24edb14834b766fdfde7a014609f86e7d1f55eb7d420ef8" +path = "static-publisher/static-content/file2748.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/release_notes/8_4/index.html_gzip_a12a09e3e30dbfc3976f31e5b5e09ea67ddcded984683088d0aa9bca87cb0140" +path = "static-publisher/static-content/file2748.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/release_notes/8_5/index.html_85fa936ba86c09749bdbd721c99ca744cb668f6f47c352ea39b2a0055c08decc" +path = "../build/minified/site/pl/release_notes/8_5/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/release_notes/8_5/index.html_br_fa37d258e1cd46f65d84a9e9b90adce2467fba859623f04205e430159932d81f" +path = "static-publisher/static-content/file2749.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/release_notes/8_5/index.html_gzip_5d5b227c55a7204027b644a69ecc26d98e7c7a24b6062533029620939c49f375" +path = "static-publisher/static-content/file2749.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/release_notes/8_6/index.html_4b18b655d3338ded767219409a3d329a1a2358d6d8d484d320bef2e10d9f7a78" +path = "../build/minified/site/pl/release_notes/8_6/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/release_notes/8_6/index.html_br_fc483d9a955b79e0d3a9460fbdccd9b1e733fa75869fa0868bb33cb00bc322fc" +path = "static-publisher/static-content/file2750.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/release_notes/8_6/index.html_gzip_9d77a4994be91bf4e521e4245408d1e858bdf28ce716f31e84e80ba2e80a8443" +path = "static-publisher/static-content/file2750.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/release_notes/8_7/index.html_db9ba11d01a07eff454cda2343e843434147a96f8d7e259eaf47546499cfd238" +path = "../build/minified/site/pl/release_notes/8_7/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/release_notes/8_7/index.html_br_61fc2f5942c7e6e83ffe797da2d4275e07de040899a83d474ba089ff7d913145" +path = "static-publisher/static-content/file2751.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/release_notes/8_7/index.html_gzip_450e9b6a9d36046b9b5fc64c7e70cc374994e9e6fd91e9224658b98268a40010" +path = "static-publisher/static-content/file2751.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/release_notes/8_8/index.html_7ef30f0c40a0791079d892c6b1e1842d413aeca98ed8c81397e9d5f24f1cc398" +path = "../build/minified/site/pl/release_notes/8_8/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/release_notes/8_8/index.html_br_aca99de1d74147aee0646290b839171a9f61ba561399b2a0ddaa5854d8c1c44e" +path = "static-publisher/static-content/file2752.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/release_notes/8_8/index.html_gzip_de86ef1c8fbc86b179218e162b8a03cc79bea27cfae9a76712415604298ec4d3" +path = "static-publisher/static-content/file2752.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/release_notes/8_9/index.html_dd9ed1de4c0966bc5406cd113009d1b79c9ad7ff85fab1e319319f845ff4578c" +path = "../build/minified/site/pl/release_notes/8_9/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/release_notes/8_9/index.html_br_dfc2f28d8ee68a5996fc7b71d36fcc2503429dc36606d6284d0aa0f35732454e" +path = "static-publisher/static-content/file2753.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/release_notes/8_9/index.html_gzip_910a034eba9720563c9be06a384dae3e63ed68350335df9eaa07273ecc2c48d3" +path = "static-publisher/static-content/file2753.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/release_notes/9_0/index.html_d13f49f1c88f7fe02a31db821965ddfad85ca6a268d000f133b8e179f8c92db2" +path = "../build/minified/site/pl/release_notes/9_0/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/release_notes/9_0/index.html_br_503efe8bb8db9f70a2194deb157fa9f969cb0a83975fe6cac44b1cd8bfb8f930" +path = "static-publisher/static-content/file2754.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/release_notes/9_0/index.html_gzip_01e86d97f2cb40f17d97e722169602b2e84984543508ec209f02322ab97ae8a3" +path = "static-publisher/static-content/file2754.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/release_notes/9_1/index.html_fa615950910a07e629524ed048b0b377d1abd99caf00e9ec87deca9562f0488d" +path = "../build/minified/site/pl/release_notes/9_1/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/release_notes/9_1/index.html_br_9b8c1cd477c37ebf4dc5be6f6757b44f965136c9dddb3e8b6a16c3bf907683e8" +path = "static-publisher/static-content/file2755.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/release_notes/9_1/index.html_gzip_01078fa84ed606b89bdb91d4d2114455011907bb5fc579f82baa726f0868b8b9" +path = "static-publisher/static-content/file2755.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/release_notes/9_2/index.html_5e37e2a3ac61171c85688b978d66327509a64023be74bfe88f498f0296b947c3" +path = "../build/minified/site/pl/release_notes/9_2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/release_notes/9_2/index.html_br_a9b4b417b344e4d14f7a1fb4a26895f6e7299864e01bb3f6a4a0f871d4ac8775" +path = "static-publisher/static-content/file2756.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/release_notes/9_2/index.html_gzip_9eca6479f8808a61608059f37e9a921d67c604d1f06e679a2bc075b0379e85cd" +path = "static-publisher/static-content/file2756.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/release_notes/9_3/index.html_a532cbb8dece9cc1d6fef37a748a1461cdfa80e3dd1e119fb3fb43b91fde0294" +path = "../build/minified/site/pl/release_notes/9_3/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/release_notes/9_3/index.html_br_09748c96cabc4ee234e9884447b877e38e379ac2bd46595af4fb2350167a4445" +path = "static-publisher/static-content/file2757.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/release_notes/9_3/index.html_gzip_cc05dd82204e38ee5c5de4d6f3a83ec0f3c8b7cfb421b0dd38569c66e8a1cb14" +path = "static-publisher/static-content/file2757.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/release_notes/index.html_2a76abcc97d98ab2984da11cb4536971d87de8eb2951a108e89ed2a9e0df79ba" +path = "../build/minified/site/pl/release_notes/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/release_notes/index.html_br_9d5eea96eb85d8b16e583638478c95a9a35dcabee4ad0174521eb19f257f3266" +path = "static-publisher/static-content/file2758.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pl/release_notes/index.html_gzip_43b274f0627c08b93fd7603d788c9e8809dacda7425cca50144b85cf3ad93ebe" +path = "static-publisher/static-content/file2758.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/admin_guide/00-toc/index.html_41d8a76581398396ae98fb9de993bc93e18fffe913a1296ab172d1475541e8d0" +path = "../build/minified/site/pt/books/admin_guide/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/admin_guide/00-toc/index.html_br_f1f5910d2b91da6e889e1851fff49669b8403edddc42e04dffac631b8798cfcf" +path = "static-publisher/static-content/file2759.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/admin_guide/00-toc/index.html_gzip_cf5f65fec5c5954f3c456f2e5d72c9901367ac8ef080e75d9dec4fdab38a83ea" +path = "static-publisher/static-content/file2759.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/admin_guide/01-presentation/index.html_43926f84851480a7cc0c6437fb38caa4886c4f4b8fdd756c179d10f49b9c4cba" +path = "../build/minified/site/pt/books/admin_guide/01-presentation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/admin_guide/01-presentation/index.html_br_b6223401ec5b48580908a774b3149f52ad76868ed497cc9d7ce6960d8c2b6c60" +path = "static-publisher/static-content/file2760.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/admin_guide/01-presentation/index.html_gzip_fb3e28b99b52c4d770b358b3a4539ace55d688d6a9abb78723dc9d3062e44a7d" +path = "static-publisher/static-content/file2760.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/admin_guide/03-commands/index.html_0816c0e23174d87e69295b586b9ded0bae110738d7e4b2bb78bdd22e4b583d5b" +path = "../build/minified/site/pt/books/admin_guide/03-commands/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/admin_guide/03-commands/index.html_br_87f88a736713cd796c0a8bf1004da94d1970a5841958a753750011bd213708c6" +path = "static-publisher/static-content/file2761.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/admin_guide/03-commands/index.html_gzip_fe89ae6359d5a3faec7decc6a0d1cc45df4016b393ade2f168b880af71c7de65" +path = "static-publisher/static-content/file2761.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/admin_guide/04-advanced-commands/index.html_a5f7a0b881b5327a5b27be135c4a807e2b50141abe6656160c9c4778213d0f3a" +path = "../build/minified/site/pt/books/admin_guide/04-advanced-commands/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/admin_guide/04-advanced-commands/index.html_br_54cd7eb729ac3fb347b71a8d84710d07f6f5fbd6e0c345772486fb2bae7f8414" +path = "static-publisher/static-content/file2762.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/admin_guide/04-advanced-commands/index.html_gzip_5de477b219f3141b971c9de236d11c97296e96ddb9b1d45a97b36990347cd610" +path = "static-publisher/static-content/file2762.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/admin_guide/05-vi/index.html_0a39d38384afb3c99af524e98a38c1388101b80d5fd0df3303d5781cd8130607" +path = "../build/minified/site/pt/books/admin_guide/05-vi/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/admin_guide/05-vi/index.html_br_c817bf44c50ef55baa095cd3c536134aa2e4ab2ffd10ed59c99267e3f4ef2c97" +path = "static-publisher/static-content/file2763.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/admin_guide/05-vi/index.html_gzip_06aae4c077c6ab8a177c0dce0095a25be8ba3b8e3790fac954616ed10da00221" +path = "static-publisher/static-content/file2763.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/admin_guide/06-users/index.html_ac47a86178aefcd5a897317ba8dd40ccb9551f9e5ab3de749dc94b7cb3ee478e" +path = "../build/minified/site/pt/books/admin_guide/06-users/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/admin_guide/06-users/index.html_br_ece1fc508066230bc8dd99d52600484834d9527e824e063c85e8928de298f15b" +path = "static-publisher/static-content/file2764.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/admin_guide/06-users/index.html_gzip_96eb33a5bacb6c81babbb57361a1bd5e8adb5cec51e5bf8dbc1d0822a90d398c" +path = "static-publisher/static-content/file2764.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/admin_guide/07-file-systems/index.html_20d584b5a7c5448eea9896b8a62f3f7678d4a8e97f8dd82859100ef115201802" +path = "../build/minified/site/pt/books/admin_guide/07-file-systems/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/admin_guide/07-file-systems/index.html_br_fe45f3457a2a81347898c8e188849acb3bc5eb7200ffcec212d9a5d6d8723aea" +path = "static-publisher/static-content/file2765.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/admin_guide/07-file-systems/index.html_gzip_75b734c496760aca39f2f701ec82f8ee76b40c45b29de694f2b4bf0720997cdd" +path = "static-publisher/static-content/file2765.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/admin_guide/08-process/index.html_a4241cf0020d6ad3e188e3443de867f13be69edfee99a579f29ff5a2b0006d34" +path = "../build/minified/site/pt/books/admin_guide/08-process/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/admin_guide/08-process/index.html_br_2d09e1f06f3bd918597f044539549b160d55796bfde889b62dde037b6ca6f1d8" +path = "static-publisher/static-content/file2766.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/admin_guide/08-process/index.html_gzip_a3a859bf19b72c2680e3a526d719a8f386892179bd85a3c6e0e040836d25a93f" +path = "static-publisher/static-content/file2766.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/admin_guide/09-backups/index.html_a4099245a54e274a52720056d0a943c64cd559e2207836a2666aee246847fa0f" +path = "../build/minified/site/pt/books/admin_guide/09-backups/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/admin_guide/09-backups/index.html_br_955eb433942cbdd9dea71c2479e7ea4b8578afb601b6efdd112556a899d74f81" +path = "static-publisher/static-content/file2767.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/admin_guide/09-backups/index.html_gzip_e11995666e48a1ec6b7181bc36f7aeded4e01fbedad6ce6ffd1468231d254001" +path = "static-publisher/static-content/file2767.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/admin_guide/10-boot/index.html_bac0f4a8bebcb355e40ac31338086706f005267f2530010ec80e02a5b4ddc87e" +path = "../build/minified/site/pt/books/admin_guide/10-boot/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/admin_guide/10-boot/index.html_br_71b2d490f6169cd035b20e414fcf425663c766d2c0f8a9c3fa1f8033d32957c7" +path = "static-publisher/static-content/file2768.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/admin_guide/10-boot/index.html_gzip_b5939762710a51042c78f701f4fe9e609d800f496152315cea32072f384ddedf" +path = "static-publisher/static-content/file2768.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/admin_guide/11-tasks/index.html_699b84cd2c798d6567a5ede0727f41b2aa908bfede2821bd58fc4858c7d78238" +path = "../build/minified/site/pt/books/admin_guide/11-tasks/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/admin_guide/11-tasks/index.html_br_c2c28e42d46bd96d99b758c563ba087b1de0055989655adf856f22d4a60a553b" +path = "static-publisher/static-content/file2769.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/admin_guide/11-tasks/index.html_gzip_874be9468aa7c866e5e9b0d561675d129e8462935d3e5cde7a34c1953436fd52" +path = "static-publisher/static-content/file2769.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/admin_guide/12-network/index.html_68966572197a68471d1831366b026b29682993487761e196367f844a4121d593" +path = "../build/minified/site/pt/books/admin_guide/12-network/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/admin_guide/12-network/index.html_br_4d18d4ea3311d8ceb18c224efe21452de03df626aabfe09043d971d15197a6dd" +path = "static-publisher/static-content/file2770.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/admin_guide/12-network/index.html_gzip_5d213a8f9b8a6aed8c996b7171246ca0289ebd5f5ed7dc913bdab5143fe60c4c" +path = "static-publisher/static-content/file2770.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/admin_guide/13-softwares/index.html_a7be8191e50a94cc13875244ff83afa47caa5084d3c3e632ca9f24efc07f0e47" +path = "../build/minified/site/pt/books/admin_guide/13-softwares/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/admin_guide/13-softwares/index.html_br_54f3a430b976973791c2f0720711e831d61ee4e3be173ab006901669be2c1a4d" +path = "static-publisher/static-content/file2771.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/admin_guide/13-softwares/index.html_gzip_cc5973a4e5791d1b1b3571f359c4c134a517f16f2a36ea40c890baa654819c08" +path = "static-publisher/static-content/file2771.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/admin_guide/14-special-authority/index.html_4e93480f4c941fe189f88ee766ef0a5bf9407bd6a7ac61ae421f345c76e71c99" +path = "../build/minified/site/pt/books/admin_guide/14-special-authority/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/admin_guide/14-special-authority/index.html_br_d06b5533f7556202bdea239d77471f3cb1d953f9e7dc42ffdcd7da06d8fb544e" +path = "static-publisher/static-content/file2772.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/admin_guide/14-special-authority/index.html_gzip_a2c970a5abdc99c9e360ba56c9201719d4d76c0ecdad6b3efcb5e4d75b45c82e" +path = "static-publisher/static-content/file2772.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/admin_guide/16-about-sytemd/index.html_72f09d5384db2496a582a972e85ad04beb02e787364919daaa7eef61fa25714a" +path = "../build/minified/site/pt/books/admin_guide/16-about-sytemd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/admin_guide/16-about-sytemd/index.html_br_6f25b44ec6e974420a3b3ec71d63ae33f8fded654308d1613d9124e22aa6d0e4" +path = "static-publisher/static-content/file2773.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/admin_guide/16-about-sytemd/index.html_gzip_de28aeb19c38a58a09ac54bfe695efcdc1f41ef445438012fe37c32abddef804" +path = "static-publisher/static-content/file2773.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/bash_programming/01-Shell-overview/index.html_4bd4cd222efc7aa740c678ade00c812e0470cf9e24bd10b6cfa70457d831936a" +path = "../build/minified/site/pt/books/bash_programming/01-Shell-overview/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/bash_programming/01-Shell-overview/index.html_br_b1e769cf299e7320bf47314274697b4f4c9cc9a6107d28b232782fbe558e1dda" +path = "static-publisher/static-content/file2774.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/bash_programming/01-Shell-overview/index.html_gzip_9f838475931235eae7e60c79086728fff8e066f11b030d1ef9b0eae0b8e6d4ba" +path = "static-publisher/static-content/file2774.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/disa_stig/disa_stig_part1/index.html_16eccdfe3cc4f69493b3c53d43cb63e7c51b490375c21590ffe6d6765644146a" +path = "../build/minified/site/pt/books/disa_stig/disa_stig_part1/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/disa_stig/disa_stig_part1/index.html_br_1d8f61b664fcead20e012fda0c52bcd58749a3357757b42466752c8954195124" +path = "static-publisher/static-content/file2775.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/disa_stig/disa_stig_part1/index.html_gzip_705c3e4b6e024a72fbb3550fb8cd75ad7ecbe4e4d0964c2dcad3614819832ed7" +path = "static-publisher/static-content/file2775.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/disa_stig/disa_stig_part2/index.html_2d2e13d02d60b295441293a04a71218aeacfadf5b249f379fad404a74c24da25" +path = "../build/minified/site/pt/books/disa_stig/disa_stig_part2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/disa_stig/disa_stig_part2/index.html_br_6df9b59bf9b28dd7d76c4e216a14c76cf627ac66fc23924e1417e49aa403c619" +path = "static-publisher/static-content/file2776.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/disa_stig/disa_stig_part2/index.html_gzip_298586459fd9bb2d92bf79e870815a0cedae2ff3bacfe2ede6b729e2609500bb" +path = "static-publisher/static-content/file2776.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/disa_stig/disa_stig_part3/index.html_b0b5112dc1ec60f001c62017c78b16449ebfa3677d44a76cff5136c0694178ce" +path = "../build/minified/site/pt/books/disa_stig/disa_stig_part3/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/disa_stig/disa_stig_part3/index.html_br_cfadd2c38de325c6983da94beb32e5f1c65a70dc50092129b82e1dd7a7b17e7a" +path = "static-publisher/static-content/file2777.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/disa_stig/disa_stig_part3/index.html_gzip_1b42ae5f77a2d0a369ffb14492d12343bec6ac82255bbab5375dd8735e4a3d95" +path = "static-publisher/static-content/file2777.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/index.html_c2433495341bd030e4d458753a26aa069877d1d01b3f147933dd632435f75141" +path = "../build/minified/site/pt/books/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/index.html_br_d809416b0c5a86e3c0d510d59ac151dfdb7e5ca707c1617bac5aeb00420ffa83" +path = "static-publisher/static-content/file2778.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/index.html_gzip_5c73f37e8a6f6e25b179144daf3209877a9e71d96b036c16f85050f73fe51111" +path = "static-publisher/static-content/file2778.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_ansible/00-toc/index.html_1bdf726a646b6bade2feb573b91e903b41a1de55d503bdf27b069c37ee91269f" +path = "../build/minified/site/pt/books/learning_ansible/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_ansible/00-toc/index.html_br_047f9b555a807cbdca0959e43dae857c09d568d6924f2ea3be5fa557d1dad871" +path = "static-publisher/static-content/file2779.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_ansible/00-toc/index.html_gzip_7f4e1bc2803ae5a1b58b6a26887eb881fd29b9a9128c6c125ba27206096c91b3" +path = "static-publisher/static-content/file2779.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_ansible/01-basic/index.html_b0243f7ad9a20ee0b70ed63ce6caf90a077ef4c5153704390477493852e31660" +path = "../build/minified/site/pt/books/learning_ansible/01-basic/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_ansible/01-basic/index.html_br_1c9667fe6d38b9ad69103032ff3aa50f375e586d354249505d1820b700fc0733" +path = "static-publisher/static-content/file2780.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_ansible/01-basic/index.html_gzip_5355a7dc1df2d0be783ae78e4310fe289c032dead369283c296f2ab676b9efa0" +path = "static-publisher/static-content/file2780.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_ansible/02-advanced/index.html_2dae13faad02ab245775e28d25b5c6e17feccd195d7c34cf2cc2b0439993deac" +path = "../build/minified/site/pt/books/learning_ansible/02-advanced/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_ansible/02-advanced/index.html_br_093702213155c95ee056abb831d319a24f4489fb49d0909ccf036ddf00b751e1" +path = "static-publisher/static-content/file2781.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_ansible/02-advanced/index.html_gzip_e32174d0c68c004610736a08d9d4cd0b459aacd3b28fad6a712d03bb14da9fe4" +path = "static-publisher/static-content/file2781.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_ansible/03-working-with-files/index.html_b1be67b696388885e579a5c5780f09edb47835915daae61053ff79dc404057e2" +path = "../build/minified/site/pt/books/learning_ansible/03-working-with-files/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_ansible/03-working-with-files/index.html_br_ec5f406f8c55764e30961807c45f982a7065311f6a8ec50baea97cfe7daaf0dd" +path = "static-publisher/static-content/file2782.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_ansible/03-working-with-files/index.html_gzip_e16a292ead8f3e84a41e3826633e3c7f21c8a46d4bc0b932ba46f774ec685900" +path = "static-publisher/static-content/file2782.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_ansible/04-ansible-galaxy/index.html_ed709c9e5e6e630b89b171fb5a8bff136005e392ff6f4c09b0b6261399a1682d" +path = "../build/minified/site/pt/books/learning_ansible/04-ansible-galaxy/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_ansible/04-ansible-galaxy/index.html_br_67fe6cada7b0e942704cb77714efc48bf46e640e8e3c5049f9be20449a6c5a0e" +path = "static-publisher/static-content/file2783.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_ansible/04-ansible-galaxy/index.html_gzip_07a6c659145b1329069990dfab6d52d94f7b2a4a375e4431b6c52e43d93bc51d" +path = "static-publisher/static-content/file2783.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_ansible/05-deployments/index.html_554b2f5f90c51ab7cef721b63af1a08c807bad23ac3be46a2313259a213880a7" +path = "../build/minified/site/pt/books/learning_ansible/05-deployments/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_ansible/05-deployments/index.html_br_f40ead75ebd05cd624cf1b1f022159f9254f7e4ed1c2de4bee42ff1116e53c36" +path = "static-publisher/static-content/file2784.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_ansible/05-deployments/index.html_gzip_a410ff8fcc8a5746a5cd93d6f7f7a56df5486c60bd1966af010fea6e1a6fdf8a" +path = "static-publisher/static-content/file2784.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_ansible/06-large-scale-infrastructure/index.html_b8d54cca5cfb1bcb08ca8cc9e73a1faa3163f5148d4ed81da060eae65827370f" +path = "../build/minified/site/pt/books/learning_ansible/06-large-scale-infrastructure/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_ansible/06-large-scale-infrastructure/index.html_br_7315a9b10080048ba76567d79f15359afc7103d8c806cde6b558cbbc9089dc00" +path = "static-publisher/static-content/file2785.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_ansible/06-large-scale-infrastructure/index.html_gzip_65e5e5e24626b2579849702481ffcadea72543d79146ad23468003b4b1d92e2b" +path = "static-publisher/static-content/file2785.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_ansible/07-working-with-filters/index.html_9619afc66fd738255a1b0db9dfc68c69ba651b272e3bd6c924c54d8ddc6909d8" +path = "../build/minified/site/pt/books/learning_ansible/07-working-with-filters/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_ansible/07-working-with-filters/index.html_br_fc482480271a5f21ccda423132226786df40e58bc94ce105ddaf1f1a9d6486ec" +path = "static-publisher/static-content/file2786.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_ansible/07-working-with-filters/index.html_gzip_62f03159ee451f371bd44f0c5f7282bcc2d369af5a9b739c41eb6aab9b049d3a" +path = "static-publisher/static-content/file2786.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_ansible/08-management-server-optimizations/index.html_0a06f85e44345f4198a5b516d334a510ac42fb7677e86e4b4429f5bccf84e860" +path = "../build/minified/site/pt/books/learning_ansible/08-management-server-optimizations/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_ansible/08-management-server-optimizations/index.html_br_b91866382c3150d005f1c320c181e4987f00ea8544237287c743952720dac356" +path = "static-publisher/static-content/file2787.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_ansible/08-management-server-optimizations/index.html_gzip_9a753b83fd48a3da7c15a85a4f0e91fbf534e303492d73d55a4aeda1387bb7fc" +path = "static-publisher/static-content/file2787.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_bash/00-toc/index.html_4c9fca39188c57fe18c0c161ad5f884730310d3918e4fbbd953c841e95548688" +path = "../build/minified/site/pt/books/learning_bash/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_bash/00-toc/index.html_br_5dbb922599677192ad38d6e4ba8d01b58099ce1418abbd5992c169008a0baaf1" +path = "static-publisher/static-content/file2788.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_bash/00-toc/index.html_gzip_87025918941f1eb01d5c3e331a5f519b68a479d44bf9e567b6cf8d1aef6c7207" +path = "static-publisher/static-content/file2788.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_bash/01-first-script/index.html_d1b8419d4b138aed96b4a0db33c4c57fef1d58a1a0b7140ca6e45bdbe7ad0ba8" +path = "../build/minified/site/pt/books/learning_bash/01-first-script/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_bash/01-first-script/index.html_br_d845a3cc17c015c18354924375006b86fb09f7be87e86397d3de327cc9b1e233" +path = "static-publisher/static-content/file2789.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_bash/01-first-script/index.html_gzip_517da870f579fa9b4a4c336ca14d23dd51109b151f6748d26e8dd560fd0cdbf2" +path = "static-publisher/static-content/file2789.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_bash/02-using-variables/index.html_4ef8180b7a4e867ed881b86d052c8179f20dcd8292f4ba073701df25856e1a7e" +path = "../build/minified/site/pt/books/learning_bash/02-using-variables/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_bash/02-using-variables/index.html_br_52091d80f1a63650d722636c67136126b03dfc05ef7b0ace2cb8f651f63e2c73" +path = "static-publisher/static-content/file2790.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_bash/02-using-variables/index.html_gzip_d39cd821e0bd48b7a343913706524eac982979ad2e6441a79ed82bbb43bffef0" +path = "static-publisher/static-content/file2790.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_bash/03-data-entry-and-manipulations/index.html_79e166bb0eeaac866afee8a15b5bf3e291bbb6dfc0c840f896319030e5c75298" +path = "../build/minified/site/pt/books/learning_bash/03-data-entry-and-manipulations/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_bash/03-data-entry-and-manipulations/index.html_br_b451981796472533ec33d0fcf15399339a8529c7975b7c0059e47a7a4b7c4076" +path = "static-publisher/static-content/file2791.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_bash/03-data-entry-and-manipulations/index.html_gzip_49cb71df61b43973f3a4c3d2b19fe5742b0f36a2b1a18f1949f1d61018c6691a" +path = "static-publisher/static-content/file2791.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_bash/04-check-your-knowledge/index.html_e5370728bb03d86e2fe2378215013717b5e287865caa54c13948aac3f37bebbc" +path = "../build/minified/site/pt/books/learning_bash/04-check-your-knowledge/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_bash/04-check-your-knowledge/index.html_br_d2767b7f3da47e7d1c9da5ff046b35366ffa97b17797efbc61ebb395e0eba16d" +path = "static-publisher/static-content/file2792.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_bash/04-check-your-knowledge/index.html_gzip_d6ea4a4f6c04e4a90c4006b9ea2ed0c78e942e36d7968f452c053256c76aaba6" +path = "static-publisher/static-content/file2792.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_bash/05-tests/index.html_f9089610e077655ed1c7c00d0e9126e2c85105bdeb4237bad778844a83e04502" +path = "../build/minified/site/pt/books/learning_bash/05-tests/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_bash/05-tests/index.html_br_6d3ec9465835413c740fa0dbf501955cdb9017078d5eb6e417aed6f68841c1cb" +path = "static-publisher/static-content/file2793.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_bash/05-tests/index.html_gzip_bba1feefb3731c03b9be01477351bf6508366ac3be1877c3d482d201276d0f56" +path = "static-publisher/static-content/file2793.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_bash/06-conditional-structures/index.html_a81a21a246f65bb37c26c87514fecb8b5f5b56eae1a8117a8c1a7cb24d24f64e" +path = "../build/minified/site/pt/books/learning_bash/06-conditional-structures/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_bash/06-conditional-structures/index.html_br_e292affd06c8be7aa46d46d9b1d6c38923537291baaf633377ab3891976b181f" +path = "static-publisher/static-content/file2794.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_bash/06-conditional-structures/index.html_gzip_07af5435d3ddfc551a2720eb83cfe685cd0316c3e7a3595c9e52522fb7ad7ba3" +path = "static-publisher/static-content/file2794.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_bash/07-loops/index.html_859479370fd21a078375c4b7c4eb335847896815ea70934750dc223e77245c88" +path = "../build/minified/site/pt/books/learning_bash/07-loops/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_bash/07-loops/index.html_br_799c473d0e4fa0b12fd0e941d83bc3554052479b4be2c5a9453ecc8000883c07" +path = "static-publisher/static-content/file2795.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_bash/07-loops/index.html_gzip_f913d9cb5a23f15eb674b55f365f876766ee6cb8a37bab6ee6b9f45cf5ecb119" +path = "static-publisher/static-content/file2795.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_bash/08-check-your-knowledge/index.html_d5354108d6ff320878b8261a152f4473fdd89e285469e015613044ae5ad50264" +path = "../build/minified/site/pt/books/learning_bash/08-check-your-knowledge/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_bash/08-check-your-knowledge/index.html_br_5e6f283375488258024d4de4849e7da85e775fd015dba2b2b1cd48e52d8cf8b6" +path = "static-publisher/static-content/file2796.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_bash/08-check-your-knowledge/index.html_gzip_d53553908b1a6632df401351779cf5f0955e89cc6d560c91197373f5c96e7854" +path = "static-publisher/static-content/file2796.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_bash/appendix/02-variables-logs/index.html_f77d670218552384e65607e645ee2706eb61cf887ae22975e463d12b4df5eaba" +path = "../build/minified/site/pt/books/learning_bash/appendix/02-variables-logs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_bash/appendix/02-variables-logs/index.html_br_53741cbca418257eec800ab713c66711b9d97d2c72ab3124ab3630c7efa7753b" +path = "static-publisher/static-content/file2797.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_bash/appendix/02-variables-logs/index.html_gzip_8bee2f8cf075c456d8e18ba7dd8910d057d4a72779b8de7bbc992837d4210263" +path = "static-publisher/static-content/file2797.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_rsync/01_rsync_overview/index.html_46b8f2b2f7bf68c1657b41b776b3cbdd37b7afe44b818734838dc17ed2ae8e8b" +path = "../build/minified/site/pt/books/learning_rsync/01_rsync_overview/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_rsync/01_rsync_overview/index.html_br_fc6782c7cc58762df3af851bf3db052e09f98b205333918e6077e34a813cb2c6" +path = "static-publisher/static-content/file2798.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_rsync/01_rsync_overview/index.html_gzip_a3f2617ffbf8bddf5a4fd59b6e13c672953638efb7813021a14ea06195cfaab3" +path = "static-publisher/static-content/file2798.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_rsync/02_rsync_demo01/index.html_8f52facaaa36255767cf7e246440f1dda51a139c98f529affd68ab26c9705522" +path = "../build/minified/site/pt/books/learning_rsync/02_rsync_demo01/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_rsync/02_rsync_demo01/index.html_br_470d42f563ae89d6f4b07514fb565b794e6272e4d9fb65ac055446865b39f995" +path = "static-publisher/static-content/file2799.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_rsync/02_rsync_demo01/index.html_gzip_9572a6061348123250aa9858e59f93d249ed73bd85ddd5787b839144c7b42fb6" +path = "static-publisher/static-content/file2799.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_rsync/03_rsync_demo02/index.html_9dab7953b75a22eb731389933df3352234936a379f65b4d3ab0cd9fa139989bc" +path = "../build/minified/site/pt/books/learning_rsync/03_rsync_demo02/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_rsync/03_rsync_demo02/index.html_br_4230056aac05ecf7242f2ba428e43d55d28136d0a652e67d9d89a70962431f22" +path = "static-publisher/static-content/file2800.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_rsync/03_rsync_demo02/index.html_gzip_4fe16a11f4abc3713a7656d90cf3ae5b06a7336c857c9368f03e2c2760faed24" +path = "static-publisher/static-content/file2800.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_rsync/04_rsync_configure/index.html_2ccd48e1a4ca89bea15b913103575aab9183adb90ae10a18651e65a32d8b5da6" +path = "../build/minified/site/pt/books/learning_rsync/04_rsync_configure/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_rsync/04_rsync_configure/index.html_br_8827b11b791a819f7993bf195f92ae864c4297d81eb5d396cba06cc399ba2a2b" +path = "static-publisher/static-content/file2801.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_rsync/04_rsync_configure/index.html_gzip_fc447e920305de100a652883a42561ca1403ef8076ee7c003e82e4d90ffa728d" +path = "static-publisher/static-content/file2801.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_rsync/05_rsync_authentication-free_login/index.html_2df2f42038d5fa333b72bf9b4a24c171a295d9abd3066ec2c768dd59e3e33b68" +path = "../build/minified/site/pt/books/learning_rsync/05_rsync_authentication-free_login/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_rsync/05_rsync_authentication-free_login/index.html_br_cb40cf70545da156af89f56ad5d65407186fdb1ab00bac1a3b6cea1dac608e43" +path = "static-publisher/static-content/file2802.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_rsync/05_rsync_authentication-free_login/index.html_gzip_a8b726075cd4e16b60a03dc4c802e397ecc58154ce8f8966be7618dc256ed6ab" +path = "static-publisher/static-content/file2802.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_rsync/06_rsync_inotify/index.html_3908613794fbefce98f0141e1a65b4bb6a4828825dba683cc4dd92e1e47a3ec9" +path = "../build/minified/site/pt/books/learning_rsync/06_rsync_inotify/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_rsync/06_rsync_inotify/index.html_br_13b2bdb1c701a12825e275ced2cf1672922f4de36210ff302bf524130a13bac7" +path = "static-publisher/static-content/file2803.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_rsync/06_rsync_inotify/index.html_gzip_51fdcbfca16fce0cf549f55871576e2f66529668cae9d3d11e2977da09c5a37f" +path = "static-publisher/static-content/file2803.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_rsync/07_rsync_unison_use/index.html_e8d0480fdf7eaa8a156303465b095a6c8c88687186663df0e1202faddb8df19b" +path = "../build/minified/site/pt/books/learning_rsync/07_rsync_unison_use/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_rsync/07_rsync_unison_use/index.html_br_952b7fdc93814fc3daf43b2cf3fe73323c38cc79c62022d187d393e1a7ad2f7e" +path = "static-publisher/static-content/file2804.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/learning_rsync/07_rsync_unison_use/index.html_gzip_a8615c6d3386a41173408efddceb9df5cf8a612bb9611df49a2c7f547ecec9ba" +path = "static-publisher/static-content/file2804.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/licence/index.html_f2ffbc87f53f7243b85af7ad1e373d66b8e0095013df015692e06ce7506ac237" +path = "../build/minified/site/pt/books/licence/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/licence/index.html_br_32a1919da22627de28224430ee4d79ca36b956dbdfcd15980d3d811f23aedc50" +path = "static-publisher/static-content/file2805.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/licence/index.html_gzip_d29292cf59aa1f766c0677971fbe4717ccfdfa42c610888b99be69dde9060f35" +path = "static-publisher/static-content/file2805.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/lxd_server/00-toc/index.html_fd65f728b0198026ec2852cf219b2ecc05e79be676fc3f02ff56f75513823f06" +path = "../build/minified/site/pt/books/lxd_server/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/lxd_server/00-toc/index.html_br_b6ba7359ab7e3259a64e58b511aec426667b1e43d63adb88a576777e57c64638" +path = "static-publisher/static-content/file2806.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/lxd_server/00-toc/index.html_gzip_3689de9d400960d2371163a39a4aebf2a7398ae2458bd34052e91ffd3aa82d6a" +path = "static-publisher/static-content/file2806.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/lxd_server/01-install/index.html_dd1c1125c0112f0865e1f785c43493f99b4b48981e0b6d4b9616edd056be34ac" +path = "../build/minified/site/pt/books/lxd_server/01-install/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/lxd_server/01-install/index.html_br_98db5d56d1439d76c982af11e3d2ae629df953efe421f216f7dc7857ea4ca4fb" +path = "static-publisher/static-content/file2807.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/lxd_server/01-install/index.html_gzip_dc4e990ba8c554c8b854aae7a3130ea48c44a8e2cc853c5c7c5d78f281ef5523" +path = "static-publisher/static-content/file2807.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/lxd_server/02-zfs_setup/index.html_c807cd5a7c97d7af0f5a026f0bc54dad784b1d1469c5ab36b48abc6ad4d0d982" +path = "../build/minified/site/pt/books/lxd_server/02-zfs_setup/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/lxd_server/02-zfs_setup/index.html_br_2078d8c157bfb33cb8bb1bbbd98fd31acfbf8492f9ece84accd29b116761949a" +path = "static-publisher/static-content/file2808.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/lxd_server/02-zfs_setup/index.html_gzip_4ebe3cb59e068a6d32cb5afa89b5dc4c6b31562df370c1c0f1f8fa34509450a5" +path = "static-publisher/static-content/file2808.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/lxd_server/03-lxdinit/index.html_113a43b8ea18cfc106f6d4d805e91be7c912fe15fd668cfbc8a2cbfad1ef0db0" +path = "../build/minified/site/pt/books/lxd_server/03-lxdinit/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/lxd_server/03-lxdinit/index.html_br_b5326d59456105b67bc445b691dfef9aa6737b00b0b98b3a51683c4e7130fa0b" +path = "static-publisher/static-content/file2809.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/lxd_server/03-lxdinit/index.html_gzip_b0de29a918b50fc077116cf14f9c738acb8223644b53c8ce1437516cc86e8e92" +path = "static-publisher/static-content/file2809.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/lxd_server/04-firewall/index.html_914fd475da8368d54f1adc82fe7266b74b7ca9cab03ff2acb70ca2c96a4b7fcc" +path = "../build/minified/site/pt/books/lxd_server/04-firewall/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/lxd_server/04-firewall/index.html_br_d62a458ccf8a580a64cca71c0d4a631a7833743f3b6a0a4b071112f7ac1d17f8" +path = "static-publisher/static-content/file2810.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/lxd_server/04-firewall/index.html_gzip_380393509b94f9870439b5ea60dfcf9e90004a2f5601f03bce38a6c1397e3cad" +path = "static-publisher/static-content/file2810.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/lxd_server/05-lxd_images/index.html_782713fd7f79958bceb84e58fd8564fbb63844eb1c82f8b5e6ea1d0c113a82ef" +path = "../build/minified/site/pt/books/lxd_server/05-lxd_images/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/lxd_server/05-lxd_images/index.html_br_b20b7c5d86185ddca70db07fbdee3e5e59de32dcfabe4a8bb7378c001f51f1d3" +path = "static-publisher/static-content/file2811.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/lxd_server/05-lxd_images/index.html_gzip_7b07ad557e7e2ab26348ee57a9a88d08badb4800db497985f11ea710041b6deb" +path = "static-publisher/static-content/file2811.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/lxd_server/06-profiles/index.html_ee687153fe314dc06cb3bfc089fec5e3abf1ea343b19ca8e66211aed2cf560ff" +path = "../build/minified/site/pt/books/lxd_server/06-profiles/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/lxd_server/06-profiles/index.html_br_05705ee194542fdb443823869532358a16f4e9e44662e903345d78cc5f3f46c7" +path = "static-publisher/static-content/file2812.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/lxd_server/06-profiles/index.html_gzip_c87a2a4e2d239da6ce9deededf15987a19a516575b78979c41545443b820ffa2" +path = "static-publisher/static-content/file2812.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/lxd_server/07-configurations/index.html_2d554616a6e8956300fcf064b2acfa00544124b6718183c08699ac9cddf33e9e" +path = "../build/minified/site/pt/books/lxd_server/07-configurations/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/lxd_server/07-configurations/index.html_br_6407c67362804d2b1f274c9967f30890067c2add57dc536e57ff7b2ea924b567" +path = "static-publisher/static-content/file2813.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/lxd_server/07-configurations/index.html_gzip_87f2887457d39db504907b6ec221da90882feced0cfef84621336ed126ab7a03" +path = "static-publisher/static-content/file2813.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/lxd_server/08-snapshots/index.html_b574b6097f9bbfbede4bf87bf89166f2a7a97f1ce7102fd6428b1d5aaef3de7e" +path = "../build/minified/site/pt/books/lxd_server/08-snapshots/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/lxd_server/08-snapshots/index.html_br_66d70e77671af9fb752033a0b65deebcbd617f94f7cfc8c683b01738772f8c9d" +path = "static-publisher/static-content/file2814.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/lxd_server/08-snapshots/index.html_gzip_787bad4668855c648db5490b9ede63b10011a163c0ee25ed0d10b68fa241a75b" +path = "static-publisher/static-content/file2814.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/lxd_server/09-snapshot_server/index.html_702392ecaae6936e6eb40ee7a284e07e075380678552eda04cc7e4ddbb0455bd" +path = "../build/minified/site/pt/books/lxd_server/09-snapshot_server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/lxd_server/09-snapshot_server/index.html_br_1545bb4b243c6126fe03b5b1d8113825ee56ea4d9cc441c235abf0819b8ccaa1" +path = "static-publisher/static-content/file2815.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/lxd_server/09-snapshot_server/index.html_gzip_cf7e1b3a378ff585087d39c1949adc1cc85484460db9a5b27bbdf191abe6f428" +path = "static-publisher/static-content/file2815.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/lxd_server/10-automating/index.html_e9d1c4861791c458485d9fbb585236b2eb1802b1f75ae82a489730dd4326df87" +path = "../build/minified/site/pt/books/lxd_server/10-automating/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/lxd_server/10-automating/index.html_br_091cc0e6d942a3f8a160bfebc8495ef3751139a98adacd2378001648b168583d" +path = "static-publisher/static-content/file2816.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/lxd_server/10-automating/index.html_gzip_04b2f9acd400e36d6ee3a412d380e98494998c57d49fdd56fae074f66e1c2ebe" +path = "static-publisher/static-content/file2816.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/lxd_server/30-appendix_a/index.html_451f3079399aa4836c3618e83c234dfaffea610bacaca0801e39ce010a5bf3f7" +path = "../build/minified/site/pt/books/lxd_server/30-appendix_a/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/lxd_server/30-appendix_a/index.html_br_0e82192708071b62bed493f63a7d20a11d1c4eb7bb28b71d9f2d63320218ce38" +path = "static-publisher/static-content/file2817.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/lxd_server/30-appendix_a/index.html_gzip_a12331859bf12c709d6cc83e45068f14938620905f438b58cfca2731d36300cd" +path = "static-publisher/static-content/file2817.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/nvchad/additional_software/index.html_8edfe4476343e3e86eb07566a4ed8c64e8f7a7041d9625205a9cc9dd1c39b8a7" +path = "../build/minified/site/pt/books/nvchad/additional_software/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/nvchad/additional_software/index.html_br_aab24e0ed1e70bb6bbdc812360de58c99622bf8f3ed8ab221cbf014f2265399e" +path = "static-publisher/static-content/file2818.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/nvchad/additional_software/index.html_gzip_cb446b89673c8021d925e8d3dc768eae93dbbc822e47c74349eba5457354f3b5" +path = "static-publisher/static-content/file2818.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/nvchad/index.html_46ddf3bd466aabf7f76fbad9c6b294063f30d0b5ebca677569c7740ec3c6f83f" +path = "../build/minified/site/pt/books/nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/nvchad/index.html_br_44bbae647ed0a38ccb52050180314e1d8787689366355d498f15ee5f3667a0fe" +path = "static-publisher/static-content/file2819.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/nvchad/index.html_gzip_1fa5892d27f8f6bbe3cd93470a2885c765e74e9952f77d685bdb87b603a6d7d0" +path = "static-publisher/static-content/file2819.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/nvchad/install_nvchad/index.html_d579fd2985cc56e8983db640e21403b991143d9881d462f658a2a4b77ca48660" +path = "../build/minified/site/pt/books/nvchad/install_nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/nvchad/install_nvchad/index.html_br_f4a5b935c65e23e17abcbe6252d6858200177d001a7591361024498079c7b438" +path = "static-publisher/static-content/file2820.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/nvchad/install_nvchad/index.html_gzip_37b8c7f4b88448c66c218be035157726c3148679a84f6fcf566bf7d33a2e873c" +path = "static-publisher/static-content/file2820.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/nvchad/install_nvim/index.html_555362c3971219c663b645402bd90b68e705873561a661596bfacbd86c42b4fc" +path = "../build/minified/site/pt/books/nvchad/install_nvim/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/nvchad/install_nvim/index.html_br_41db4c9cc508f538e9c160f161f09f3981cbe8534e827f1900704055e9b0b608" +path = "static-publisher/static-content/file2821.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/nvchad/install_nvim/index.html_gzip_5dbf3f8cc829a96c6bd931b236a6e2b663dc4b2c92e701da47417c0a91288539" +path = "static-publisher/static-content/file2821.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/nvchad/marksman/index.html_bb5fbac8cdebf153179c9c49d0e07ae2532e7f37b452eade2f145cf72df79bd8" +path = "../build/minified/site/pt/books/nvchad/marksman/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/nvchad/marksman/index.html_br_c71f4752c2c5fda97d250eabdcf206fdc4c4785c38cadbe96177dc847bb3d68d" +path = "static-publisher/static-content/file2822.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/nvchad/marksman/index.html_gzip_305a089f23be9c0ae75a2de3b17c8b301743d38bc67054280ebb41baede8fb0e" +path = "static-publisher/static-content/file2822.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/nvchad/nerd_fonts/index.html_14bdb7b43035bfad2afc92478800a505c8b0dbcbca716e9b226128c845773e72" +path = "../build/minified/site/pt/books/nvchad/nerd_fonts/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/nvchad/nerd_fonts/index.html_br_28b6435bc2568daef0f7791843e81fe1bc71cf3dbc60ade25262c2e439bfd70a" +path = "static-publisher/static-content/file2823.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/nvchad/nerd_fonts/index.html_gzip_aa6da98e2d7e8f162d796990131a4ebb7ef54e975b116680f52829145b9bb4a9" +path = "static-publisher/static-content/file2823.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/nvchad/nvchad_ui/builtin_plugins/index.html_124d0b05856bc5fc8d79f32c10baab1014aa151046f1465d5788b1c40caef89b" +path = "../build/minified/site/pt/books/nvchad/nvchad_ui/builtin_plugins/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/nvchad/nvchad_ui/builtin_plugins/index.html_br_e5a093769c74bd772fb3e15366beda87870e893537a8eb9bd37d59d2fb022b8d" +path = "static-publisher/static-content/file2824.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/nvchad/nvchad_ui/builtin_plugins/index.html_gzip_cb9c93e9818a45c42b86f67af6584c664ae30515c2c459cbea0d0335bdf73748" +path = "static-publisher/static-content/file2824.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/nvchad/nvchad_ui/nvchad_ui/index.html_3ddc7d8278132fcc80366ea9e59cc77cb5350a321276d4d7be49a1c166eb2974" +path = "../build/minified/site/pt/books/nvchad/nvchad_ui/nvchad_ui/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/nvchad/nvchad_ui/nvchad_ui/index.html_br_cdf4aec69bf7c5316e3131c89ed48338d3bf315f34b4b1a3eaf1beb970493d6f" +path = "static-publisher/static-content/file2825.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/nvchad/nvchad_ui/nvchad_ui/index.html_gzip_a5496f392c7d891095a6138d5a3d3fe97ceaab5b2ef2547ab7c8c44d4002b545" +path = "static-publisher/static-content/file2825.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/nvchad/nvchad_ui/nvimtree/index.html_311965f2846ae0cef428f0f389829e50b427d04710f9d96def0d4018835851c7" +path = "../build/minified/site/pt/books/nvchad/nvchad_ui/nvimtree/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/nvchad/nvchad_ui/nvimtree/index.html_br_fd6e2d099d00ab9d0fe3167522a95dbf088a851f9282f3ca0561589aa6a82eae" +path = "static-publisher/static-content/file2826.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/nvchad/nvchad_ui/nvimtree/index.html_gzip_5f320ddcf890ccd5bf31306414711aaab2c380f6506a7be6594238cf27c11457" +path = "static-publisher/static-content/file2826.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/nvchad/nvchad_ui/plugins_manager/index.html_ccea0a153c0cf58a653380fc3601d1b011556e59821b13b7aa614ee26d3464d5" +path = "../build/minified/site/pt/books/nvchad/nvchad_ui/plugins_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/nvchad/nvchad_ui/plugins_manager/index.html_br_4c7af22fd74862a78def35ad9f4290dd827616c7378ac01be71ca3c00ade7d77" +path = "static-publisher/static-content/file2827.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/nvchad/nvchad_ui/plugins_manager/index.html_gzip_7f0fd275612d43c4a7986db235ebedc3b5213f0609319f28a41e20301b3a3784" +path = "static-publisher/static-content/file2827.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/nvchad/nvchad_ui/using_nvchad/index.html_1ede5e7063b6b5663dac8d696ec47be346fc53d516eadc39b124dc6208332056" +path = "../build/minified/site/pt/books/nvchad/nvchad_ui/using_nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/nvchad/nvchad_ui/using_nvchad/index.html_br_46c60598a6f3c8f8f12fd5e2e230f241fbe09c4850031b796a2a7ca49db415f6" +path = "static-publisher/static-content/file2828.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/nvchad/nvchad_ui/using_nvchad/index.html_gzip_15a029338a1b2c951bc09db8e809ce82f91e943d756b2b5d50091fa43d17834c" +path = "static-publisher/static-content/file2828.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/nvchad/plugins/index.html_fcfbf02ddca65b46c0250dfbe4fc04891684637c6d81eb3a0f2ac8fbaf5f6c22" +path = "../build/minified/site/pt/books/nvchad/plugins/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/nvchad/plugins/index.html_br_ac102bf223dc45c05f264026971bd7cbad7ad40997d2fa6ac9c02ebd6c552b68" +path = "static-publisher/static-content/file2829.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/nvchad/plugins/index.html_gzip_a78526961e8772d5968944603b8d08920cb673d9688d4bd39173f28443585068" +path = "static-publisher/static-content/file2829.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/nvchad/plugins/md_preview/index.html_aaa902f19b61b104adae284bfe5b4ec82aac3f2446a7997f96eeff3ff522c0a9" +path = "../build/minified/site/pt/books/nvchad/plugins/md_preview/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/nvchad/plugins/md_preview/index.html_br_d96ea13aad021f15e8107f2c13b3f0e3b12a859dd715485aa62c976b2a39d17e" +path = "static-publisher/static-content/file2830.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/nvchad/plugins/md_preview/index.html_gzip_343e822a5bb197c0031b4ba72c2bc4e3b1455101a542364e7d6359fb8c0139ad" +path = "static-publisher/static-content/file2830.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/nvchad/plugins/projectmgr/index.html_6d860ea67ffa5de91de1828c1efeb9b8bff3e66d22eaf77ac1596c2b3d62d396" +path = "../build/minified/site/pt/books/nvchad/plugins/projectmgr/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/nvchad/plugins/projectmgr/index.html_br_e2ca6ead3e9217db1e79c2341d6f5e7057643f3b1620b2b195d9e73ea7a82885" +path = "static-publisher/static-content/file2831.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/nvchad/plugins/projectmgr/index.html_gzip_c075aedee82eadd00db066cb8e010511ed9e7ccd399ed359f11197c06849384d" +path = "static-publisher/static-content/file2831.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/nvchad/template_chadrc/index.html_8c03de5f736b72eb0e2c2660d46273e7a56517a4f6d2cbe3fc35356bffd5dc13" +path = "../build/minified/site/pt/books/nvchad/template_chadrc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/nvchad/template_chadrc/index.html_br_0264b223b2eb7ab2e5cd58072ba013b3a7255f5326e2d848ba9c09fbc1b9e091" +path = "static-publisher/static-content/file2832.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/nvchad/template_chadrc/index.html_gzip_1c6e7a3d5456440595fecf27f1c28b26522f45f61cf1b89a582d599d132a4167" +path = "static-publisher/static-content/file2832.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/nvchad/vale_nvchad/index.html_82c3ba2ebeb01a85c655fc92dda3bb4124359c73cc1ee5c10861dfda82a663d1" +path = "../build/minified/site/pt/books/nvchad/vale_nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/nvchad/vale_nvchad/index.html_br_6ac496ce10cc49c763230957581eacb690d03291beae1a36359bcb5716a7e246" +path = "static-publisher/static-content/file2833.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/nvchad/vale_nvchad/index.html_gzip_100685ca0a98c1757123cf896c1f73f468d988625cf2c3ff12603cc08777dc5b" +path = "static-publisher/static-content/file2833.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html_35e41291f2973a961bf7e1ca166d0e8e7887e3c3dfb76dd3f89304d9c1ec084f" +path = "../build/minified/site/pt/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html_br_4908010f08dc903d94539b33b8ed48a6655460f9d66ff2d3fc5b45c2d25ce17b" +path = "static-publisher/static-content/file2834.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html_gzip_2c7eebf827372a48509e555d6e35d29275faabc4def8a83e8262f6ef80fc5d93" +path = "static-publisher/static-content/file2834.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/sed_awk_grep/2_grep_command/index.html_5d0f934d56f647800241525e04c74d49fe90cbd4bd2eb0a079fe36a818b5a359" +path = "../build/minified/site/pt/books/sed_awk_grep/2_grep_command/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/sed_awk_grep/2_grep_command/index.html_br_88075cce0ab9ac76b86d592aabebdad8117956be4ba08ce9c1993949ffda4cbd" +path = "static-publisher/static-content/file2835.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/sed_awk_grep/2_grep_command/index.html_gzip_bc04669a1a0b3f55bb4565b374fa59e0c9e2be5753a703bd361b713f2a01b102" +path = "static-publisher/static-content/file2835.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/sed_awk_grep/3_sed_command/index.html_6c7c00dec194cf763406b8ecf4db9687975129c1ae91ee93f7329e7b298fa143" +path = "../build/minified/site/pt/books/sed_awk_grep/3_sed_command/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/sed_awk_grep/3_sed_command/index.html_br_ebe45f82419517b55d990228518630eb4d78e07047a7cfb9453550142699f1c7" +path = "static-publisher/static-content/file2836.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/sed_awk_grep/3_sed_command/index.html_gzip_9a46c86681d2d5d158fc53d1426071a303eb5b447c268a716d4f95aee0ae3607" +path = "static-publisher/static-content/file2836.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/sed_awk_grep/4_awk_command/index.html_097b1a9c87a26a4000af733ab067eba9c355050d45dc27c933f82748381edfbe" +path = "../build/minified/site/pt/books/sed_awk_grep/4_awk_command/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/sed_awk_grep/4_awk_command/index.html_br_d6983e4d82c4c402bc52165cd1eb5bba50e37e37f9767b6d51451cf1b0f7ac3f" +path = "static-publisher/static-content/file2837.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/sed_awk_grep/4_awk_command/index.html_gzip_b7bafc3e20775e00b63959bbcbcb39ed06a610c166e0b177ac505a2f4d87c01c" +path = "static-publisher/static-content/file2837.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/sed_awk_grep/index.html_c5991cad20aedc397f5d996034022af99944c4eb77a3eae0cecef2c310c4ef78" +path = "../build/minified/site/pt/books/sed_awk_grep/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/sed_awk_grep/index.html_br_5da361ff48ed9d70d11e312c2b19c872ce32cdca55836379daf074f928ebbed3" +path = "static-publisher/static-content/file2838.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/books/sed_awk_grep/index.html_gzip_e7fa887014726133095f10e8ad7fa5305f5d79e4630be175141c6709977a1562" +path = "static-publisher/static-content/file2838.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/containers/docker/index.html_039c9ca46e74bee02e6d818ad1891c7abf5b8e8fbc60ba73519f00f5e31764bd" +path = "../build/minified/site/pt/gemstones/containers/docker/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/containers/docker/index.html_br_0056aa133ec1f63b63fe6b2a82213f0c6d102e5f8070cf9f411b83efb15005e1" +path = "static-publisher/static-content/file2839.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/containers/docker/index.html_gzip_6a9f34e2a92577c0fa049eec7f7d63b8e58592c04175055a3d21bc99fff9f67c" +path = "static-publisher/static-content/file2839.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/containers/podman/index.html_98bc9d4617748cb92632928d8c7d8ba96c3be29b24a905786f6942ecbc85e69d" +path = "../build/minified/site/pt/gemstones/containers/podman/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/containers/podman/index.html_br_825b8e67d4a249b65cf68078486cdaa61387d78bea191fce3ed630f637ebe35a" +path = "static-publisher/static-content/file2840.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/containers/podman/index.html_gzip_a9a526b714285d293d83948288a0e907f89c86aacb0e6a2801a2e09c1238f46a" +path = "static-publisher/static-content/file2840.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/core/view_kernel_conf/index.html_4a28705c4e94370683614af11255d6ed5942a3a985bda3d3ebfbbe162f8b040e" +path = "../build/minified/site/pt/gemstones/core/view_kernel_conf/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/core/view_kernel_conf/index.html_br_d35ecc7e2de05cc7d896716f7e57132061326d67391993935fe95d6a6663cfce" +path = "static-publisher/static-content/file2841.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/core/view_kernel_conf/index.html_gzip_26d17f00e43ab7e003b43f8cc1ba89dacb913b553063e8506b2aa297709f54d2" +path = "static-publisher/static-content/file2841.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/dnf-swap/index.html_6ced69cb79b42af12d04a2e5237c1ef08a7826a0395ccecac8dea2a3c29223fd" +path = "../build/minified/site/pt/gemstones/dnf-swap/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/dnf-swap/index.html_br_ac28579a42d2d972a4c07967c13b8660669163d43f97a50925c0e84321c6c3e5" +path = "static-publisher/static-content/file2842.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/dnf-swap/index.html_gzip_cdf53af0411c5e3c5f0b5614f44e0e95a1ac827d7d9e9766de35c5db9a42eade" +path = "static-publisher/static-content/file2842.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/gemstone_template/index.html_25ca02df9d7a6c469ce437693ec107b38b7bf2aeb1706a6f0a81c43c2353115e" +path = "../build/minified/site/pt/gemstones/gemstone_template/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/gemstone_template/index.html_br_67353bac8ebc111b9e6f4aa5cb2f0d6b4ecec4346b0f968435d7ae65c27f9b72" +path = "static-publisher/static-content/file2843.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/gemstone_template/index.html_gzip_bfacd788519e223f027c6d9c4ceabd34834cd51789886e03c560dda7896f3c08" +path = "static-publisher/static-content/file2843.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/git/00-gh_cli_installation/index.html_a89ba2f31054787f0aa0b21fcb4c5329687f61275f9a36e2156f38a4838b60c1" +path = "../build/minified/site/pt/gemstones/git/00-gh_cli_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/git/00-gh_cli_installation/index.html_br_61fafe47b6ef70c5e4b76b973e8d9306b4adbdbbebbc256e3b48103aec5d0212" +path = "static-publisher/static-content/file2844.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/git/00-gh_cli_installation/index.html_gzip_3ab27aa6443860cbe8073cd14c0de0574aa39a66ff2d3f5bba7690d2086a4e1f" +path = "static-publisher/static-content/file2844.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/git/01-gh_cli_1st_pr/index.html_b856db6e6482b3998838b2f46daf15a332d51421f78fb031b16984f740fad3fb" +path = "../build/minified/site/pt/gemstones/git/01-gh_cli_1st_pr/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/git/01-gh_cli_1st_pr/index.html_br_5fb1b6f14333b6fc2434d9b4a6d9b3762fd338abfc189832b8d320104c8bcdf6" +path = "static-publisher/static-content/file2845.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/git/01-gh_cli_1st_pr/index.html_gzip_29a446b45b4e9066eb6769b2301d6df3dc28fc6d221a4df09386362f76a523db" +path = "static-publisher/static-content/file2845.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/git/02-gh_cli_edit_pr_title/index.html_43b59236c1d9e5fb747f2b6efc366ab124f08351bdd4b9ffd7d6b2246de57c41" +path = "../build/minified/site/pt/gemstones/git/02-gh_cli_edit_pr_title/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/git/02-gh_cli_edit_pr_title/index.html_br_8e153a24a45c9159a2b0efb11097d6216358b40727e7d0051ac03d6ab8ded9e5" +path = "static-publisher/static-content/file2846.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/git/02-gh_cli_edit_pr_title/index.html_gzip_7c5307b613629a92059ce7837e671a6d1de5bc153be805d3c031a30a0c4f9dae" +path = "static-publisher/static-content/file2846.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/git/02_github_web_edit_pr_title/index.html_df1a6dec92a90b2f2aeee9ce76ea903aad9d2369fc9ff5d9bb73220f06a51cd4" +path = "../build/minified/site/pt/gemstones/git/02_github_web_edit_pr_title/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/git/02_github_web_edit_pr_title/index.html_br_0e2b78f9f1c4a995f08241e1e703eed9e9825b272c4f0cda053f915be201145f" +path = "static-publisher/static-content/file2847.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/git/02_github_web_edit_pr_title/index.html_gzip_c2da7c7e35ef3f4ef5d6ca147d11382b915335cbee463448c74b497e1426a1c6" +path = "static-publisher/static-content/file2847.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/git/feature_branch_workflow/index.html_936624de14e12c1141bd78a268feea268fa7a0ed475340cee4a712431013c68e" +path = "../build/minified/site/pt/gemstones/git/feature_branch_workflow/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/git/feature_branch_workflow/index.html_br_1c5b9b2fe272a7e9f4c9996f7d7bbff7ac396da7fb29542f9a81d3afd03d5ece" +path = "static-publisher/static-content/file2848.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/git/feature_branch_workflow/index.html_gzip_3767e66c3a1a0c2d51109d8589e5bdd71c195a5b476ff612f1b37c2019d4c599" +path = "static-publisher/static-content/file2848.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/git/fork_and_branch_workflow/index.html_5fc0c8647c1fedffcb03ae6d53367b9067d858cbcc45971b3d91bfeb564a9b73" +path = "../build/minified/site/pt/gemstones/git/fork_and_branch_workflow/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/git/fork_and_branch_workflow/index.html_br_85709fcb34f56a4eec21cc24ac917289ca5a9dcc535f4907d4d75d392f64a9a5" +path = "static-publisher/static-content/file2849.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/git/fork_and_branch_workflow/index.html_gzip_648705934ca59adc43992c8b1e9b36c692609cbdc9d6cc937e8dcd03b7765277" +path = "static-publisher/static-content/file2849.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/git/git_pull_vs_git_fetch/index.html_9874a6367d510567e2e23904f183dc439ae2f77cd5b5dfeb1a1592ab87c1b994" +path = "../build/minified/site/pt/gemstones/git/git_pull_vs_git_fetch/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/git/git_pull_vs_git_fetch/index.html_br_34010eb30c5f771d440475f5bf8c2c1ae2f1997fcab8170923788e78075e481c" +path = "static-publisher/static-content/file2850.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/git/git_pull_vs_git_fetch/index.html_gzip_e42574d44b3241d79068b82914f1eb9feb60b01bbd2395300971e8ab9b670bd0" +path = "static-publisher/static-content/file2850.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/git/git_remote_add/index.html_90f3cb59223eed758b4ba95d7bcd8e6d420a856aa4e144c76239fb645e42014a" +path = "../build/minified/site/pt/gemstones/git/git_remote_add/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/git/git_remote_add/index.html_br_1fa4c8544d6b92ce4e18d9de6fd6a2d8cf6ce3c80765ddd33bce648d051fdbc8" +path = "static-publisher/static-content/file2851.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/git/git_remote_add/index.html_gzip_2f9da6ab300b5db3d8bab83e4d3a7173a65cf02bb472b1ab962e0a0912ea6fef" +path = "static-publisher/static-content/file2851.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/git/tracking_and_nontracking_branch/index.html_3b75d08b683056b3fb745dfaa82153b25cb06aa48a12aa187efc33fa18f2aef3" +path = "../build/minified/site/pt/gemstones/git/tracking_and_nontracking_branch/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/git/tracking_and_nontracking_branch/index.html_br_91f53d20625aa774525aa8bd52393ba39ed4cc6ea2488ee5ec108a845cbacd77" +path = "static-publisher/static-content/file2852.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/git/tracking_and_nontracking_branch/index.html_gzip_e29b13f82b79448ac4527ff410d77e33bab6b8af63a2afb7182eaa191880f654" +path = "static-publisher/static-content/file2852.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/htop/index.html_a315e9981d5e422d2a55f0d4db5fb76fda5e8d61437b5bc6a9f7640ca1e68f04" +path = "../build/minified/site/pt/gemstones/htop/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/htop/index.html_br_af3316dee3497b63755fd8e0ddfa625c0ba6f1c2623f12bd1d0548fb53cf3ef8" +path = "static-publisher/static-content/file2853.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/htop/index.html_gzip_b00536f417e21613b969658b068535724202ae6e6b0672e161049919b49f1484" +path = "static-publisher/static-content/file2853.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/https_rsa_keygen/index.html_5d32e1634850ddfa641c998f81ee3f2ffe3bfcca791b56eca666196068623698" +path = "../build/minified/site/pt/gemstones/https_rsa_keygen/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/https_rsa_keygen/index.html_br_83f1bd5afa44a2e9219fe39cc7f580d1bdf3857461de915c10163212f682ef18" +path = "static-publisher/static-content/file2854.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/https_rsa_keygen/index.html_gzip_d6e6d4022e496215ba58927df1a976501b995d2a5177a09179fe5270d2fbb2d9" +path = "static-publisher/static-content/file2854.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/index.html_4cd5ead6163434f74453fb0eb57368f1774fe75a6b1a620e0891d8f364eb1f29" +path = "../build/minified/site/pt/gemstones/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/index.html_br_0227ea6ccea5e4f84f74178d41cbe4d89165a4859b5c5def8fec3e34dc183838" +path = "static-publisher/static-content/file2855.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/index.html_gzip_6de6f2ce42f4b7d821dbeb0ac65341501355bd684f3aee81b4cf85388e910a03" +path = "static-publisher/static-content/file2855.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/markdown-demo-v2/index.html_c8c9bf70e4c8689b84469f45b5093f694134a81f791d9128d644aa7eda3b03cb" +path = "../build/minified/site/pt/gemstones/markdown-demo-v2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/markdown-demo-v2/index.html_br_f967c5b46eb1b1edff1ca8672042287e1a7f70eca8bfd11112c29566fe9b6771" +path = "static-publisher/static-content/file2856.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/markdown-demo-v2/index.html_gzip_4fdc12bb78e4b57786d3c48ab8e1abdfc4dda3c56505369b7e183cad7137c7cd" +path = "static-publisher/static-content/file2856.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/network/RL9_network_manager/index.html_c5bc2b5118c34713c27a95933844d2b4c8f67870a8680204563d0187fa762b73" +path = "../build/minified/site/pt/gemstones/network/RL9_network_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/network/RL9_network_manager/index.html_br_ea282c1de59bfeab5193ba8f214fd72bd5b808b8bd433ab9abf24ebc7bef70c9" +path = "static-publisher/static-content/file2857.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/network/RL9_network_manager/index.html_gzip_e9f34d1daa0754f72773dbd54e2e5edc2610755196fbab6615dc0a547924bd29" +path = "static-publisher/static-content/file2857.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/network/iftop/index.html_26394efb35e084a03b98deba5a66966295a852c1e8493c5387502754e7b9636c" +path = "../build/minified/site/pt/gemstones/network/iftop/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/network/iftop/index.html_br_3f8bbd5fb43b509eb1435819dac5a99e1aa7744c65722203e2b20f5a8069a25c" +path = "static-publisher/static-content/file2858.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/network/iftop/index.html_gzip_b9a70554827341a49d030c8ff8c69b58925cc2c31582982fab650676da58cd78" +path = "static-publisher/static-content/file2858.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/network/mtr/index.html_dcb3c3924742221240e0ba2a4b746c3a91a7a52dcaf791e4bdaa4f11c82ab281" +path = "../build/minified/site/pt/gemstones/network/mtr/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/network/mtr/index.html_br_954687de09d56a021b7a45d7d976df21443ce07d881c782cca0f9963a11f8a72" +path = "static-publisher/static-content/file2859.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/network/mtr/index.html_gzip_5f1dc0370a812e96b23e62722f6b5b137d6473bd7d1ac7ad340f9aabbd55f112" +path = "static-publisher/static-content/file2859.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/network/nload/index.html_e0761a101fd66df1846d21e7a1cebfe4cbd4afa7a274b87c02439e8bdf675ea8" +path = "../build/minified/site/pt/gemstones/network/nload/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/network/nload/index.html_br_b8893c4ff77bb0e9079acb20dc654c326c9a400f54005431c413b65e7bd5d375" +path = "static-publisher/static-content/file2860.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/network/nload/index.html_gzip_6564e2c692e97b6631de4f0d346ef3086c50f1f6cf09b7aa0992346a32669630" +path = "static-publisher/static-content/file2860.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/network/nmcli/index.html_248aa639180381fffea5817b4d86182e525c4310c48083f15a3037c0d385ebf5" +path = "../build/minified/site/pt/gemstones/network/nmcli/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/network/nmcli/index.html_br_60eb023a4a92c1887640060cf807a38edc03029dea7f17ef547e0ad04a5db8ae" +path = "static-publisher/static-content/file2861.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/network/nmcli/index.html_gzip_f067032ad5d0c5903a1b91e81f2c054ea65b3113bc0de665dc6a2190b15a3d3e" +path = "static-publisher/static-content/file2861.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/network/nmtui/index.html_318ed5dcf436655101c33260ab8db06f1280cb6b284b9e413f1840052eaaf4f1" +path = "../build/minified/site/pt/gemstones/network/nmtui/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/network/nmtui/index.html_br_ccdd4fc21434f95e7c2277fdff13482d40d30f93813abf2d296ccb1cb66cbb3e" +path = "static-publisher/static-content/file2862.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/network/nmtui/index.html_gzip_521c036ce10ebf5b57705bbfed6cc8b08afceb9d86cc838ab7089de209ab0117" +path = "static-publisher/static-content/file2862.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/perl_search_replace/index.html_3877ae3563e020316d592a9c1b37329965fc8a83f36c3dce080ae7aaf14b2253" +path = "../build/minified/site/pt/gemstones/perl_search_replace/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/perl_search_replace/index.html_br_89235f32cb8f6d6f29b10959b19e40b8e69f2a0a332f6bccb93cda62e0ea5d31" +path = "static-publisher/static-content/file2863.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/perl_search_replace/index.html_gzip_eee35643dfdbd4b1789019f9c1adf3d8482ba0fdab682d583e80dff7cbab854c" +path = "static-publisher/static-content/file2863.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/rpaste/index.html_c00ee2dc5ecdfdd34df1da0eb2fc63ea023b9a1eab191c514d79d5fb97046dbf" +path = "../build/minified/site/pt/gemstones/rpaste/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/rpaste/index.html_br_f1649d8bd75631667d3446ba33f990d6c030e78707ceffd52804d8bc79fea8f5" +path = "static-publisher/static-content/file2864.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/rpaste/index.html_gzip_2ac94164ae761a1070c5e890789a52cb5dd38fbd9f3f18f54b2260b6ad5e6865" +path = "static-publisher/static-content/file2864.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/scripts/NoSleep/index.html_ef179477009bff0cd67eb4a8d4899e291454538a86e1c81616b63d4f3a467d07" +path = "../build/minified/site/pt/gemstones/scripts/NoSleep/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/scripts/NoSleep/index.html_br_b3e7996018848a54c0e0df28642cdd109e5cb6935edfe73fb5cae0ba074c0969" +path = "static-publisher/static-content/file2865.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/scripts/NoSleep/index.html_gzip_2d60ab32355bf31f948a56fbb6b8c138c01d086d27b480ae706b963eda26870a" +path = "static-publisher/static-content/file2865.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/scripts/bash_stub/index.html_366a9304f09ebefbf7295215969b14f6c3004eb16659062b81da8921a92fcd5d" +path = "../build/minified/site/pt/gemstones/scripts/bash_stub/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/scripts/bash_stub/index.html_br_1687bf18f567ec6fcac2a4e2ca1131777d16f586429d33e89034a274a02c9a43" +path = "static-publisher/static-content/file2866.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/scripts/bash_stub/index.html_gzip_500268c19c900e7d7d67de8bac62bd6a29b40da794e277f238ae18a5acb756ab" +path = "static-publisher/static-content/file2866.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/sed_search_replace/index.html_c6f58f95dc2af21f1dfec0d2880d3a066bb065fbfbcb8f302693ee1e625c7bc4" +path = "../build/minified/site/pt/gemstones/sed_search_replace/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/sed_search_replace/index.html_br_67e28c178bc7b1686ba91185faa662cd66ab6a8627273377a0615fa0e977cf82" +path = "static-publisher/static-content/file2867.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/sed_search_replace/index.html_gzip_21401491508306397e304a548493a68b2bbb9dc67fcc676b7dcd457b2e7842ca" +path = "static-publisher/static-content/file2867.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/setup_local_repo/index.html_5e27e22b9217a311f82d6190fa05a345457481c2e216818213547e557e120e29" +path = "../build/minified/site/pt/gemstones/setup_local_repo/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/setup_local_repo/index.html_br_be3855c10c1d41e3a5e26ca235acfcd5f4772fb58b08c5d385b6c916cc1254ad" +path = "static-publisher/static-content/file2868.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/setup_local_repo/index.html_gzip_ece38aa9b5f95d77ddbe48affc27faa2b280ff4936f64c06fb89420698db0e21" +path = "static-publisher/static-content/file2868.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/string_color/index.html_337ed24a13db1c7b99115c4e6c815f3896ae5f9c90bfd05a174efbaf256b4025" +path = "../build/minified/site/pt/gemstones/string_color/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/string_color/index.html_br_e0893495ff441e3199d2e50a5ad446080e785bdf5a45c5da30a819a33aa5d283" +path = "static-publisher/static-content/file2869.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/string_color/index.html_gzip_291d2b38aace2543710a5b69f08bd663574634510d24f8ce6ebdeaafdec8317f" +path = "static-publisher/static-content/file2869.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/systemd_service_for_python_script/index.html_326fdac7c737f2ec54fccd89ccc480f1a46f9794d5982d79c8a3991c94ca83e4" +path = "../build/minified/site/pt/gemstones/systemd_service_for_python_script/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/systemd_service_for_python_script/index.html_br_c3f5bc3afb79ad1e317f2ce40516a990d3dc697ca95c6542fbc4ef1d8df3a3df" +path = "static-publisher/static-content/file2870.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/systemd_service_for_python_script/index.html_gzip_fa211ac85ea1bfda4b55e994a83363bc5d5f2ec3c717dde766f0ee93c2694998" +path = "static-publisher/static-content/file2870.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/test_cpu_compat/index.html_2f9e9383e2523291f2d22ee55cfba1a3c4fb9d93517cfb02a4348dc7ff166665" +path = "../build/minified/site/pt/gemstones/test_cpu_compat/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/test_cpu_compat/index.html_br_9f4422761206eae5fd3bb032c1674ac7f47ebfdb3b77c8ca04cf2a3f52d13595" +path = "static-publisher/static-content/file2871.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/test_cpu_compat/index.html_gzip_191b1a1f71cac3dec223dbd2227e9b1b61b1067db4f06e205776bd200fbd233c" +path = "static-publisher/static-content/file2871.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/torsocks/index.html_d5ec61d11e65e21c925bdea8eeac9543c8a9273909109b455457b2600c9c9a19" +path = "../build/minified/site/pt/gemstones/torsocks/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/torsocks/index.html_br_2dd353c6e055d508094b6b3372fce817adc3c7d657933833c65b0b166876a227" +path = "static-publisher/static-content/file2872.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/gemstones/torsocks/index.html_gzip_51d99197a4f9071206a1c58ed95c953a3c0d97a4266e817f39c4e6f3ec2f96b1" +path = "static-publisher/static-content/file2872.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/8_6_installation/index.html_e14fc8947bd499a625c5c67c0a789bf1dd37ac0878829031bb15fc4a3c409226" +path = "../build/minified/site/pt/guides/8_6_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/8_6_installation/index.html_br_a0a893ff6db572eb2fdd0473cbbee96347f0802749eb179f81a54e9f842c0952" +path = "static-publisher/static-content/file2873.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/8_6_installation/index.html_gzip_7ec1e9a9bbe7f6585d4bccf71a2b02249e8d058fb7ae844ae18ed6df3625300e" +path = "static-publisher/static-content/file2873.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/automation/anacron/index.html_4bd7ae5daef14273f79bc014507512b1f926bdd1c70f95145a245f81a3018267" +path = "../build/minified/site/pt/guides/automation/anacron/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/automation/anacron/index.html_br_a7dbbe390d1556882b1ada4671ba31b3e5094308edfb2be20b26da03c2de4615" +path = "static-publisher/static-content/file2874.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/automation/anacron/index.html_gzip_ead07c500ae1ad38708c74a3feac4b27121b6b9978e9cea2a2e48b00830ba98d" +path = "static-publisher/static-content/file2874.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/automation/cron_jobs_howto/index.html_5aa8f95ffe8a51fed4e24f4fdc6dbcb7caa6b109ea42920c405972c3b3f32dd1" +path = "../build/minified/site/pt/guides/automation/cron_jobs_howto/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/automation/cron_jobs_howto/index.html_br_b2ae2b6fb309796f1309cd927a32a0352635a0edcd14105aa36a78d0b2afda99" +path = "static-publisher/static-content/file2875.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/automation/cron_jobs_howto/index.html_gzip_1c5436fa0ec8cf79858c273e125cdba361e71ee1e75c274ed7d44d3943d190aa" +path = "static-publisher/static-content/file2875.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/automation/cronie/index.html_a3b8362017c4bd7bd3cb9e6bc1ca917b1b1823a62c2dd45d45620f4450ac766e" +path = "../build/minified/site/pt/guides/automation/cronie/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/automation/cronie/index.html_br_0f2a127a528f71806ea8d421d0da22664a81eef61fbccea38eb8135aa716dc86" +path = "static-publisher/static-content/file2876.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/automation/cronie/index.html_gzip_fb9444987a6315f92972f54af560c13a19437a144a5c1e8a311ffa5283d814ad" +path = "static-publisher/static-content/file2876.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/automation/olivetin/index.html_5ac9dd9fffd35cf375aba2f6960589533c2dc2c889855e88431a11e27961f967" +path = "../build/minified/site/pt/guides/automation/olivetin/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/automation/olivetin/index.html_br_406388425cddad80b2827014429378d53272b7e8fb133b4c63dedf33f275eb4e" +path = "static-publisher/static-content/file2877.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/automation/olivetin/index.html_gzip_94753131ecbf19b60c4f60210a0c230aa3386b0a9a8062329773b0ae2ccac9d6" +path = "static-publisher/static-content/file2877.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/automation/templates-automation-packer-vsphere/index.html_80e1f1d08c0d0670cb37d75103a0cc3b11e7202c87d0cf8c950301ee6fdf4ff8" +path = "../build/minified/site/pt/guides/automation/templates-automation-packer-vsphere/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/automation/templates-automation-packer-vsphere/index.html_br_3d9381bf8d218519716f1cd3fadd4da920b030a9d4b00b169adcb7c1d1f11b96" +path = "static-publisher/static-content/file2878.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/automation/templates-automation-packer-vsphere/index.html_gzip_96a82032644bbd3f5844c988efb1274fe40113b287991023ddaa7d497f814306" +path = "static-publisher/static-content/file2878.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/backup/mirroring_lsyncd/index.html_6871783011e4e4cba59a093ff137b17a530e79b9d1fc3b1fea1c6ff22ac0ed9a" +path = "../build/minified/site/pt/guides/backup/mirroring_lsyncd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/backup/mirroring_lsyncd/index.html_br_9c41c3eb1e9ebe35d33ba739d695153f431194a3da2d09230d40b2ed4f51f4cb" +path = "static-publisher/static-content/file2879.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/backup/mirroring_lsyncd/index.html_gzip_fa1a85de55cf3229fc5ca07ee3b41ee050be699e892535d7a43f7c3940b7de0a" +path = "static-publisher/static-content/file2879.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/backup/rsnapshot_backup/index.html_30ff1cb903269cf3d2eb34fdd1ff3b9de1c54bfe1c85da3bdcb54b7c9919d84c" +path = "../build/minified/site/pt/guides/backup/rsnapshot_backup/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/backup/rsnapshot_backup/index.html_br_b88a6e18bc0b9dbc600822c7b3c74f7a7b4d838dfb623de54aa6fbdaf40d540b" +path = "static-publisher/static-content/file2880.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/backup/rsnapshot_backup/index.html_gzip_2f6d89c27836a03d4ea123727da79b7a39a1c641b081a9a37fad04e20602a2b5" +path = "static-publisher/static-content/file2880.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/backup/rsync_ssh/index.html_c8f3e8ca2ff3472f31fe5cd354810d59837f193b1fc04b30a1e6f8bc0a9bce34" +path = "../build/minified/site/pt/guides/backup/rsync_ssh/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/backup/rsync_ssh/index.html_br_e24f6a5b4c32462a086272854c07b870769e4266aaa1bf566bf9296e0b4c57ea" +path = "static-publisher/static-content/file2881.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/backup/rsync_ssh/index.html_gzip_9411da320846c9d5a6af3abc2d8e87cc08b985d146bfa182524409161c2cfddf" +path = "static-publisher/static-content/file2881.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/cms/cloud_server_using_nextcloud/index.html_10b3bdc502eaeb3700a19c177050169284f8d6e646c93c89d3876a8b3d33e51a" +path = "../build/minified/site/pt/guides/cms/cloud_server_using_nextcloud/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/cms/cloud_server_using_nextcloud/index.html_br_cd7542e5b9f451b259ada516f52382320b77715b0c7ffed0885b58557115795a" +path = "static-publisher/static-content/file2882.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/cms/cloud_server_using_nextcloud/index.html_gzip_e1ac0640ac301e3f4033dd59cf1c7098f5f289ead5bd0566c127ca3e6b865193" +path = "static-publisher/static-content/file2882.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/cms/dokuwiki_server/index.html_bd601887c207c64d7b1f818b5312bb7dbfa35804a002b9df20ac88f981e769c5" +path = "../build/minified/site/pt/guides/cms/dokuwiki_server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/cms/dokuwiki_server/index.html_br_5bfbe31c88e967bf6d0a8de3da829129965c4a6631fed825d5b56aa9b89913c0" +path = "static-publisher/static-content/file2883.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/cms/dokuwiki_server/index.html_gzip_ca4128e902891d4f7897a66ffc55973980befffdc1617b02ea545c7df2476412" +path = "static-publisher/static-content/file2883.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/communications/asterisk_installation/index.html_65b5483a295c03b34e7960d8d42ebe101de3fca83d221694093f80e47d6c04fe" +path = "../build/minified/site/pt/guides/communications/asterisk_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/communications/asterisk_installation/index.html_br_aa3bdaff90248fbd401baf28ae9bc76b19d7c1512f9afd07407caf82ca7adc40" +path = "static-publisher/static-content/file2884.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/communications/asterisk_installation/index.html_gzip_e6c1bc383b8c688a72ebc0f1751d5935e1ab4e9371d7e02782dff99300de1476" +path = "static-publisher/static-content/file2884.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/containers/lxd_web_servers/index.html_74c95e1c74981e5222cb77204e76ec728fa3d8ab1d38baf974aa2be3ce904687" +path = "../build/minified/site/pt/guides/containers/lxd_web_servers/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/containers/lxd_web_servers/index.html_br_2178bee5816d2c0147e97f85f474ef2af1bbebc75b70b274c6dc70695f56502e" +path = "static-publisher/static-content/file2885.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/containers/lxd_web_servers/index.html_gzip_623e53e2625247a46fb232a2466ac09452593851e6a5a09a3efdd753d9edcf58" +path = "static-publisher/static-content/file2885.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/containers/podman-nextcloud/index.html_f3b54b97eceb10d6a3c43fc7869fcfcb41265a493df4bdcfca78ba84bd85d058" +path = "../build/minified/site/pt/guides/containers/podman-nextcloud/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/containers/podman-nextcloud/index.html_br_2cbe808cbaf55607e50f65de03c6eb8bd79af17c30ab444ebaed739b1cee9e1d" +path = "static-publisher/static-content/file2886.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/containers/podman-nextcloud/index.html_gzip_7db46a6d83ca966a9559d587979dd65f2c7c3b0c83ee4fadd0ef8bb7eb9fe850" +path = "static-publisher/static-content/file2886.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/containers/rancher_and_kubernetes/index.html_e2359e35f235081cef20fd48ac70fced8f9b7f77b807245541d1a53b17c6584c" +path = "../build/minified/site/pt/guides/containers/rancher_and_kubernetes/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/containers/rancher_and_kubernetes/index.html_br_a99ff39f88aa06f4cb7242de78f740e08aed6f8ed5e0b9ae1cec1d04d53c2c8c" +path = "static-publisher/static-content/file2887.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/containers/rancher_and_kubernetes/index.html_gzip_265c3f22ab80af68f80407b74d14b1d02dfbfd688565b7c579ec37a3f3fe4461" +path = "static-publisher/static-content/file2887.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/contribute/beginners/index.html_2b5f887e445a6c4c2c60ce7825d23c32645888bce66f5bd3d892b3746227ea32" +path = "../build/minified/site/pt/guides/contribute/beginners/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/contribute/beginners/index.html_br_4371cace8bb14696dc75efc62c6ec9014c008a0c5335dfcf05b847085a4a5f57" +path = "static-publisher/static-content/file2888.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/contribute/beginners/index.html_gzip_0b5b2be8792d336d59a898ada67840a28b04b784c99402fed444f73e89efc17b" +path = "static-publisher/static-content/file2888.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/contribute/createnew/index.html_00e232792292f6506c80bd811fdd390f5087c4a5f20c8e0c8f6de6dbda47eaf8" +path = "../build/minified/site/pt/guides/contribute/createnew/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/contribute/createnew/index.html_br_a1b8f612523b839f96db326623be672701809456fa3d4a94869a511bf82c0f0c" +path = "static-publisher/static-content/file2889.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/contribute/createnew/index.html_gzip_0b40acbbff89aa01a8be7422498b831455c7f4638bcfb92242a13cb3b91f0e70" +path = "static-publisher/static-content/file2889.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/contribute/index.html_43834f818bf3e0549fc255cd300f81e12ab7946ac06f35493720d7f436b5b027" +path = "../build/minified/site/pt/guides/contribute/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/contribute/index.html_br_f04b19fc5b73e68267b864fd57d97cfb1dcd3ec8046dc4e82882caee0831b08d" +path = "static-publisher/static-content/file2890.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/contribute/index.html_gzip_915f343ab637aac589cd26241f2daf52804ea5c57ff42e21fc71c47979acd34f" +path = "static-publisher/static-content/file2890.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/contribute/localdocs/index.html_ce9e5fefc5f1fb5ebbabc590aeb6a63a90365eb64f7692006ca6f8e5862505b4" +path = "../build/minified/site/pt/guides/contribute/localdocs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/contribute/localdocs/index.html_br_f5d4df9c9028042dbffb1b4bc43b4dcbc645d3a14ca7697ec879fef24fdc923c" +path = "static-publisher/static-content/file2891.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/contribute/localdocs/index.html_gzip_a11ebdfa37933fbb931818c4d1586d45a965ce0fd4877ed2b81482fdbcae9c68" +path = "static-publisher/static-content/file2891.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/contribute/localdocs/local_docs/index.html_fa54635d52e716f1d975ed76f9b2203abf9b4c0ac401d8982b24c51b3dccbaa5" +path = "../build/minified/site/pt/guides/contribute/localdocs/local_docs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/contribute/localdocs/local_docs/index.html_br_14d68f07891789c4dd3d5a4fef1636579c42d8bdf9c8b7aff7684bfd1ab582f2" +path = "static-publisher/static-content/file2892.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/contribute/localdocs/local_docs/index.html_gzip_cf46f1bffb9214fde82db0a201ee620a6e13501d339edd577557997f162669a4" +path = "static-publisher/static-content/file2892.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/contribute/localdocs/mkdocs_lsyncd/index.html_a907c8fa5d8a54fd74b0f298776bc56014d4f36570b653d3fc09b43f07bdba44" +path = "../build/minified/site/pt/guides/contribute/localdocs/mkdocs_lsyncd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/contribute/localdocs/mkdocs_lsyncd/index.html_br_a83928262c00fc4347377d189c9826d0d1c5b47cac11922468b6ca0e07cbab87" +path = "static-publisher/static-content/file2893.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/contribute/localdocs/mkdocs_lsyncd/index.html_gzip_cf19e9d6272da7921467ced56f3e322b1631b934dd2b38eb443847e63491619a" +path = "static-publisher/static-content/file2893.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/contribute/localdocs/mkdocs_venv/index.html_971906889e0f2b8b32a1eaa56ee49c7a0ca8f4def3e25734861565bfb15bdc8b" +path = "../build/minified/site/pt/guides/contribute/localdocs/mkdocs_venv/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/contribute/localdocs/mkdocs_venv/index.html_br_c7918d9afa97072b8b7e6df47f39ab2fd76240b9611cf5853014af2bed702779" +path = "static-publisher/static-content/file2894.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/contribute/localdocs/mkdocs_venv/index.html_gzip_d19d843e4b5bdb8dc3d3636ed2ccaceee8f3a9e7c7963562ae26db7c19b590f4" +path = "static-publisher/static-content/file2894.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/contribute/localdocs/rockydocs_web_dev/index.html_a4723110cfc71c3ff4fbc49d74025c20628125666e65b95537f9f16f6fbe0f1c" +path = "../build/minified/site/pt/guides/contribute/localdocs/rockydocs_web_dev/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/contribute/localdocs/rockydocs_web_dev/index.html_br_332e7dbce5c4e676591ead9ee3abb81b668a74a032d0415b75d19262dc18664b" +path = "static-publisher/static-content/file2895.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/contribute/localdocs/rockydocs_web_dev/index.html_gzip_09d489d8c88114e15d55e79fd4599c264bf2dc944641e73212f07bcd71959a09" +path = "static-publisher/static-content/file2895.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/contribute/localdocs/rockydocs_webdev_v2/index.html_da96349ca5c68469b49f3f02309905f34565422b5c030f5e2108d7dc26a5f6f5" +path = "../build/minified/site/pt/guides/contribute/localdocs/rockydocs_webdev_v2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/contribute/localdocs/rockydocs_webdev_v2/index.html_br_f452de41118f447c095fd95f72a0ef716c23598b1ddbf8ec5925fde6a55a0c24" +path = "static-publisher/static-content/file2896.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/contribute/localdocs/rockydocs_webdev_v2/index.html_gzip_25ad1801bbe0db2ce23949d575b673592a7ad8d980b699817510860d7b170fbd" +path = "static-publisher/static-content/file2896.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/contribute/navigation/index.html_c677d0b3c74b5fe4fc9264a8d38f22a043a7d39589df900ca380c7ca99b6bfb6" +path = "../build/minified/site/pt/guides/contribute/navigation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/contribute/navigation/index.html_br_15021405d438a439fdbeefd548de9eb51a3882a75129647137e7d3a6f8915777" +path = "static-publisher/static-content/file2897.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/contribute/navigation/index.html_gzip_0658cb2594aa68d1becea9f21ec34f91e66493e56fd47253d3cfc09412140b6b" +path = "static-publisher/static-content/file2897.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/contribute/rockydocs_formatting/index.html_0fb84785ea75867425b97f6cd5c8d4389d3abb039a2b1c229d79580b14b0c74f" +path = "../build/minified/site/pt/guides/contribute/rockydocs_formatting/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/contribute/rockydocs_formatting/index.html_br_1f96ba3a9e45ebe75c2ee430d251fc06ee9cbf9e409a9bbbb7d9ae83d073d140" +path = "static-publisher/static-content/file2898.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/contribute/rockydocs_formatting/index.html_gzip_f71088b3641ab53045c905625dc10c95be3176806e324c090517c2e4d8d7901c" +path = "static-publisher/static-content/file2898.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/contribute/style_guide/index.html_189fdf0357b4d50ab7e5096a8c1409c7a7e9d0c95747416712057fe463027217" +path = "../build/minified/site/pt/guides/contribute/style_guide/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/contribute/style_guide/index.html_br_6a4a5d4df2ba399e748c2b9349ce87382d7fa5643e17f77398ec039b6d072568" +path = "static-publisher/static-content/file2899.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/contribute/style_guide/index.html_gzip_bf39dc6ad6875ee457db09ff0e1b19a4bd83e9333d743fdf2afb279f7ee9240c" +path = "static-publisher/static-content/file2899.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/custom-linux-kernel/index.html_286b6050aba576d12fee2aacd4421d87d85ee9ab40505b569563a8e4527fc862" +path = "../build/minified/site/pt/guides/custom-linux-kernel/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/custom-linux-kernel/index.html_br_fc9703e040569c253c214153a061ff59e133afd0e4374b242c5f1acf2467afd6" +path = "static-publisher/static-content/file2900.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/custom-linux-kernel/index.html_gzip_38487de8a9e13cdd97132874f235a1b5ae269ff8d6586e01c683207957d79401" +path = "static-publisher/static-content/file2900.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/database/database_mariadb-server/index.html_6d15b199607483945845d9e53f95d0b7c2f342db0d0842e3ab69d77f3bfabde3" +path = "../build/minified/site/pt/guides/database/database_mariadb-server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/database/database_mariadb-server/index.html_br_64090af1c99db83a990cb717bd36dc71b6094aa65efe5595c6745d277354ca6d" +path = "static-publisher/static-content/file2901.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/database/database_mariadb-server/index.html_gzip_b6974c61fadd9275a469753423bfe8aab70a37f06d3bffa8bd5a98caa439c421" +path = "static-publisher/static-content/file2901.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/desktop/kde_installation/index.html_a5fb5b2c8d095e280207ced8c9ab79ef712f694835a23f81303007674fb229bb" +path = "../build/minified/site/pt/guides/desktop/kde_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/desktop/kde_installation/index.html_br_94521cd3f8ca17c3893491b6882b13597c770c6562fda02b3541882737db786d" +path = "static-publisher/static-content/file2902.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/desktop/kde_installation/index.html_gzip_95efe366a18ef9374ed2cb73b9ed85f98a3e78b7c1776ffb43f93360ffab2855" +path = "static-publisher/static-content/file2902.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/desktop/mate_installation/index.html_9c1db6c918afd168e37cd3415a0ccb2ebf2ab5bbd80b715c1e53423aec495a43" +path = "../build/minified/site/pt/guides/desktop/mate_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/desktop/mate_installation/index.html_br_87b602d0d138dee9e9539deada12e80ca7c1fd3dd1a1aa961ce1e826fbc4a7f5" +path = "static-publisher/static-content/file2903.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/desktop/mate_installation/index.html_gzip_d7f56c926a17b4e31ecdc92320e6302be7c738a2814c6973dcdaec128439bdaf" +path = "static-publisher/static-content/file2903.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/desktop/xfce_installation/index.html_74396ce572ec0c35140a60c7bbd7eda3f2eb0b60117621729f6207b4cacec589" +path = "../build/minified/site/pt/guides/desktop/xfce_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/desktop/xfce_installation/index.html_br_0d62fffc5389d233505736f464824f512ed0f7b3c3ab9762604518e8a0a7ba9d" +path = "static-publisher/static-content/file2904.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/desktop/xfce_installation/index.html_gzip_64d2b088122f578b63faafcd819d40fcb22bf567c482f08de0d64704c9eff6fa" +path = "static-publisher/static-content/file2904.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/dns/private_dns_server_using_bind/index.html_10a4dab28f241e0a9fefd2a5adf6c4a59c12aa17d2f2dbd737e87d7126a99c3b" +path = "../build/minified/site/pt/guides/dns/private_dns_server_using_bind/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/dns/private_dns_server_using_bind/index.html_br_85357a8238147f9419fef64f2a50920a7af01bc0f304dc93dc8b819156f839b1" +path = "static-publisher/static-content/file2905.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/dns/private_dns_server_using_bind/index.html_gzip_49d9be35af0a7ba65d02a318bd2c962ae2dbb572bebb6dc4040d014beaa88861" +path = "static-publisher/static-content/file2905.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/editors/micro/index.html_07f41c756d0b5e70b3a7671b9cfd56defe82cd91dd0ed648f3fe2b5b356e15f6" +path = "../build/minified/site/pt/guides/editors/micro/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/editors/micro/index.html_br_35f2049febadb7300d9e9451998b2682c54622fcc2dd02996d579e3147e0b83c" +path = "static-publisher/static-content/file2906.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/editors/micro/index.html_gzip_c4a41e10f31e324a198a23f759198f8262c2ef4f012281e8f6cc15e0d389e8ee" +path = "static-publisher/static-content/file2906.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/email/01-email-system/index.html_731652a8ff9bd0402426ec59db45cbb5fc9c2d5f4fab10c49f3d132a47c0dda6" +path = "../build/minified/site/pt/guides/email/01-email-system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/email/01-email-system/index.html_br_e842691ef4cd654c9a44b321e56ba08e1c60a2afb3f1d5ddbffcd241ab4dfbc3" +path = "static-publisher/static-content/file2907.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/email/01-email-system/index.html_gzip_9ac8e639c5d0c3160f9eafc0c0ae13db17c13a78189a51136ad2d13626b57df5" +path = "static-publisher/static-content/file2907.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/email/02-basic-email-system/index.html_538f8af390ddd63442d083ed0ba47001428b02a87743e6635f0b021627c682ef" +path = "../build/minified/site/pt/guides/email/02-basic-email-system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/email/02-basic-email-system/index.html_br_cf70aaf229259ae2e784246fb976ce3f73b01801ee22e2503760c9873438d986" +path = "static-publisher/static-content/file2908.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/email/02-basic-email-system/index.html_gzip_76afe510039c004627d85cad7987652870765d6063888d530df3ccbfcb6ca89e" +path = "static-publisher/static-content/file2908.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/email/postfix_reporting/index.html_70b588fbfa105445f28429d8a8d3ae0420637896117afff0571d8e753912db4f" +path = "../build/minified/site/pt/guides/email/postfix_reporting/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/email/postfix_reporting/index.html_br_c80bbed4aaa406a75a12c13e2109fc2bd50e8f78325ee7939393eadd4895c77f" +path = "static-publisher/static-content/file2909.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/email/postfix_reporting/index.html_gzip_9a70a0335348d6bb2c41d6e1615156fd3ad5a46e7488b9a90c501de309184104" +path = "static-publisher/static-content/file2909.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/file_sharing/glusterfs/index.html_fa094bf183df723de4f526bcdfefb34f62284757e4bb7d29308585d6507c5e3c" +path = "../build/minified/site/pt/guides/file_sharing/glusterfs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/file_sharing/glusterfs/index.html_br_57be4a7f73a4c4631da2c015e2394194a58f506747a494ca6c34ce1df57d484e" +path = "static-publisher/static-content/file2910.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/file_sharing/glusterfs/index.html_gzip_257f868444ff1c0f2c02118bf229ff9389ae0499b298981b5b19ce18efb117a9" +path = "static-publisher/static-content/file2910.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/file_sharing/nfsserver/index.html_0f768c0981271fb18d4a772874857c3e27e4a258c55a2029d993ce560d3d140c" +path = "../build/minified/site/pt/guides/file_sharing/nfsserver/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/file_sharing/nfsserver/index.html_br_90941d5b07292500cadcbf732ff16dc4242d5c7de730e4aa27f4266ec7715b0f" +path = "static-publisher/static-content/file2911.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/file_sharing/nfsserver/index.html_gzip_091747b18872c36a41dfee87f93605a4d582c17fe648c9095bb9cc7a491bf464" +path = "static-publisher/static-content/file2911.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/file_sharing/secure_ftp_server_vsftpd/index.html_82eabe79b7ac4557f459c009f452f8888c79ebe081673ad3a9f59e92e9227d71" +path = "../build/minified/site/pt/guides/file_sharing/secure_ftp_server_vsftpd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/file_sharing/secure_ftp_server_vsftpd/index.html_br_3ef32433c30f9bc30335d673ee74a7d85947d5eeb30743938c69895cfc918d20" +path = "static-publisher/static-content/file2912.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/file_sharing/secure_ftp_server_vsftpd/index.html_gzip_f61f752953a4cee46a3d21801f887bd98c22b3f13559c33c48e7dae497c589c4" +path = "static-publisher/static-content/file2912.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/file_sharing/sftp/index.html_7078a1f7dadf8d28aacb4906f1e29b5b7682fec71142d71e53a9f2ddb5256a61" +path = "../build/minified/site/pt/guides/file_sharing/sftp/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/file_sharing/sftp/index.html_br_472c397ccf9a136dc7261e69f2f6f5d1fab8e08a98d1d65d12875749685be585" +path = "static-publisher/static-content/file2913.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/file_sharing/sftp/index.html_gzip_dcb1be7da2806f6022b10d0bcaa599c21526171740500893ee08f5dfe81da55e" +path = "static-publisher/static-content/file2913.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/index.html_deac08f16aedd29101d787a7f47bcddd32369b35592352a9d90450415282926e" +path = "../build/minified/site/pt/guides/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/index.html_br_40d0deec8be5ca5003d2ce9c075336731622507e5a70bf9589f8955b43533240" +path = "static-publisher/static-content/file2914.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/index.html_gzip_b38de1345277e02548b696b4214f038eea7c345537163fb20f0f1b5b1c9695f5" +path = "static-publisher/static-content/file2914.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/installation/index.html_ab2d5c910dbe7524269ae5677f7362ae6e527dcd94b799836277c261e3d264a6" +path = "../build/minified/site/pt/guides/installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/installation/index.html_br_7884186976e5632a38ebd3ce828587e9971f8a43b8edca7080d9ea9fdf5a3dcc" +path = "static-publisher/static-content/file2915.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/installation/index.html_gzip_ebac9ff16a1be4d7835f0d5643aabe08773b76fff524e0ee5468b8fd9bd66023" +path = "static-publisher/static-content/file2915.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/interoperability/import_rocky_to_wsl/index.html_16230380b6c27f766e38029d592de6de5d47731cd07a566eb3b738a85a26db78" +path = "../build/minified/site/pt/guides/interoperability/import_rocky_to_wsl/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/interoperability/import_rocky_to_wsl/index.html_br_f9187970ae9c24e6ac1f7f89e302b2b3c17c3019aa8241956d2994029c85077b" +path = "static-publisher/static-content/file2916.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/interoperability/import_rocky_to_wsl/index.html_gzip_3a714fa45b6504458c9b880b9a755f100e0050c34f62734bd0f334e8f49585c8" +path = "static-publisher/static-content/file2916.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/migrate2rocky/index.html_3bdf0fc28344fd8a0ea4c397ec1110e79b747129911a77e3d604bb942c63ee22" +path = "../build/minified/site/pt/guides/migrate2rocky/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/migrate2rocky/index.html_br_62b8ed398302aefa37bf576c46551655e3471143622213acf478794949b58b7a" +path = "static-publisher/static-content/file2917.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/migrate2rocky/index.html_gzip_86856c34c92ee4ddbf27c0bb633608859bdd0a396ce93bd0202fb3ba8dd02cda" +path = "static-publisher/static-content/file2917.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/mirror_management/add_mirror_manager/index.html_59621626f5b86d69deb29b74c0656bf2daf7999b854ba90f582a7b7202511ef0" +path = "../build/minified/site/pt/guides/mirror_management/add_mirror_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/mirror_management/add_mirror_manager/index.html_br_264a62585d0cac6b1d5246d046db4fc0d8212f34c2a5dc6a5e936a1c9f7dd695" +path = "static-publisher/static-content/file2918.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/mirror_management/add_mirror_manager/index.html_gzip_577ed491e8715107ea34cdf94048680030aeda1c703ca98c5d4c68b58c9c2d78" +path = "static-publisher/static-content/file2918.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/network/basic_network_configuration/index.html_f9ca1a5e52a5190f655476f039f28965f2a12a4d7dc9ad7565d2e8bdcc6e746b" +path = "../build/minified/site/pt/guides/network/basic_network_configuration/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/network/basic_network_configuration/index.html_br_6576b6058bfcb5ca8e489b21a2b375c3d9aad09b2e9afc40a2141fb88d00e448" +path = "static-publisher/static-content/file2919.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/network/basic_network_configuration/index.html_gzip_3c88beedbe9977abbfe0ff4aecd464bbe03ad6177fd942acae3d66e8fd6840ae" +path = "static-publisher/static-content/file2919.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/network/librenms_monitoring_server/index.html_b6ceb32e6d5c50c015cdb086419064f597e0ba36e3dd27fc22e642d6d7bce282" +path = "../build/minified/site/pt/guides/network/librenms_monitoring_server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/network/librenms_monitoring_server/index.html_br_36700f0603f0113142403a7aff83f4eafa873a14a7c4036bbc7973aa1791e024" +path = "static-publisher/static-content/file2920.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/network/librenms_monitoring_server/index.html_gzip_7a01737a535a23e49cd74d3daadd86ec9ab7d2eb3341ea2dba2690278982801e" +path = "static-publisher/static-content/file2920.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/package_management/dnf_package_manager/index.html_64eeb90fa14d07b52c347552502e70b9c623e03a464be787eeb2f99db443c77b" +path = "../build/minified/site/pt/guides/package_management/dnf_package_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/package_management/dnf_package_manager/index.html_br_cfb46816230df7893fe10e1364ee0e41abd156fc387fbd9c81de970a4410fd24" +path = "static-publisher/static-content/file2921.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/package_management/dnf_package_manager/index.html_gzip_adf775cc260a5442a13f0c3fe0a0e9f97a36e70d382e590decdabae039a979b0" +path = "static-publisher/static-content/file2921.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/package_management/index.html_21d4fefbb6447f483c89b5eb89fbcada3669c865fdf1a478764c44914973d7bf" +path = "../build/minified/site/pt/guides/package_management/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/package_management/index.html_br_23b21f875adbd90043d8915c2cfcda1fc7fa2dbd1a9ab369e51f2405b5ac88db" +path = "static-publisher/static-content/file2922.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/package_management/index.html_gzip_7e6180d424543d0f5ad6e4e36a0b65ee5ec3d6ee8bff7d863b7e117c4e645705" +path = "static-publisher/static-content/file2922.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/package_management/package_build_troubleshooting/index.html_cc7c8b28656a473400830126abfb81fee9cea361615cb52266f91fe091a0c1e3" +path = "../build/minified/site/pt/guides/package_management/package_build_troubleshooting/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/package_management/package_build_troubleshooting/index.html_br_1f8a8c643bc7085b344a39f74a9b88dc1db84611956e99785808406446c24695" +path = "static-publisher/static-content/file2923.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/package_management/package_build_troubleshooting/index.html_gzip_60f65262ab41b541c0e3d230c60fc00ff8324150563e04e9424ff7faa17454c6" +path = "static-publisher/static-content/file2923.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/package_management/package_debranding/index.html_1fc618b05e1941a68388c0afdf63b4ca44f6313158cb3cda9c2edfe0a4f415a5" +path = "../build/minified/site/pt/guides/package_management/package_debranding/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/package_management/package_debranding/index.html_br_3d6929166f8544eef4f4d4fa8e714c48836d3c726cd5516a1ce56f5464e4ec4e" +path = "static-publisher/static-content/file2924.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/package_management/package_debranding/index.html_gzip_a48cfe5def1f9be9b4ab0481223e4aa75b0a5d38f8b1606bbd4dd90f7b1b9625" +path = "static-publisher/static-content/file2924.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/package_management/package_dev_start/index.html_891c532b62ed4e35c1bce5654afc540cd52408ac7cf067f486b36469196ac8b8" +path = "../build/minified/site/pt/guides/package_management/package_dev_start/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/package_management/package_dev_start/index.html_br_a559a618d985f3c688eaa1a03a997f5d5080e5d20f7e4f1216e80c643350d305" +path = "static-publisher/static-content/file2925.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/package_management/package_dev_start/index.html_gzip_f8b98a600c6801d995893bbb915e9eab4b1e03b93640da08cd2930aca424e520" +path = "static-publisher/static-content/file2925.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/package_management/package_signing/index.html_9f3696b6a9934b60c5b1179bee05d10cd52be2318358ba118e1a964bde2ca364" +path = "../build/minified/site/pt/guides/package_management/package_signing/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/package_management/package_signing/index.html_br_2e9c96dc4ff80d4ffc77d139794b2cc2e1e65f508c5566f75b66d0bd73668487" +path = "static-publisher/static-content/file2926.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/package_management/package_signing/index.html_gzip_85210e7b05cef6e252c4bac9f64a2b597f942d1d9ca3ec23bee05b0f0d49bbc0" +path = "static-publisher/static-content/file2926.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/proxies/haproxy_apache_lxd/index.html_9ff421cfc860eb77ae9f00cf820dca579c8da9f25f205217b84d7c1d4c725b5f" +path = "../build/minified/site/pt/guides/proxies/haproxy_apache_lxd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/proxies/haproxy_apache_lxd/index.html_br_49bb526dd8b10ffed01c034332a9b84ee5cbd47bf69bf7c7947b6c925bfaf6a9" +path = "static-publisher/static-content/file2927.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/proxies/haproxy_apache_lxd/index.html_gzip_ee44e27312d5fc26ef639bf1acd63369f3bd31658073e42e7d7bf110d5e11680" +path = "static-publisher/static-content/file2927.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/proxies/pound/index.html_e3443a669b6b527ce2402a94fd7e8d464ad0d2a53d9a12d1d34e761015d117c8" +path = "../build/minified/site/pt/guides/proxies/pound/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/proxies/pound/index.html_br_3b7f0aaf900ba2d018c59bb9038801751cc63441c681300f42758f03a4fdfe61" +path = "static-publisher/static-content/file2928.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/proxies/pound/index.html_gzip_196e5a1465b0b1eefa427af1394ffb5817cf0130a5e293749756008f261431be" +path = "static-publisher/static-content/file2928.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/proxies/tor_relay/index.html_b8576d521b876b49365cb747135707340cb4b24cbbda6868eaac511280ead7cc" +path = "../build/minified/site/pt/guides/proxies/tor_relay/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/proxies/tor_relay/index.html_br_142dfd36eb3ce0ea714420fbde5ddf120fd53d5a8f3d73d933b4593b4652a665" +path = "static-publisher/static-content/file2929.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/proxies/tor_relay/index.html_gzip_921b53f29bbee0533a5e6b44a65f84c2717c3369fa74834e86f824bd8f1515a8" +path = "static-publisher/static-content/file2929.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/security/authentication/active_directory_authentication/index.html_2fbccbad469b0a9c8d159088a79ae34a0224e6649593b8361bcc3528a790f389" +path = "../build/minified/site/pt/guides/security/authentication/active_directory_authentication/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/security/authentication/active_directory_authentication/index.html_br_627971072c3d4bcbd07321ed79fbca5324638af89435fd65b4dbb724e33e738e" +path = "static-publisher/static-content/file2930.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/security/authentication/active_directory_authentication/index.html_gzip_eea74a213eff8a0f998116ca6d1f59ad092f866e436728f3e1486c96c344db65" +path = "static-publisher/static-content/file2930.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/security/dnf_automatic/index.html_c37b882e9a6a5f01092d0045ba96dfea65cb5ae0c0cbd43b4804174e93129c45" +path = "../build/minified/site/pt/guides/security/dnf_automatic/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/security/dnf_automatic/index.html_br_fb43a3ae62e90d7c150a44316396c0d0a387c1a5a4a333f5cc3b349933fb5ca0" +path = "static-publisher/static-content/file2931.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/security/dnf_automatic/index.html_gzip_228fb2a388a2a1eee665be0edda4f99253705c153b1ff8b21bdc5ac572edff42" +path = "static-publisher/static-content/file2931.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/security/enabling_iptables_firewall/index.html_354c4923d49f3b8045b6db2d3827eb3403cadc270be52a03c48f333e8762d9b6" +path = "../build/minified/site/pt/guides/security/enabling_iptables_firewall/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/security/enabling_iptables_firewall/index.html_br_8288c75eb7fe0bda4209439f9429e20f050c78f621593a673a2d470d48222dd9" +path = "static-publisher/static-content/file2932.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/security/enabling_iptables_firewall/index.html_gzip_06227eeb2c6509cd6b4634029beed84e7a11a33dad9610348ddb058752a1f5aa" +path = "static-publisher/static-content/file2932.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/security/firewalld/index.html_4a38a37a1c8ad0828a60a6400c272091865935350b394ada03e1b24de647f7d0" +path = "../build/minified/site/pt/guides/security/firewalld/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/security/firewalld/index.html_br_884cd4620cdb67ca4ea8d4f98b4673711c6014a3deb962d0163f86b9544e3515" +path = "static-publisher/static-content/file2933.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/security/firewalld/index.html_gzip_5186774a523da5294d03915749a8cb792fa5493c94e5d442a84064552e3b6c25" +path = "static-publisher/static-content/file2933.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/security/firewalld-beginners/index.html_a3eb2ba474d921866461b6abb352625f59585393210c0f947e85e3b54be1a309" +path = "../build/minified/site/pt/guides/security/firewalld-beginners/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/security/firewalld-beginners/index.html_br_ffe6f1da0ce0443dd77a3b1d718bd7c191cbb41e140afb53161435f82ff5d06d" +path = "static-publisher/static-content/file2934.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/security/firewalld-beginners/index.html_gzip_d83bde28239d0a627ed2b616f8b415834890741012980b610ab08ca5269741b4" +path = "static-publisher/static-content/file2934.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/security/generating_ssl_keys_lets_encrypt/index.html_3ce39c7a56f1ae0d601931188f5a7c8d2e4b9ca90b5a614c814cc1679f617e67" +path = "../build/minified/site/pt/guides/security/generating_ssl_keys_lets_encrypt/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/security/generating_ssl_keys_lets_encrypt/index.html_br_7035d498f5da8307ad8b01f4b4ecdea653ab8523c1d8799c4bad402de702cdf5" +path = "static-publisher/static-content/file2935.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/security/generating_ssl_keys_lets_encrypt/index.html_gzip_48260bc1d835ed378630fb55f92b50a05b79f0c2a6dd4d338574e5002b5a0080" +path = "static-publisher/static-content/file2935.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/security/learning_selinux/index.html_9ff8087dae79f8eb8871e2adfd4749c39d2330ccb144e63c9f8ac4661987c2e2" +path = "../build/minified/site/pt/guides/security/learning_selinux/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/security/learning_selinux/index.html_br_bbf02ee2f9097cbdb45f2807c989aa034ee3dfb1f2fcd953658b72b5da37bf1d" +path = "static-publisher/static-content/file2936.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/security/learning_selinux/index.html_gzip_2fa97943c59de6db977f8cb33516bc32a131bb07d93e82ed4e42c5bd5eeb1572" +path = "static-publisher/static-content/file2936.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/security/pam/index.html_342cdf02549bb7944d8a110089b5570f194268f1048ef7dae3e01b2c2349dab4" +path = "../build/minified/site/pt/guides/security/pam/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/security/pam/index.html_br_7c66ab01c5008c5e0d5c01a9136dd881800257889d39286422fbed7fef72d620" +path = "static-publisher/static-content/file2937.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/security/pam/index.html_gzip_54d8489c46c9afd64feb13cb8dd2931247b783657bce46be569f65f40998e911" +path = "static-publisher/static-content/file2937.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/security/ssh_public_private_keys/index.html_4c96726b80d873021c67efa4c4a5573fdf6078ae2782ff1ab334a9937b45f76b" +path = "../build/minified/site/pt/guides/security/ssh_public_private_keys/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/security/ssh_public_private_keys/index.html_br_c412063c735af86dda14b084189b9a398130641f3446e1815da1b1c543c71e54" +path = "static-publisher/static-content/file2938.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/security/ssh_public_private_keys/index.html_gzip_141e42ac936b0d95800a89d291670fec43dccd39cbc19268c06d62bf42012433" +path = "static-publisher/static-content/file2938.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/security/ssl_keys_https/index.html_71957ce47e9b7861e32c6e8bb356fa828cefd73ef3561969fce8e0644010b0bc" +path = "../build/minified/site/pt/guides/security/ssl_keys_https/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/security/ssl_keys_https/index.html_br_0b68c04a965c3ed8b63e9fc0f73a7074bc036a10f85c8598aca980168b131633" +path = "static-publisher/static-content/file2939.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/security/ssl_keys_https/index.html_gzip_083c8ee72ddd7bdeeb1d8c12dd20fa7845c9ed8a12e27f57dee27dcf23c27ced" +path = "static-publisher/static-content/file2939.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/security/tailscale_vpn/index.html_85b1a84e377408d999b0d13f593da1b6d5e89b04741e93a9ecb8a54e830782fb" +path = "../build/minified/site/pt/guides/security/tailscale_vpn/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/security/tailscale_vpn/index.html_br_c752c62eefe3246566e8e4110b3fc3759e550a38bab826bb392209d1fda4700d" +path = "static-publisher/static-content/file2940.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/security/tailscale_vpn/index.html_gzip_ba79a898bc513da3755776841aed6c18b95f4a4ddd23e695fb9d08bb27d0e319" +path = "static-publisher/static-content/file2940.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/virtualization/cockpit-machines/index.html_35101ea28ed8d54d24da44ddfd8817901578c4b3cc14ec096b8691294e46478e" +path = "../build/minified/site/pt/guides/virtualization/cockpit-machines/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/virtualization/cockpit-machines/index.html_br_f23d378ed178a5ae8e53df50154e480ed444ee07c3b2c0136e27df1e68b433c2" +path = "static-publisher/static-content/file2941.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/virtualization/cockpit-machines/index.html_gzip_8266c76e0f4eac37110baeae6e4c869a16e0606fd9bd8247aceafc884ad9e8e9" +path = "static-publisher/static-content/file2941.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/virtualization/vbox-rocky/index.html_0e5d125107fe19125a957d17e96e83539144e4137c248029094da7e0b39329a8" +path = "../build/minified/site/pt/guides/virtualization/vbox-rocky/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/virtualization/vbox-rocky/index.html_br_0ec1602db230676708d2349164518de0c0b8af036fd9dbda7f50ec45927dc1c1" +path = "static-publisher/static-content/file2942.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/virtualization/vbox-rocky/index.html_gzip_faba2d99ae154cd7b4e4a015c53f6d98dfe2f75131936982e0e3c3bb0318543a" +path = "static-publisher/static-content/file2942.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/virtualization/vmware_tools/index.html_2a75ac5a965fb2c997846ec8dd74ad01e4d87fb8fc39d859ff7b0180645206d0" +path = "../build/minified/site/pt/guides/virtualization/vmware_tools/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/virtualization/vmware_tools/index.html_br_a57b6d724b9d59b8e9a6b61704b3bfa8e1b8b96b1bbf62ab701c2a35c502eb06" +path = "static-publisher/static-content/file2943.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/virtualization/vmware_tools/index.html_gzip_99686dffd277b318b0720b363e761c42a2c21a7e667ab0f05164e50d90865fb7" +path = "static-publisher/static-content/file2943.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/web/apache-sites-enabled/index.html_7adf75d785c5087502c66185c0f77ab60ad1d7dc344601ce2db2d85957669818" +path = "../build/minified/site/pt/guides/web/apache-sites-enabled/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/web/apache-sites-enabled/index.html_br_da8434485fa218d7956cd8393c97a7477f2ddd8b71dad174ae0e9c9e9844a5e8" +path = "static-publisher/static-content/file2944.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/web/apache-sites-enabled/index.html_gzip_99998e26d09a2528c5894fd68cf78e21c371991ac7bb203e9722c9145aef0553" +path = "static-publisher/static-content/file2944.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/web/apache_hardened_webserver/index.html_6c1ca4b66c33f733a0f9159290b6ea683fe61326acc8240cabcd2ac81b29605b" +path = "../build/minified/site/pt/guides/web/apache_hardened_webserver/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/web/apache_hardened_webserver/index.html_br_81eda8d2f8a3aa301f231bfa731e44a44ec3105afcce03ca9a13144b4b9a6bd1" +path = "static-publisher/static-content/file2945.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/web/apache_hardened_webserver/index.html_gzip_3241af0234b76c7a2d03ab9892aca99d59f0ca663f46252710f674be0126ec9e" +path = "static-publisher/static-content/file2945.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/web/apache_hardened_webserver/modsecurity/index.html_1e8cca5a806e3bbb46589040a0452813cca31552cc2563f7645797ec95f8145b" +path = "../build/minified/site/pt/guides/web/apache_hardened_webserver/modsecurity/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/web/apache_hardened_webserver/modsecurity/index.html_br_8e22a1bd0903817ebf13803ddab7870eec83c2f256b8ee6e0832a109f9a731b2" +path = "static-publisher/static-content/file2946.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/web/apache_hardened_webserver/modsecurity/index.html_gzip_1da40240be58f09c9bded231419f44b5b6fac05c38b89462b30e2b5adc22f4b3" +path = "static-publisher/static-content/file2946.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/web/apache_hardened_webserver/ossec-hids/index.html_11fbfa322415bbe3906fb08b1d6f5394ce04f5f81de2f9594c68d74d8542760c" +path = "../build/minified/site/pt/guides/web/apache_hardened_webserver/ossec-hids/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/web/apache_hardened_webserver/ossec-hids/index.html_br_068f13c7e94ee68ab535e0fbb9878637b00fd9b34529c97e906c69570556cb5b" +path = "static-publisher/static-content/file2947.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/web/apache_hardened_webserver/ossec-hids/index.html_gzip_4dffe758e940a6001c4e71d5f1708ba0fd70868969900b5f735faa7c62736305" +path = "static-publisher/static-content/file2947.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/web/apache_hardened_webserver/rkhunter/index.html_618ccbde00029a609eadcb5e93afa36524828eee4ac40dc0b72e95eaae6f5a12" +path = "../build/minified/site/pt/guides/web/apache_hardened_webserver/rkhunter/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/web/apache_hardened_webserver/rkhunter/index.html_br_beb47abf8c3403b8dd4dbe40ba3a42ef5fdd1bd6a36eff83a0c9ba98892edd13" +path = "static-publisher/static-content/file2948.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/web/apache_hardened_webserver/rkhunter/index.html_gzip_2036e64487bcc8f433bd454c92d565d55d7328e49c286a972181e5a66fb2a7b7" +path = "static-publisher/static-content/file2948.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/web/caddy/index.html_d013ee8d2b58b8b2a65e6ffa0a92953a333227659f398f09e042d5f0fc4d8e9b" +path = "../build/minified/site/pt/guides/web/caddy/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/web/caddy/index.html_br_9fe497339d49683d5dc355046d930695d7c5a615b7bd0fb4013058c4f6291766" +path = "static-publisher/static-content/file2949.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/web/caddy/index.html_gzip_d78f2ae8b519c96c87738a2265029de3931a660899182246700c1030f285efc8" +path = "static-publisher/static-content/file2949.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/web/mod_SSL_apache/index.html_40a3fb5c66eb01376c6bdb231a0a89d7a965c910f98cc15f93bd080b90d1eb29" +path = "../build/minified/site/pt/guides/web/mod_SSL_apache/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/web/mod_SSL_apache/index.html_br_3b849468183ea716cf54d89442a34ee0e814a8da9390bf474a8f4b02c47bec8e" +path = "static-publisher/static-content/file2950.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/web/mod_SSL_apache/index.html_gzip_aef092e1594ea236143a80e73f6ddfba2eb7590e0bf04e913a539acad5ba5951" +path = "static-publisher/static-content/file2950.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/web/nginx-mainline/index.html_2c99ab8d255bd103d2084e9cca6df7f9fa5dd2dfff3ef0e4cb591e839c8769f5" +path = "../build/minified/site/pt/guides/web/nginx-mainline/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/web/nginx-mainline/index.html_br_78390cbc235186d922c6c6ca4160eae18369781a88d26f349679f63ab798cf66" +path = "static-publisher/static-content/file2951.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/web/nginx-mainline/index.html_gzip_3c5f09696b49c089b146d0875a55a71d3850cc8cd450cc85d90436b03be7335b" +path = "static-publisher/static-content/file2951.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/web/nginx-multisite/index.html_ac919cc928d6ff6b7ffc5e6ef4ce3c34e5d16faf3e376c981bcbb1ac7bd26866" +path = "../build/minified/site/pt/guides/web/nginx-multisite/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/web/nginx-multisite/index.html_br_d922b72719c6447d4287ae40d4d197f6642afa272256a1061c803adf90a07355" +path = "static-publisher/static-content/file2952.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/web/nginx-multisite/index.html_gzip_2fe0b5277ffae0d157dc70486ac27f5e5db1e30c49c869f98cef12d8cfb54aa3" +path = "static-publisher/static-content/file2952.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/web/php/index.html_5c515ec801fe59e226b7748ccd4540606b7665f83c00929354c221747b7790fb" +path = "../build/minified/site/pt/guides/web/php/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/web/php/index.html_br_292cd83326523f6f2a3e8fbcca293b070435adcd988a5709772e98caf1346705" +path = "static-publisher/static-content/file2953.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/web/php/index.html_gzip_6d65443c9de46f9dd574a31337ef6ad047d6021716c1eec911845c4a77c47507" +path = "static-publisher/static-content/file2953.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/web/tor_onion_service/index.html_7f0f2df2a2888d4870a9caeaa0754910e31ac774307571d10e2c1fdc901c98b6" +path = "../build/minified/site/pt/guides/web/tor_onion_service/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/web/tor_onion_service/index.html_br_c14a324cf7c651fac51be59a00820ddd1d928488655c7acd002119391c53a434" +path = "static-publisher/static-content/file2954.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/guides/web/tor_onion_service/index.html_gzip_83bdaeaae149c4811b8eb5c4e38683fe6a9f9b9caf45b0c58194534ed3d95550" +path = "static-publisher/static-content/file2954.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/index.html_f60219f1b87e3e09b628cdc5a521bacf7239aaac45acbc8f2fec58286b28bec1" +path = "../build/minified/site/pt/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/index.html_br_d65d34c2e22577e083965ef2c683df20cc712d173ff725ec6964438156f4541d" +path = "static-publisher/static-content/file2955.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/index.html_gzip_3836ef9ea90a2c0ddf77bb40060043e79379f9eb3e88bf53e23b723b1c011d0b" +path = "static-publisher/static-content/file2955.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/labs/index.html_ef7f99f1eeca28d86c0f2f4977dea76798c27f7bd9b10578f56493b013cac85a" +path = "../build/minified/site/pt/labs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/labs/index.html_br_5dc2406d21cedc1ebcf152da0a2c605507d46b59f156d6c668c3b183c46f57d1" +path = "static-publisher/static-content/file2956.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/labs/index.html_gzip_1ba45b5f1aa2b8dd5ab0fb96e00e8120c8dcf7c2f897891b915a79aeb57769ad" +path = "static-publisher/static-content/file2956.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/labs/networking/lab5-nfs/index.html_b60eb67590b018145f51079a92d6f687bf04c74899a6acba103a496b6641d7a7" +path = "../build/minified/site/pt/labs/networking/lab5-nfs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/labs/networking/lab5-nfs/index.html_br_e5972da1fb06c9f47703bd82f3f4de7e54009627c25f309f12136d70b279d017" +path = "static-publisher/static-content/file2957.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/labs/networking/lab5-nfs/index.html_gzip_18ceebea1d590899810405827623d4ad6c0b457a1de7bb67df2eb32eb8fe6836" +path = "static-publisher/static-content/file2957.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/labs/security/index.html_a0157d6145ece7a22438c712c93373f3eb7b5b0aef3147913b94ebe3f26f5353" +path = "../build/minified/site/pt/labs/security/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/labs/security/index.html_br_573dcbd127395d85b6aaad58ac23ab1c63c50ef4500239e1330a9e466f5127c2" +path = "static-publisher/static-content/file2958.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/labs/security/index.html_gzip_a36c8c5025defc354be3145b49448ae17b918f7c1f321ae4a3f61d79d875025e" +path = "static-publisher/static-content/file2958.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/labs/security/introduction/index.html_662ca9bb77e5b5d418019d024e657da961cfec387ce9c8f8368b8aaeec09c284" +path = "../build/minified/site/pt/labs/security/introduction/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/labs/security/introduction/index.html_br_ea2cf2cbab5129f1c27376fd81ca184ed88dcb70d0383f1767d31854b16658c4" +path = "static-publisher/static-content/file2959.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/labs/security/introduction/index.html_gzip_da5fd28e013dd057088bccb8a3410931c3f378676d238e47062e5a780eebd696" +path = "static-publisher/static-content/file2959.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/labs/security/lab3-auditing_the_system/index.html_9072f8928facae8b4aeb1cebdda20485c3075f412e28a9725d1e669a77a45af5" +path = "../build/minified/site/pt/labs/security/lab3-auditing_the_system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/labs/security/lab3-auditing_the_system/index.html_br_5b2c7dda52cc69bae22e16d8fa36b36160bfbbbc8a548d8b0a80649364ec6637" +path = "static-publisher/static-content/file2960.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/labs/security/lab3-auditing_the_system/index.html_gzip_0432e86617d87ff431a3937227cd07172547824d097e8a148638846e1106ef79" +path = "static-publisher/static-content/file2960.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/labs/security/lab8-iptables/index.html_882fb6ca853e9532d83e7718918071da9634410058894bc2c3e6f8ef405ecf40" +path = "../build/minified/site/pt/labs/security/lab8-iptables/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/labs/security/lab8-iptables/index.html_br_3a2ff2878a5da4330f7926dbb386b5b16db24f4cd61676708ae3d9f4a628e19c" +path = "static-publisher/static-content/file2961.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/labs/security/lab8-iptables/index.html_gzip_0f5bf28785a5cc20aa7c8731cbba50441871eda8f8a861ad645f88be80d1b2ae" +path = "static-publisher/static-content/file2961.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/labs/security/lab9-cryptography/index.html_2f1d7b7e9627911b06be8c10d24f990a507a6e865bbcd40094d3566862efb7b9" +path = "../build/minified/site/pt/labs/security/lab9-cryptography/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/labs/security/lab9-cryptography/index.html_br_89b167cdc61152666873db5d057680b67c60d95e8e253c9cc2c44f03d539dfdb" +path = "static-publisher/static-content/file2962.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/labs/security/lab9-cryptography/index.html_gzip_e0175f5206078b232d21d498060fa93ad6897f14e63fcac0d9e4d5f55bdf263c" +path = "static-publisher/static-content/file2962.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/labs/systems_administration_I/lab3-system_utilities/index.html_137840b525fd2750eb79c5dab1a4b831cb12e934499aa17c15ab16ac5691adcd" +path = "../build/minified/site/pt/labs/systems_administration_I/lab3-system_utilities/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/labs/systems_administration_I/lab3-system_utilities/index.html_br_1d835c40f463331e7c3c52a3caa1ba951160c263c1d831d2f2b45a0d056159b9" +path = "static-publisher/static-content/file2963.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/labs/systems_administration_I/lab3-system_utilities/index.html_gzip_3f6d627e32912c3be3e4e1a98303b1dfa10121823ff0bec2d9f7e6a5789fd674" +path = "static-publisher/static-content/file2963.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/labs/systems_administration_I/lab5-networking/index.html_5ea5d7e3e2e9625b64325fe370103124350f81b97d888176e906c7b7cfbbb1ab" +path = "../build/minified/site/pt/labs/systems_administration_I/lab5-networking/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/labs/systems_administration_I/lab5-networking/index.html_br_3e87fe298bef17eb505966f557daf16e36e303c203aada2a70d3954d3ff23cce" +path = "static-publisher/static-content/file2964.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/labs/systems_administration_I/lab5-networking/index.html_gzip_c22bb203cfe37bb99fc3b825becdb265dceccac0e4a9b847aae0db0a73692f93" +path = "static-publisher/static-content/file2964.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/labs/systems_administration_I/lab6-user_and_group_management/index.html_c8ce4a55514d6ef536bc3805373d3dad47d65dacf76561f1ada85e419151094a" +path = "../build/minified/site/pt/labs/systems_administration_I/lab6-user_and_group_management/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/labs/systems_administration_I/lab6-user_and_group_management/index.html_br_818553cdc1d0ee70f371a9fb5acc35089dac049726d099c8c09f9e59827516ce" +path = "static-publisher/static-content/file2965.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/labs/systems_administration_I/lab6-user_and_group_management/index.html_gzip_58a1855aa2d57bacc66079989d32db758e30033b353d4c9fba442e3fc7dfe331" +path = "static-publisher/static-content/file2965.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/labs/systems_administration_I/lab7-software_management/index.html_90cb890c79d8e0125b7138d3dbf19897dc7d89d141859a9a8c7ae06884e10966" +path = "../build/minified/site/pt/labs/systems_administration_I/lab7-software_management/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/labs/systems_administration_I/lab7-software_management/index.html_br_b48ec260a76a244eaadb3b2bddc4717d4d3ccbb75318d00523a705c2f64770c3" +path = "static-publisher/static-content/file2966.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/labs/systems_administration_I/lab7-software_management/index.html_gzip_7ab41cda46045f610a72721bf1329146f7ee7c3e885e941657dfb6fd3edb8743" +path = "static-publisher/static-content/file2966.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html_ee42535875d20223ae1e5b1b0274c42f7f24986b9ba39e1b65d88910f42aa1e3" +path = "../build/minified/site/pt/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html_br_6fab24d87e38b254ec32672e62c27c758c858eaea77e0092a8a2c1bc07a70205" +path = "static-publisher/static-content/file2967.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html_gzip_0b70c3c214db39cd7491ff0105c3e91768a9002cdd634f52f3a3bafe28d6b8d4" +path = "static-publisher/static-content/file2967.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/labs/systems_administration_II/lab3-bootup_and_startup/index.html_6acd0d054647e1493b5be07af94dea5eee4436c49dc6298006671cf5d01e931e" +path = "../build/minified/site/pt/labs/systems_administration_II/lab3-bootup_and_startup/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/labs/systems_administration_II/lab3-bootup_and_startup/index.html_br_a3d3b7374818db2dd0b44d25eba87a8df88ff1302755524b054a5f26e7d894f4" +path = "static-publisher/static-content/file2968.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/labs/systems_administration_II/lab3-bootup_and_startup/index.html_gzip_12cf2664e3841afc6c750de3eb0bf6fc7d0f9775f6b25c7f1615031115d02535" +path = "static-publisher/static-content/file2968.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html_a5e6bba74c7ae4423646e5b5fe80152888c210e00104f23b1eaea646a7b732a4" +path = "../build/minified/site/pt/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html_br_2fc99e6b1a9f73c17395589a1e6b2f9e8c2152b1c8cf308e253d59bf66d95225" +path = "static-publisher/static-content/file2969.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html_gzip_51c4822843af51d17a07455c5c32ca94f3033ebfbc5673d788a722edcbf238e2" +path = "static-publisher/static-content/file2969.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/labs/systems_administration_II/lab6-the_file_system/index.html_2a147f130dc124bbe05e15041a51a3e0f477cb498aa3d6e3dd5cedba4a6f095a" +path = "../build/minified/site/pt/labs/systems_administration_II/lab6-the_file_system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/labs/systems_administration_II/lab6-the_file_system/index.html_br_9ab3c85905f6dbdf1ee94f4c85ea988db300fd1c184c0524af9d6a1ee953e8ba" +path = "static-publisher/static-content/file2970.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/labs/systems_administration_II/lab6-the_file_system/index.html_gzip_145492e1cd27f4f5e6809b4389c1ba3b10185e7685dca2c6e60755cc0e1bc5de" +path = "static-publisher/static-content/file2970.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/labs/systems_administration_II/lab7-the_linux_kernel/index.html_8d4e89139fc6146a37897c0033fd591bbc70f2d457c193d2fdfe72a43d4715d4" +path = "../build/minified/site/pt/labs/systems_administration_II/lab7-the_linux_kernel/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/labs/systems_administration_II/lab7-the_linux_kernel/index.html_br_4242e85b260981645df54c86c7255e7a63283bfd7b7baf4ebe29f33d9f652b38" +path = "static-publisher/static-content/file2971.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/labs/systems_administration_II/lab7-the_linux_kernel/index.html_gzip_a4d27b704d083bbf16d4249e0cc63fb6e3b5ddd7bf82f0a50d35351efa6a7332" +path = "static-publisher/static-content/file2971.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/release_notes/8-changelog/index.html_9ebb7b061e8c4eb1c052f63e8996b8ea359b466e8cab224911ac8e3857328584" +path = "../build/minified/site/pt/release_notes/8-changelog/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/release_notes/8-changelog/index.html_br_759e4da647e0e0c6b2198b006ae3440a630854026a2dcdde417510b3c1e0cc6e" +path = "static-publisher/static-content/file2972.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/release_notes/8-changelog/index.html_gzip_1616f397f4a66e41bab1d6c43b3b3097620cfbb006d2cb674b8f679e3d7f5a15" +path = "static-publisher/static-content/file2972.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/release_notes/8_4/index.html_88f744a2b54690b5b95caa7f870259dc8853d0e58fd8beae3891154a0599fbef" +path = "../build/minified/site/pt/release_notes/8_4/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/release_notes/8_4/index.html_br_849c5298c5c2bb992f8b6e1e250babe2e39b1d4e5348901bbccf0b7034f8dea9" +path = "static-publisher/static-content/file2973.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/release_notes/8_4/index.html_gzip_7669309fc1cd79d87670fe759a67e871a5bcc6ca5a2963bf6d5009bb903b63e3" +path = "static-publisher/static-content/file2973.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/release_notes/8_5/index.html_d95d2a090ad4668d249bca52384ff69f1be15a5352dca86ddfc94c654bb51b07" +path = "../build/minified/site/pt/release_notes/8_5/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/release_notes/8_5/index.html_br_8a9cc571a0f185700dedfa94ccb1e89f3002fafc5e70c33242c806a2ec2e79ff" +path = "static-publisher/static-content/file2974.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/release_notes/8_5/index.html_gzip_87e0c602223ac0294e78990ffee6d8570e69bbd2eb746e787b44d80ebf63b32c" +path = "static-publisher/static-content/file2974.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/release_notes/8_6/index.html_196a2a6f1ff097b462057ca3250e59c93c9ad659dc882f655cf043a78b27e871" +path = "../build/minified/site/pt/release_notes/8_6/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/release_notes/8_6/index.html_br_956fa031a180ad7c8775a6e13f5a769f012fabbd8304663ac5579440e3f5a9ea" +path = "static-publisher/static-content/file2975.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/release_notes/8_6/index.html_gzip_7da7d5ef6e990ea062b8e6f22f8cbf24e76efcdb454e81690e6727e17dfdcaa6" +path = "static-publisher/static-content/file2975.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/release_notes/8_7/index.html_e4ade3099f46657ee144eebaf5ce20f97c7a405b3a9d713ec7d19e67a65ab37c" +path = "../build/minified/site/pt/release_notes/8_7/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/release_notes/8_7/index.html_br_24169803ebb6e823a9fd3b44c6684e887b10945651df8f3e7b596398f1b76da8" +path = "static-publisher/static-content/file2976.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/release_notes/8_7/index.html_gzip_e807110d12df4049fe5d077c819ee31efaf0306adb374412fb11f9e3e910cc6d" +path = "static-publisher/static-content/file2976.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/release_notes/8_8/index.html_40fec268530d83bb9fe18f1577dd66c95262df10e477ead927776fcaeebb8e6d" +path = "../build/minified/site/pt/release_notes/8_8/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/release_notes/8_8/index.html_br_5b1be0f71a489c663961f44c0e532a7242aaac369d2b88a129d730dd89d69f12" +path = "static-publisher/static-content/file2977.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/release_notes/8_8/index.html_gzip_3055035e9416df543f2f2e06f6cbf805568893338ec5180c20bab1625cf9b712" +path = "static-publisher/static-content/file2977.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/release_notes/8_9/index.html_150225c304966743ed7507badd884f4ecd9d41971e2483cd7c8ef50f313c3588" +path = "../build/minified/site/pt/release_notes/8_9/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/release_notes/8_9/index.html_br_cfa0b50d6afe1bfe59614ada39c556c43f4f196aceb86a118e37b8a4b378b69b" +path = "static-publisher/static-content/file2978.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/release_notes/8_9/index.html_gzip_2fa947bf54539e8fa72ed5fdf9369c438a3a265fd7342a88a9b6b9bdd3e75062" +path = "static-publisher/static-content/file2978.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/release_notes/9_0/index.html_51c23a42a9377596a8f48d2e6c92e48a2f92aa9d030b90a44f8438cdcbb1c78f" +path = "../build/minified/site/pt/release_notes/9_0/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/release_notes/9_0/index.html_br_d2397aa9a2ba2ee067237abce0b0a1a589bdcf89e1d57d76018181ad11778845" +path = "static-publisher/static-content/file2979.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/release_notes/9_0/index.html_gzip_5a7ee511a2c628ee6270e3b11ca4c234b492b2033ab4fca1f28e77076e37b54e" +path = "static-publisher/static-content/file2979.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/release_notes/9_1/index.html_f82a97286580a4906851139c3d025f36fcbe89577b21ffc72d850412deff27f3" +path = "../build/minified/site/pt/release_notes/9_1/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/release_notes/9_1/index.html_br_a5335381652bbddd900b342fc0947dd33773a3acc1adc32b69b73864eea34f41" +path = "static-publisher/static-content/file2980.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/release_notes/9_1/index.html_gzip_ff8f2b4e64bd301dc8ddee6238e4388f09211d81373d4081f3fa767ddaad29d3" +path = "static-publisher/static-content/file2980.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/release_notes/9_2/index.html_1553b2a11fa72ac1e633d608ffc160c4374d0754795ab373f11eb86f3f836a27" +path = "../build/minified/site/pt/release_notes/9_2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/release_notes/9_2/index.html_br_3ff906b261ec3bb4afc7dabd0e2c4592a4463b80dc7ec6aab8fbbab59382ab82" +path = "static-publisher/static-content/file2981.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/release_notes/9_2/index.html_gzip_4f420fefa6345177ce3c2e6462063f5cb28e4388a5c7d9c8ebd049fe61c0e0af" +path = "static-publisher/static-content/file2981.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/release_notes/9_3/index.html_667565ab49e1c33e0ea9975759dc68ea4ec15ce5fa72e161923a1150f9612814" +path = "../build/minified/site/pt/release_notes/9_3/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/release_notes/9_3/index.html_br_21acd78c598ad4f19d960dcebab42d0cc747b9dbbe11fc7947dbe3176046a188" +path = "static-publisher/static-content/file2982.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/release_notes/9_3/index.html_gzip_04863d4cbb837fc99cbd71b38a2a8142a5db98f32b50e230dbb4148b49f6d5b3" +path = "static-publisher/static-content/file2982.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/release_notes/index.html_abea4ea11371e90f204ad7d2e292a232655e51de0df2e77b445ed8020a896c53" +path = "../build/minified/site/pt/release_notes/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/release_notes/index.html_br_bce8cbd87b137c1ec0eceec36084b96f24c43a0a1347bae68b76c950011c9129" +path = "static-publisher/static-content/file2983.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt/release_notes/index.html_gzip_bcb77a0aea0de79fd8326a39a5b886fdb2cf34dfe5dbc76bd10723cfec5da845" +path = "static-publisher/static-content/file2983.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/admin_guide/00-toc/index.html_5e14e8739cf5ea2b356bf20105129c3e58b82e11d807332c45b11666b5ae7435" +path = "../build/minified/site/pt-BR/books/admin_guide/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/admin_guide/00-toc/index.html_br_ba8b4d43a8c688126013828aa04e43e6a1d0abbcac36d507f0c2c1f512acbde0" +path = "static-publisher/static-content/file2984.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/admin_guide/00-toc/index.html_gzip_dc676002a02cb88f4738c15e882b291f844be32811b639dad3e192dc3450dd5c" +path = "static-publisher/static-content/file2984.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/admin_guide/01-presentation/index.html_cd19b3a6aba44c251c5d210c52743134892bb6516f64eff4f7c13577f014bb7b" +path = "../build/minified/site/pt-BR/books/admin_guide/01-presentation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/admin_guide/01-presentation/index.html_br_09e94be46e09a646ab168d32bbf7c75defcb4c9b6d94cf37bcc844bbb6f2088a" +path = "static-publisher/static-content/file2985.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/admin_guide/01-presentation/index.html_gzip_5d10fd25e43bb96b39e18418fb94294d0e52ac535f07f86f06cb00a6110dc8c9" +path = "static-publisher/static-content/file2985.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/admin_guide/03-commands/index.html_e78a9a3a07c3da2ff5400b1d714a10882b6e122bf76cc62973002eb3b49a7a3f" +path = "../build/minified/site/pt-BR/books/admin_guide/03-commands/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/admin_guide/03-commands/index.html_br_98cd9df3d34a6db3400e8c5c8e7bd7cc29d6136d99051e54034d503bc32afc51" +path = "static-publisher/static-content/file2986.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/admin_guide/03-commands/index.html_gzip_f64c9d6404803bf6c00093f6fe3fb2253a33de19281a33591e7f0f98187d55a8" +path = "static-publisher/static-content/file2986.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/admin_guide/04-advanced-commands/index.html_d285d82ca99e8296b0008fcff64f1a6291fe8c7721c717c993334a19f4767272" +path = "../build/minified/site/pt-BR/books/admin_guide/04-advanced-commands/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/admin_guide/04-advanced-commands/index.html_br_161a0e401e289036c948b6ad2f080109c38f6ccb761b79ea3581f05f513513e6" +path = "static-publisher/static-content/file2987.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/admin_guide/04-advanced-commands/index.html_gzip_dd1cbc3b30d45a7e44578d30547da765b2aeea261fedf66dca750dfcd00cf89a" +path = "static-publisher/static-content/file2987.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/admin_guide/05-vi/index.html_f6b1eb63749b9525e230680cb244ae9f7dabbb96a85816f7a15e53e81d91f431" +path = "../build/minified/site/pt-BR/books/admin_guide/05-vi/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/admin_guide/05-vi/index.html_br_e5a0cae76c23728b9a6e63c34054454e5c251ff5cac4f841cef8d7fe9dbbc8a4" +path = "static-publisher/static-content/file2988.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/admin_guide/05-vi/index.html_gzip_d1e4cba5d916ac6440b1bde148e01275cc0212c2312b99811e034ba1b6da62f5" +path = "static-publisher/static-content/file2988.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/admin_guide/06-users/index.html_581194a643593cdb10c9e8cc4d65deb9d8b9bb44ef235d00946c3e1b1f76bab2" +path = "../build/minified/site/pt-BR/books/admin_guide/06-users/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/admin_guide/06-users/index.html_br_980a1d6cbb219a38d514053b54816276d907d76de9e4d0b8164d189c9e7c20be" +path = "static-publisher/static-content/file2989.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/admin_guide/06-users/index.html_gzip_cdd345ec7401b75d2ef591074479e4dc4a05c57c2980c6ed43353885e4750e82" +path = "static-publisher/static-content/file2989.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/admin_guide/07-file-systems/index.html_d8445e52c324438a42262e9d727c57777c528bf8e59040d3513f9ad743706626" +path = "../build/minified/site/pt-BR/books/admin_guide/07-file-systems/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/admin_guide/07-file-systems/index.html_br_a47a7afd93da59fc8ea2b262defd604765b2eaf5f21ca7172b93b2cd8f512b15" +path = "static-publisher/static-content/file2990.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/admin_guide/07-file-systems/index.html_gzip_fb105dd61a1b2f808243cf2b98479215026ff79c7c1ef6d33a50e41571bad620" +path = "static-publisher/static-content/file2990.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/admin_guide/08-process/index.html_c39f1b8c69c1fd9b10139d0d167adfb054e24a0e5b714f57b49ab87710d3d6d3" +path = "../build/minified/site/pt-BR/books/admin_guide/08-process/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/admin_guide/08-process/index.html_br_46f840f54c048c408cf87dface49557a8389d1c2c6261cf1883430eac359284e" +path = "static-publisher/static-content/file2991.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/admin_guide/08-process/index.html_gzip_a99ff3e3f656d0b87de4d107e78dc416520ba52560981a0dae36e975aaa267d9" +path = "static-publisher/static-content/file2991.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/admin_guide/09-backups/index.html_9bd3bc9a5b40510405abcfe850aedb4e434c193d4b763e8ab25a05d6d998d6b6" +path = "../build/minified/site/pt-BR/books/admin_guide/09-backups/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/admin_guide/09-backups/index.html_br_502769ab8e0e46d8daf27fcd32ef668c55230b348a1616e04df50994d9e672cb" +path = "static-publisher/static-content/file2992.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/admin_guide/09-backups/index.html_gzip_a3585ea7d9ee787bd04a2d7653cf91ab12904dbab15c133bb95b3e8a3dfec3ae" +path = "static-publisher/static-content/file2992.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/admin_guide/10-boot/index.html_b5b0521bf3b4aa11430f5d9c3b523295f758102cd42a56f078f9d682dc6fadb1" +path = "../build/minified/site/pt-BR/books/admin_guide/10-boot/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/admin_guide/10-boot/index.html_br_ce78f6fcc391e98fd5c0665d0c8cb48b943d16b526669e95030d7808ae22b3cc" +path = "static-publisher/static-content/file2993.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/admin_guide/10-boot/index.html_gzip_2c7827b0e60194c46f55cae1eb07aaa41396f015c47c0bd603045d0a2f945841" +path = "static-publisher/static-content/file2993.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/admin_guide/11-tasks/index.html_321540fe1181e8fe3cfccd4781998bdf11a3023f898fa1d3667db449d3cd135a" +path = "../build/minified/site/pt-BR/books/admin_guide/11-tasks/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/admin_guide/11-tasks/index.html_br_578edf6f367685d6d714bfb36cf46e706848efbfc5cc2695b9fb0c5571d98f28" +path = "static-publisher/static-content/file2994.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/admin_guide/11-tasks/index.html_gzip_c9c14818a2de7eced210fa2ac1ca21df18cd2deba0c3aa9fbd071f17604b8654" +path = "static-publisher/static-content/file2994.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/admin_guide/12-network/index.html_8e3d7386e7f197de949157005471f8cf474f86abdb3140dd256c8ac147db7df3" +path = "../build/minified/site/pt-BR/books/admin_guide/12-network/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/admin_guide/12-network/index.html_br_90a3d138a63b19481a8d4e4cba82a3d1f48be7e2441b32f401623c6a07b3b89b" +path = "static-publisher/static-content/file2995.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/admin_guide/12-network/index.html_gzip_1d9d820d46e56e98ea0bb93935d93c3aa10050ecc8d5a6036feae3cd8c15a72e" +path = "static-publisher/static-content/file2995.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/admin_guide/13-softwares/index.html_cb17bd1a9ad6ec43381413b10733001386623b92e897d24f84aa470d8a0fdbc2" +path = "../build/minified/site/pt-BR/books/admin_guide/13-softwares/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/admin_guide/13-softwares/index.html_br_51b1ce43f72c23f71284c902d87f1f17bfb9ab20644b13e9e5e29374cc6e3226" +path = "static-publisher/static-content/file2996.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/admin_guide/13-softwares/index.html_gzip_4b1bf063d7999cd5667278b1b73e47320a100775414a7d2ce702b85440eca8b9" +path = "static-publisher/static-content/file2996.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/admin_guide/14-special-authority/index.html_598d6110352cb8d88902e9150902e87af6fb7bb5cebb1321897157568a13f2f2" +path = "../build/minified/site/pt-BR/books/admin_guide/14-special-authority/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/admin_guide/14-special-authority/index.html_br_4d774ad0fbbab69262594b5b16d6823af1a469910a271276e1ac870d83a39e7f" +path = "static-publisher/static-content/file2997.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/admin_guide/14-special-authority/index.html_gzip_1feb64983c3dbf8e42dfc7815c96edee37b1a7d7e40cfc0021ed3bca7f2be376" +path = "static-publisher/static-content/file2997.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/admin_guide/16-about-sytemd/index.html_bfd572d94f4a8f1d7dfd55272a03d22ecc2a4ee104f47270c9d5f6cf5d9310f5" +path = "../build/minified/site/pt-BR/books/admin_guide/16-about-sytemd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/admin_guide/16-about-sytemd/index.html_br_80278ab88ac02cc79d59c830ce14bb19af1a6dfa9d053c775f85bac5d59887fd" +path = "static-publisher/static-content/file2998.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/admin_guide/16-about-sytemd/index.html_gzip_4845a42dbe35102d305d531b4ccbcb5fe2a246f6c6bcbd87da306256c5d0940b" +path = "static-publisher/static-content/file2998.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/bash_programming/01-Shell-overview/index.html_bccb1207ef453ce7b82a3f5f8ed62f4defafb0b82d980df6008eda88e8ab8aae" +path = "../build/minified/site/pt-BR/books/bash_programming/01-Shell-overview/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/bash_programming/01-Shell-overview/index.html_br_e90934e73090a8ba3b357f317d2f3438f6ccaa6390996541a7c65c4d35a3b72c" +path = "static-publisher/static-content/file2999.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/bash_programming/01-Shell-overview/index.html_gzip_0cba51794a3cc6d6d63becc5b5ddb478aab4a7a0816e5a3f73c9799cc13d06bb" +path = "static-publisher/static-content/file2999.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/disa_stig/disa_stig_part1/index.html_45c9680c01ec1a392ceeb1f5050c7562fc10096524848f87489af9a73c714970" +path = "../build/minified/site/pt-BR/books/disa_stig/disa_stig_part1/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/disa_stig/disa_stig_part1/index.html_br_b79d74119ff79cedc2eee3161ede6f0094a95e361d0446032fed3eaa42df2dc0" +path = "static-publisher/static-content/file3000.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/disa_stig/disa_stig_part1/index.html_gzip_43f8dc303527f1abf5d0ae0ac8d6be4533f9d98abb11d00b26f72837fc6ebcb6" +path = "static-publisher/static-content/file3000.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/disa_stig/disa_stig_part2/index.html_c869f4b4ef7ffcc9c2eb6a75431029e25454848d9a833219f75a8c4125e00791" +path = "../build/minified/site/pt-BR/books/disa_stig/disa_stig_part2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/disa_stig/disa_stig_part2/index.html_br_44061e7ac229df5f90e7034451e920a94ce298310ca9250ddfee888103e8e494" +path = "static-publisher/static-content/file3001.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/disa_stig/disa_stig_part2/index.html_gzip_ed0ad384df435694b8782e0c31ad3bb30f9e2155c51b27d878484abf5c33f2ec" +path = "static-publisher/static-content/file3001.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/disa_stig/disa_stig_part3/index.html_b1b77e8ea30313db8b955b7dbea23f2a476520ccfe92c8a0de75963244be0b0d" +path = "../build/minified/site/pt-BR/books/disa_stig/disa_stig_part3/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/disa_stig/disa_stig_part3/index.html_br_c74406014de479245984c5a438ae573661adc3876c1f246255de24ad556e1a90" +path = "static-publisher/static-content/file3002.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/disa_stig/disa_stig_part3/index.html_gzip_899f176d92dc57db699b378cffcd41948904dca539f31bc2b1765183d4610e35" +path = "static-publisher/static-content/file3002.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/index.html_e8cd2f0eaf97133ef87923471fc2939b9a9fe5a0f8a5645a3b5f1448124ec7e1" +path = "../build/minified/site/pt-BR/books/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/index.html_br_4f7ca8c495088dcb3604f3965b728f44fee6f6365b6caacd6b09e7dd7a779576" +path = "static-publisher/static-content/file3003.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/index.html_gzip_a40a0fcd956f9e29b888aae8c35400fb250a07c904d5555f9967d6f2828cdaa5" +path = "static-publisher/static-content/file3003.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_ansible/00-toc/index.html_c2f9e783962303b3f6489ddbee15e4ac6022ababcefc674ed31a08ffde431f54" +path = "../build/minified/site/pt-BR/books/learning_ansible/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_ansible/00-toc/index.html_br_0938f7aed3193944984a88e91b20e9d0f89e4371c56597b4bce286b3ec58c860" +path = "static-publisher/static-content/file3004.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_ansible/00-toc/index.html_gzip_e26e44a75adc381de251c93096db929b17616a1506a7e2d559813a1678c29b2e" +path = "static-publisher/static-content/file3004.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_ansible/01-basic/index.html_00569d10ebaffc200d2ed2ea7628622d47c4a87f50ae601e7fe07c8147308880" +path = "../build/minified/site/pt-BR/books/learning_ansible/01-basic/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_ansible/01-basic/index.html_br_23af23408d74796db35cc089a8a494a76dd7f5609705f107b7576314a5f5deba" +path = "static-publisher/static-content/file3005.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_ansible/01-basic/index.html_gzip_81722ca101ef17826e91d8e9ebbb98e918572264e424dbc6aacdb9cc406d10ab" +path = "static-publisher/static-content/file3005.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_ansible/02-advanced/index.html_ea6ba0ff33ecbcd2920153dfecf052b9860a00d617a1570ac9a558a8f80e8301" +path = "../build/minified/site/pt-BR/books/learning_ansible/02-advanced/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_ansible/02-advanced/index.html_br_c0f41e4534c3283cde91efb5991217ebd72fb6068855e3e1d9ca810ef5c1386e" +path = "static-publisher/static-content/file3006.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_ansible/02-advanced/index.html_gzip_d345d81c0801e6996c5425bc3a5e1832593cb0e177da6b2ceb38fc0efd15df68" +path = "static-publisher/static-content/file3006.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_ansible/03-working-with-files/index.html_dab54495c93e9e9324d25d542f922ccb3a0339d3cea55b7433c41da0a1e8abac" +path = "../build/minified/site/pt-BR/books/learning_ansible/03-working-with-files/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_ansible/03-working-with-files/index.html_br_fd7e3bf93424d9b8e971fc87c8b3b3392d0d164683abb4cd49a563976efc3e37" +path = "static-publisher/static-content/file3007.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_ansible/03-working-with-files/index.html_gzip_8619dbc4021da2ae3dea59ea9fe2124461baf20e9cc841c6aaa5309131c84c07" +path = "static-publisher/static-content/file3007.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_ansible/04-ansible-galaxy/index.html_87926be372190a9dffefb2e76e5c34569fd6667bb9e1683fb3f0aaaaabfb6107" +path = "../build/minified/site/pt-BR/books/learning_ansible/04-ansible-galaxy/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_ansible/04-ansible-galaxy/index.html_br_7bdd3c279e85049e9a21310239003f3a761656d6dbe64aa0fb9eca5a0599e20e" +path = "static-publisher/static-content/file3008.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_ansible/04-ansible-galaxy/index.html_gzip_ed61260a6cdcec26e3a31db535c9b13e8ac53bdc17975a7b1cdd378b1fc63964" +path = "static-publisher/static-content/file3008.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_ansible/05-deployments/index.html_a0ab813264137167a4b09490a46a7ef96685b5fab5429adf63c34b8790d9ed1b" +path = "../build/minified/site/pt-BR/books/learning_ansible/05-deployments/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_ansible/05-deployments/index.html_br_4e690b1cee0f3e2b73fa8a156091cfd20ff0ccb3fa8bedc3815ead112b47314d" +path = "static-publisher/static-content/file3009.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_ansible/05-deployments/index.html_gzip_e51f5b6a9b8388aaa3de730c1f967535ef8d30e42d6cb375b4119f6d5ed950a6" +path = "static-publisher/static-content/file3009.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_ansible/06-large-scale-infrastructure/index.html_b8f8eda329bf68c0a3434cf0215c2cbedaf61bb6e18228f1f71413bb2b3cfb0d" +path = "../build/minified/site/pt-BR/books/learning_ansible/06-large-scale-infrastructure/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_ansible/06-large-scale-infrastructure/index.html_br_9f1680a48fc60dbeb10f035bf425c03cc62d8a131e82922c1f11bc085038e92c" +path = "static-publisher/static-content/file3010.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_ansible/06-large-scale-infrastructure/index.html_gzip_81d4bd29cc729d05a3d4625a94cc469494e05304e258f62f2d319afd66e199e4" +path = "static-publisher/static-content/file3010.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_ansible/07-working-with-filters/index.html_aa97d25e5bab567a19c22fccbd0c52ad02d18917ee1e8bce443d08c77c79252b" +path = "../build/minified/site/pt-BR/books/learning_ansible/07-working-with-filters/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_ansible/07-working-with-filters/index.html_br_ba51e0f23737ceb8aa6fe8fbc67a9c311c91853261c1ec2fd26897bf57012697" +path = "static-publisher/static-content/file3011.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_ansible/07-working-with-filters/index.html_gzip_dfa7d6e23cde6d3b43ff691b10948ac6ef82c60dff337b0875ab9bb2deb191e5" +path = "static-publisher/static-content/file3011.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_ansible/08-management-server-optimizations/index.html_e1620f291b31fd35cd87ac58c65fe45ded2887fbeb0345b77089248028cfb4ea" +path = "../build/minified/site/pt-BR/books/learning_ansible/08-management-server-optimizations/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_ansible/08-management-server-optimizations/index.html_br_770551544a4030d4a4a4666b93bbf50718945d0c97cee6cd169e94f3e733ea23" +path = "static-publisher/static-content/file3012.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_ansible/08-management-server-optimizations/index.html_gzip_d25908cd2061d2330bfddead61f7296e840862e4b3efd384f78e355fefe6a97d" +path = "static-publisher/static-content/file3012.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_bash/00-toc/index.html_5b4f202be3f59c966fab589f361a31aa430c2f13cb65b5990be8d9b8e77be9a8" +path = "../build/minified/site/pt-BR/books/learning_bash/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_bash/00-toc/index.html_br_46f900b4732613a17fe02caf3db8551fafab0eafaca41ae1383c181a753f561d" +path = "static-publisher/static-content/file3013.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_bash/00-toc/index.html_gzip_1c4f1aab9c4277a1a9b1d88877c640fa198eb34c8fe64efb80b070d871ded749" +path = "static-publisher/static-content/file3013.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_bash/01-first-script/index.html_6309b84dcadb3f8ba0a2eef9e5e437cb859eaeb37b0ce61c894d590361ed704a" +path = "../build/minified/site/pt-BR/books/learning_bash/01-first-script/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_bash/01-first-script/index.html_br_fb93e3153b13f3d112b8a52df80c548b8162aade82bc9b000200c9642083420e" +path = "static-publisher/static-content/file3014.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_bash/01-first-script/index.html_gzip_7434540657905a5387f56e28e63e825cea0599a6106f6901e80bdeda4ff3ee50" +path = "static-publisher/static-content/file3014.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_bash/02-using-variables/index.html_1c926cdd56ec98999a7d365738c114ce50c79095325e75e06b9ff172ed202014" +path = "../build/minified/site/pt-BR/books/learning_bash/02-using-variables/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_bash/02-using-variables/index.html_br_0c0362f4a39d87d5c2bffff81325c54219e0020eece69c2224eb731f99bf8ba3" +path = "static-publisher/static-content/file3015.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_bash/02-using-variables/index.html_gzip_65deae2d744c403b99f205b6d4f919afad18fb7fb578343939144f95bc80f029" +path = "static-publisher/static-content/file3015.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_bash/03-data-entry-and-manipulations/index.html_15399ff958d45cd253071a41eefebc2f381f1fa8c2ba2f8594557500ee5c8a5d" +path = "../build/minified/site/pt-BR/books/learning_bash/03-data-entry-and-manipulations/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_bash/03-data-entry-and-manipulations/index.html_br_db86947d3a1ca0dac0c4d102f6e5db6da8a4ca5611970db8f72e151b913a8970" +path = "static-publisher/static-content/file3016.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_bash/03-data-entry-and-manipulations/index.html_gzip_5d86533fcdb691e8402040728e51cd2bba0639b2a2305dd6df1e30ffb827c71d" +path = "static-publisher/static-content/file3016.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_bash/04-check-your-knowledge/index.html_b0b0ac0f095c36ff111f60f438ae6c31ea2da7008e56a9ad42ad8182914e871f" +path = "../build/minified/site/pt-BR/books/learning_bash/04-check-your-knowledge/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_bash/04-check-your-knowledge/index.html_br_d885e79b7a30c601627d495c3749f381f9745c419f4a8a7e5d19b455b275410f" +path = "static-publisher/static-content/file3017.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_bash/04-check-your-knowledge/index.html_gzip_1cbe2d55d9f8d04cf139960e58ddaf0c6118838f3404780e925ac094018ec374" +path = "static-publisher/static-content/file3017.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_bash/05-tests/index.html_5a54cb50ebb03d8804b913e47102ee65b3075922a1ef90e782f96447962f3f62" +path = "../build/minified/site/pt-BR/books/learning_bash/05-tests/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_bash/05-tests/index.html_br_48bd7fc76ec831a95ddb362bf223ea7cad64faf6c94a5fd8a261567e81052026" +path = "static-publisher/static-content/file3018.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_bash/05-tests/index.html_gzip_eed2f50dc05eb1a6063b55fee44a6a49538f70833107e676b9312d52d6e12121" +path = "static-publisher/static-content/file3018.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_bash/06-conditional-structures/index.html_54e97f9997e24dd346555c87191b9c645e5a485a2c0cb01665213486631c80b0" +path = "../build/minified/site/pt-BR/books/learning_bash/06-conditional-structures/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_bash/06-conditional-structures/index.html_br_342134e8349ba35dbd85c9d5f3020526c7b3ce3ea57a6af7dff3a49a83bef4dc" +path = "static-publisher/static-content/file3019.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_bash/06-conditional-structures/index.html_gzip_d3f19f86e4bd30dd8a4795a8fcdd4e7938684f98ada615699c02428e38470fc9" +path = "static-publisher/static-content/file3019.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_bash/07-loops/index.html_8a3e388a0604d11a8eec2e2d860762428594d9345eb1529423fc6023ba699f98" +path = "../build/minified/site/pt-BR/books/learning_bash/07-loops/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_bash/07-loops/index.html_br_749198ba5e9e786c50e9e400e18d46b012d35262f7f76255762183fce4868c94" +path = "static-publisher/static-content/file3020.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_bash/07-loops/index.html_gzip_f3d7f6f86cc98dcbb6b61b0a3ffc50036e24631a991fe81b8d804c27bd1bfa97" +path = "static-publisher/static-content/file3020.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_bash/08-check-your-knowledge/index.html_de7829cf9f80a65fbd0c833fd7797cd66d93121b4c1dfb3a15aaa65946a729dd" +path = "../build/minified/site/pt-BR/books/learning_bash/08-check-your-knowledge/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_bash/08-check-your-knowledge/index.html_br_985ef1cbed84c3673254e394bee654a28b55808b989734c44b599be4e55ad083" +path = "static-publisher/static-content/file3021.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_bash/08-check-your-knowledge/index.html_gzip_3cb33f5d6637637fd046667b55cd2dbbaa872748c6552e51bdcfd9085a27c59f" +path = "static-publisher/static-content/file3021.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_bash/appendix/02-variables-logs/index.html_e71c7f735f08f70782f3e1d29e65e9871526bcbc5e51b78112f737fcda459989" +path = "../build/minified/site/pt-BR/books/learning_bash/appendix/02-variables-logs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_bash/appendix/02-variables-logs/index.html_br_875903a4df45eb114edab594ecfaee55be35f88cdd6413208ba2a787dbbaf0eb" +path = "static-publisher/static-content/file3022.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_bash/appendix/02-variables-logs/index.html_gzip_39cc12b494cdd077436a750970649cb2836d4b89e4f4bed30cfed866878ff3e7" +path = "static-publisher/static-content/file3022.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_rsync/01_rsync_overview/index.html_ef6637d001977d2ff06ab5ea502bd3ce11f81e8728851b8384dd497fe70f20f9" +path = "../build/minified/site/pt-BR/books/learning_rsync/01_rsync_overview/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_rsync/01_rsync_overview/index.html_br_fc4225029b7b003e50ceaa9c58a1e534d1594ed51cebc065f861457d0fb31a34" +path = "static-publisher/static-content/file3023.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_rsync/01_rsync_overview/index.html_gzip_fe6e083414812c984fc73cfce51a5f5f99e1eba22131a20c9b98d11d6592a97d" +path = "static-publisher/static-content/file3023.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_rsync/02_rsync_demo01/index.html_e54f342dd48c58cd2760c3d1a67d7e109169c60ac37479af2079a4afb3252da4" +path = "../build/minified/site/pt-BR/books/learning_rsync/02_rsync_demo01/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_rsync/02_rsync_demo01/index.html_br_c3ea202545a0864cd39932db2944d5d4eaeacc70f097a0d238b2fb59fc514dbc" +path = "static-publisher/static-content/file3024.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_rsync/02_rsync_demo01/index.html_gzip_f88728e0bd87218d5d2d1637f05039506e104e4cfeb838bad11eaec6fd82e8c1" +path = "static-publisher/static-content/file3024.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_rsync/03_rsync_demo02/index.html_e2e6d73bef8f3e2530b2aa4b0f6a089cc31373b084f33e6909c11572f6908ada" +path = "../build/minified/site/pt-BR/books/learning_rsync/03_rsync_demo02/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_rsync/03_rsync_demo02/index.html_br_fedab1ac9e7c0143f29dbd39f60edb319e9586492a77ec0574917f63b5a4df04" +path = "static-publisher/static-content/file3025.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_rsync/03_rsync_demo02/index.html_gzip_34af2420f303feb1bd786b00b7af17fa66f5d3e3c2d8edced90459173070102f" +path = "static-publisher/static-content/file3025.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_rsync/04_rsync_configure/index.html_4d8cb01c6bc0cd5cdc1e98033bf7f776c24d816191bd84711fe308035d33c352" +path = "../build/minified/site/pt-BR/books/learning_rsync/04_rsync_configure/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_rsync/04_rsync_configure/index.html_br_069db0a6b30a8ec274191c0709d9cc1578158ff04f23b5e1d3437896e22adf22" +path = "static-publisher/static-content/file3026.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_rsync/04_rsync_configure/index.html_gzip_d02e5d6723e1b4e6000a101794a1b48f6140c1b7434287b3fcece9b8b69d7c5b" +path = "static-publisher/static-content/file3026.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_rsync/05_rsync_authentication-free_login/index.html_71b2f898028b0f5a36b20390e546f1cb790c7601fed2f1a6a77cd71510334a21" +path = "../build/minified/site/pt-BR/books/learning_rsync/05_rsync_authentication-free_login/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_rsync/05_rsync_authentication-free_login/index.html_br_bf6ff68fe8af9635658fe64e190a050ccbdd908e35932120325cf3e22361e45c" +path = "static-publisher/static-content/file3027.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_rsync/05_rsync_authentication-free_login/index.html_gzip_8cf147122cc7b2e4e1512d1c12b9e58a5a29e5e3e67bde1bf644d66fa8922aad" +path = "static-publisher/static-content/file3027.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_rsync/06_rsync_inotify/index.html_b0895d6991ffa12dbd5f0a195b5955d410acd93dc7814ef7072322bb6a76d740" +path = "../build/minified/site/pt-BR/books/learning_rsync/06_rsync_inotify/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_rsync/06_rsync_inotify/index.html_br_18350f14d3c7d06a1173b1e644409424d14ae2b1b15e23671f5a00cabce38b8e" +path = "static-publisher/static-content/file3028.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_rsync/06_rsync_inotify/index.html_gzip_d4d8aaaf6572696be1832e4cf97690a184a17614888d8e59732cc83be908ecc2" +path = "static-publisher/static-content/file3028.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_rsync/07_rsync_unison_use/index.html_c4b64ca6017bae01e679eeee8f06af6cf46a39c051f824af66baaa27e14f4e04" +path = "../build/minified/site/pt-BR/books/learning_rsync/07_rsync_unison_use/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_rsync/07_rsync_unison_use/index.html_br_6fc0b04cc78bc778023f2ed24b408044c71862597563aabe26178a5bc61e1754" +path = "static-publisher/static-content/file3029.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/learning_rsync/07_rsync_unison_use/index.html_gzip_02fbd19749a2380f46b726e2b0113cf07533de83c5883312103850480756a5c9" +path = "static-publisher/static-content/file3029.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/licence/index.html_93d75142eee243753ac6817c2501e95237940453e6004695b1581b0aa08542e3" +path = "../build/minified/site/pt-BR/books/licence/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/licence/index.html_br_cd9a9793d44610ad22415de86c7dccb18434a36f6c5c10574f123362e9adc5d8" +path = "static-publisher/static-content/file3030.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/licence/index.html_gzip_5fd08f9b0512c3248a16298b3aeaa9b1d45a4fb6deb79f071ce8e2ae35378738" +path = "static-publisher/static-content/file3030.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/lxd_server/00-toc/index.html_9787db51e3e6b7f511b67ab8bcf2812973fe520542e4e862630c667ccf7c8fff" +path = "../build/minified/site/pt-BR/books/lxd_server/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/lxd_server/00-toc/index.html_br_e66436ea3e916d75bf9be1e5023d4e32511f9c3f698c90d078e5f6f009b5a5c4" +path = "static-publisher/static-content/file3031.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/lxd_server/00-toc/index.html_gzip_948987627ec5a55b4eca6061cb6e63c74061c59b34801a21be8360c6def0e8da" +path = "static-publisher/static-content/file3031.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/lxd_server/01-install/index.html_c7a105f6c561d4a6b81f1ce8b451a48e396c36662c57a76142f5cfe27a02ad0d" +path = "../build/minified/site/pt-BR/books/lxd_server/01-install/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/lxd_server/01-install/index.html_br_5454314fbadb984095a7b86224e19bd588dd7bbe893fd9569e8c13de2c34c542" +path = "static-publisher/static-content/file3032.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/lxd_server/01-install/index.html_gzip_0804b2b4b12b034a40135fcbce1c10b0f3cc851f3a57bd9d307f489d0c17d9f7" +path = "static-publisher/static-content/file3032.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/lxd_server/02-zfs_setup/index.html_38fcc7925d47025d5b4bf909744d590b3275c47f5a38b709399a5f43c7f8ce28" +path = "../build/minified/site/pt-BR/books/lxd_server/02-zfs_setup/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/lxd_server/02-zfs_setup/index.html_br_1c9619bafc253d9f538fed94cc3676bdd7f1791bdd689088a5bfa7ebf3e0ed7c" +path = "static-publisher/static-content/file3033.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/lxd_server/02-zfs_setup/index.html_gzip_7b60349d20df1b917c6c32226386229d63034fedc9eab799dc8488dd639c7624" +path = "static-publisher/static-content/file3033.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/lxd_server/03-lxdinit/index.html_e3b287b2fec2382b783af12f642ae192eb39b422eeb4bcafd3b718c435d02a49" +path = "../build/minified/site/pt-BR/books/lxd_server/03-lxdinit/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/lxd_server/03-lxdinit/index.html_br_77aa85457e27eac45a795d26f7ed7b585e1e30a36df54669c7a711e1fb4a1666" +path = "static-publisher/static-content/file3034.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/lxd_server/03-lxdinit/index.html_gzip_7a967f4a9e13de68c9ef64a0f6b17c4cfeaf0446c418b595e0cc73951f8aaf67" +path = "static-publisher/static-content/file3034.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/lxd_server/04-firewall/index.html_4da56be8821e8902b4a5004a49757f30364fe5c18028ce23b44199b22d5de16c" +path = "../build/minified/site/pt-BR/books/lxd_server/04-firewall/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/lxd_server/04-firewall/index.html_br_9c57e6afabd50d1a9d2d064ce72d6f587fd93d22859095b0170a1248458a2249" +path = "static-publisher/static-content/file3035.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/lxd_server/04-firewall/index.html_gzip_8e06860271bf2e99df145e8532d8e3cb961ad85fdadb177e56ce241d5a0e11a1" +path = "static-publisher/static-content/file3035.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/lxd_server/05-lxd_images/index.html_c130fde6cc4cba256d9b013f4713e69a76315eba1c24c5b2484de1a6a1a64ebf" +path = "../build/minified/site/pt-BR/books/lxd_server/05-lxd_images/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/lxd_server/05-lxd_images/index.html_br_7fa9d829650038b20155495906bf286e73b4bccc34b428853228d456ff2b9233" +path = "static-publisher/static-content/file3036.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/lxd_server/05-lxd_images/index.html_gzip_5b402e5ac529d234147cd5a29c827e117198d4de826ca5089eb3a443818ae472" +path = "static-publisher/static-content/file3036.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/lxd_server/06-profiles/index.html_caf20c427303beabffdb1a9e3272da0fccd2824ee6cffe5d94a4b31c1e6b0286" +path = "../build/minified/site/pt-BR/books/lxd_server/06-profiles/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/lxd_server/06-profiles/index.html_br_58cc12a6a3fe3360d98e0a6f71f411d4f3103ca5eb2aa33a756804847c41d193" +path = "static-publisher/static-content/file3037.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/lxd_server/06-profiles/index.html_gzip_d05f439d12d1c8e0888c52915e7ff60347e58c499930a4ecef81664bd5ec3662" +path = "static-publisher/static-content/file3037.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/lxd_server/07-configurations/index.html_20d722320ecb68dcc4de6c11836d3244c67010c1de44406d999b8f36d16b328d" +path = "../build/minified/site/pt-BR/books/lxd_server/07-configurations/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/lxd_server/07-configurations/index.html_br_f75fbdf7f969a9279665cd5e4fdc5aaa67dec0a3d05c911f4cffa72016c3086f" +path = "static-publisher/static-content/file3038.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/lxd_server/07-configurations/index.html_gzip_02332f2d78fd0c69fe4a5c9de12ef765e0bb4994011835838993c01a9ffac056" +path = "static-publisher/static-content/file3038.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/lxd_server/08-snapshots/index.html_683731144ed3a18202450c89c14f67aa833cbc4d13b8ea2b3e879ca1a84c35ad" +path = "../build/minified/site/pt-BR/books/lxd_server/08-snapshots/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/lxd_server/08-snapshots/index.html_br_cd580a9106605f4b802d897ed3b960d6e3011d6cd591166b662f5c08a7fbf130" +path = "static-publisher/static-content/file3039.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/lxd_server/08-snapshots/index.html_gzip_149f2059656d43391fed756cb8ef4c2edc26931ccccbc57f3e03b5fd2c900600" +path = "static-publisher/static-content/file3039.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/lxd_server/09-snapshot_server/index.html_b80b39e2be052e42d74a37697d610d0967b05f8684f20dda34e3c65b4699bc9a" +path = "../build/minified/site/pt-BR/books/lxd_server/09-snapshot_server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/lxd_server/09-snapshot_server/index.html_br_3e875f6fef6d9c40ced8e790ee172f9d10718eb17cdbb0526ea9d56687c5bc12" +path = "static-publisher/static-content/file3040.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/lxd_server/09-snapshot_server/index.html_gzip_0424e06f07a1638ece9724dd4f900a71b806acf7304d54f39ca761c6fbc94369" +path = "static-publisher/static-content/file3040.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/lxd_server/10-automating/index.html_31b4c755ab8b22b49bc4a0179f8569edd90614b3a04aaa37a56919b5d99e2fea" +path = "../build/minified/site/pt-BR/books/lxd_server/10-automating/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/lxd_server/10-automating/index.html_br_61acf21c3fd1962c55135b8f1fa743f06ac6eb03694fe6a194cdebc54c0730ef" +path = "static-publisher/static-content/file3041.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/lxd_server/10-automating/index.html_gzip_390962694aa0e91a96b9f6a08b520b685cd1d476e68389ab472e4d271c82e72d" +path = "static-publisher/static-content/file3041.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/lxd_server/30-appendix_a/index.html_85c551d56dfed90f415403bb3197a525290988075623d9a36ceb8a445101082b" +path = "../build/minified/site/pt-BR/books/lxd_server/30-appendix_a/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/lxd_server/30-appendix_a/index.html_br_5c7180d6699cb3ae22e0e960a54d07d4efa0c7e446d00e432d4d5d1b775bcf70" +path = "static-publisher/static-content/file3042.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/lxd_server/30-appendix_a/index.html_gzip_cf32cea7fdefeefbbd1e7536d1a9d5f7cde91a1eae1baf98ae00ed0d2c2c3a12" +path = "static-publisher/static-content/file3042.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/nvchad/additional_software/index.html_b7f0c84db1750d29a3daa9311907c0d567cb518a42c2e21a3ce41ddaa777a961" +path = "../build/minified/site/pt-BR/books/nvchad/additional_software/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/nvchad/additional_software/index.html_br_cd406555b615abea46f3c49e0b00ec94046086dca9f418651773c15ba5e40594" +path = "static-publisher/static-content/file3043.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/nvchad/additional_software/index.html_gzip_d850c4859ed69b04fae16cf429cd38e63e70e0d5b45a4643158e4163d5c44338" +path = "static-publisher/static-content/file3043.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/nvchad/index.html_358cb72cac447ff16e4ada120214ce4273472301b25022446e1cbc6264d683a0" +path = "../build/minified/site/pt-BR/books/nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/nvchad/index.html_br_b22c81764ee47604f3492045664a338e196a2993b91da9366d4f0242c6c4b498" +path = "static-publisher/static-content/file3044.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/nvchad/index.html_gzip_72c5abbafcaa11de6ba53674cba5a00ce983c67c051ada3b739717fd49e5d2c6" +path = "static-publisher/static-content/file3044.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/nvchad/install_nvchad/index.html_e2c32667989c0c9689fc86246ea7b9b6f36dd770defa296dcc696ab7d866745f" +path = "../build/minified/site/pt-BR/books/nvchad/install_nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/nvchad/install_nvchad/index.html_br_706875716643490d1feffce290350e32398ba29f458deb48eb20d2407185251b" +path = "static-publisher/static-content/file3045.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/nvchad/install_nvchad/index.html_gzip_5e597702aaa9f85261d93dc7f611c0ab2672c8b45cd46731dccd4c7abcf47704" +path = "static-publisher/static-content/file3045.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/nvchad/install_nvim/index.html_9eca3d2156ab35b4bd3f88595d46ce26f6b3f12f19082f68fdd08dcc890f2283" +path = "../build/minified/site/pt-BR/books/nvchad/install_nvim/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/nvchad/install_nvim/index.html_br_528c1bfd1da92b63265a1f1a375f7ab46075f0b5a3d1db2ac244036c24ea2896" +path = "static-publisher/static-content/file3046.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/nvchad/install_nvim/index.html_gzip_71c3b62954dddfabc2b38a522b6a7e921d9d05146084e6c6401282b414ddc77d" +path = "static-publisher/static-content/file3046.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/nvchad/marksman/index.html_59d200c3ab86ef30966691b0e5967972f63d3c386fca3ec4bd609df1fc314d3f" +path = "../build/minified/site/pt-BR/books/nvchad/marksman/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/nvchad/marksman/index.html_br_8e8bf7e1f1004f1f37eaa13490cadb2a0fcc1b6bde35588168d3038da448574d" +path = "static-publisher/static-content/file3047.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/nvchad/marksman/index.html_gzip_eda0a3e6ddb7d0f77a1c1bdad6c9c0174ce265f8f9575d646930a53d8f216a01" +path = "static-publisher/static-content/file3047.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/nvchad/nerd_fonts/index.html_11f33f886c1a79ad68c1294a8df8430c6434e15ee9f52027aec3fd9dd951f99f" +path = "../build/minified/site/pt-BR/books/nvchad/nerd_fonts/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/nvchad/nerd_fonts/index.html_br_eb330d0a9585c2b9ab3ae72ffcc04148635ea299ffdcb825798a69c79b785577" +path = "static-publisher/static-content/file3048.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/nvchad/nerd_fonts/index.html_gzip_5afd5e1bba5e0f0ae9f548aa0890e3ec43400c198ea64f76cf9130a14203d4b9" +path = "static-publisher/static-content/file3048.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/nvchad/nvchad_ui/builtin_plugins/index.html_d8b41e39138f61014cd808ce72dde5574170e259fdddd75da5b89e79e0595fa0" +path = "../build/minified/site/pt-BR/books/nvchad/nvchad_ui/builtin_plugins/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/nvchad/nvchad_ui/builtin_plugins/index.html_br_b4e0258d3c7cdb22ce74376a2a3fcbdd909c4571177fd398f0f50fc25fee4a52" +path = "static-publisher/static-content/file3049.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/nvchad/nvchad_ui/builtin_plugins/index.html_gzip_316997dd89e96d91159df4794c1b1237c6a82db0ff2ed9672e2b0566ed60e366" +path = "static-publisher/static-content/file3049.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/nvchad/nvchad_ui/nvchad_ui/index.html_e02ba88dfa302ff187a590708726ce82683189606c4c59eb94bb0f0afd27eb45" +path = "../build/minified/site/pt-BR/books/nvchad/nvchad_ui/nvchad_ui/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/nvchad/nvchad_ui/nvchad_ui/index.html_br_fb593afe282bdb60c986e6dc2c9bdac2fa0dd6b77d73cc0dab7cfe04cfd0e95e" +path = "static-publisher/static-content/file3050.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/nvchad/nvchad_ui/nvchad_ui/index.html_gzip_79fdb1410dd558848fb1e018b5d3676465bed69d885e37509b461fd9678c68c1" +path = "static-publisher/static-content/file3050.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/nvchad/nvchad_ui/nvimtree/index.html_3344b2c0e95a25b53a87de36edbc7e26e40508311a581e7b7c4142b125dc3c1e" +path = "../build/minified/site/pt-BR/books/nvchad/nvchad_ui/nvimtree/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/nvchad/nvchad_ui/nvimtree/index.html_br_52c5dd7354444ee86d30c266925fffcf00b1cacbf2cabb82af6f8f298473a25e" +path = "static-publisher/static-content/file3051.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/nvchad/nvchad_ui/nvimtree/index.html_gzip_50a1dd24aa2bcf0dbbb421651b7fe74723fdeaa55313c2a345ee13a8e36f76c3" +path = "static-publisher/static-content/file3051.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/nvchad/nvchad_ui/plugins_manager/index.html_7c477c7d05f7a002b4744833f5fdcae90536dcc7a7788d541af2e5d1948110af" +path = "../build/minified/site/pt-BR/books/nvchad/nvchad_ui/plugins_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/nvchad/nvchad_ui/plugins_manager/index.html_br_35f052183de61f5904da7588b70cfe7f5edd515a395fa7ac6b433d6a2ce0d849" +path = "static-publisher/static-content/file3052.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/nvchad/nvchad_ui/plugins_manager/index.html_gzip_43f8f36fcb6016769a7ed16b4d3a8969b685993d50322c186b017047f202b3c3" +path = "static-publisher/static-content/file3052.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/nvchad/nvchad_ui/using_nvchad/index.html_16741f1c3f52b90c36ece9173ea91c3f0c718f7bb849f0a087c6d96eae823d88" +path = "../build/minified/site/pt-BR/books/nvchad/nvchad_ui/using_nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/nvchad/nvchad_ui/using_nvchad/index.html_br_fa02185382c7d6ff378c76f511a31cadf69775a2ea6f1f01b7e4f4d57a1b5de8" +path = "static-publisher/static-content/file3053.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/nvchad/nvchad_ui/using_nvchad/index.html_gzip_1c3bc6f3705f1ae7e48e721a529ead28650db938bec7126fc2cf51b63bbb7c5b" +path = "static-publisher/static-content/file3053.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/nvchad/plugins/index.html_37e6cd7d625878ca321f7394650097e5498253f3fca74d3aef0a4bda5cf58d7e" +path = "../build/minified/site/pt-BR/books/nvchad/plugins/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/nvchad/plugins/index.html_br_2ec02b8310493cd139c5807039fc6ba156d7ebbc1a0bd9b5b87c1c11e7e3409a" +path = "static-publisher/static-content/file3054.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/nvchad/plugins/index.html_gzip_2f459c2e0596ceb397b96f06fb87eb3825140104d6b08f477ab95671b16a77e8" +path = "static-publisher/static-content/file3054.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/nvchad/plugins/md_preview/index.html_0e5eecd21e5a7666aef722a156cd44b0aa8ae3a79a09d6253f92eed640e3e630" +path = "../build/minified/site/pt-BR/books/nvchad/plugins/md_preview/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/nvchad/plugins/md_preview/index.html_br_9844dfc2476536ab837ee8fb9c4f5738d9b7c8057914865bfa8228c42c145b81" +path = "static-publisher/static-content/file3055.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/nvchad/plugins/md_preview/index.html_gzip_5c293ac299d88dd69ae35ac1f1e40bc99154e1f96e57ea17a72b53fd0d6a726e" +path = "static-publisher/static-content/file3055.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/nvchad/plugins/projectmgr/index.html_c2357e36c683603c1ea46b5a4832f5f0b52d75ce21c06936c770d87a29ea20e6" +path = "../build/minified/site/pt-BR/books/nvchad/plugins/projectmgr/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/nvchad/plugins/projectmgr/index.html_br_39f14de88f664ac5df43983181b3a6568b9617931e78cd6c385bc4d780c8676e" +path = "static-publisher/static-content/file3056.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/nvchad/plugins/projectmgr/index.html_gzip_a6ba3e8d58091914d51360b23b976c7f918659d6cb829070ea4ed0c56281bc2d" +path = "static-publisher/static-content/file3056.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/nvchad/template_chadrc/index.html_3ab4d06b3f06ca31b1d62f3050810f200feadc82aba9a84648a635cf4eee9730" +path = "../build/minified/site/pt-BR/books/nvchad/template_chadrc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/nvchad/template_chadrc/index.html_br_7f3f7d76d732d36936aaed8eaae592c88887036267512354c3b215a3417edc2a" +path = "static-publisher/static-content/file3057.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/nvchad/template_chadrc/index.html_gzip_4cc5285ca44b05f83baa588d2ab7efda609d98330c8ae14ac4801b5accd35225" +path = "static-publisher/static-content/file3057.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/nvchad/vale_nvchad/index.html_2e73e455937addb536352bbf168d4db65230a3ef502900adf9eaa5a052b29b94" +path = "../build/minified/site/pt-BR/books/nvchad/vale_nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/nvchad/vale_nvchad/index.html_br_3dce955ab4f4ebe8797ab3c0a8b864b06426815780de3a959788b5654188453d" +path = "static-publisher/static-content/file3058.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/nvchad/vale_nvchad/index.html_gzip_a8a36ecd9848caa4a80a9ade3c83f345a90130ffdd06a4c939b2cbe7119dbab5" +path = "static-publisher/static-content/file3058.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html_31c3d0282030c54c1a03d30fe712d3a47eef24ea3ee43f3bc35996133eba8492" +path = "../build/minified/site/pt-BR/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html_br_37991ae151b8f4bb6c7a03c3ae3056871697acfdefdaacee7a4079d45174c16e" +path = "static-publisher/static-content/file3059.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html_gzip_3f6671830bbb7dd56f3c81f54cecb7a41a32f7634422b8a4ecd688ef833f9bea" +path = "static-publisher/static-content/file3059.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/sed_awk_grep/2_grep_command/index.html_e62c8e2cb71ae0cd76225c94434acacd2287267474631d01add8493a24f0a11a" +path = "../build/minified/site/pt-BR/books/sed_awk_grep/2_grep_command/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/sed_awk_grep/2_grep_command/index.html_br_c84856630f70b642c187b511c42e5349dd2b2b2b50c023cfdac0730c602cee8a" +path = "static-publisher/static-content/file3060.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/sed_awk_grep/2_grep_command/index.html_gzip_a93df4d8893512fa890bd6f0bcadbc1742e09597563f3b3482947de0e559a6a3" +path = "static-publisher/static-content/file3060.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/sed_awk_grep/3_sed_command/index.html_382e845cf1b8bc3ce69dbcc9dc227475b92c16e5e2eecc1373c79be234184608" +path = "../build/minified/site/pt-BR/books/sed_awk_grep/3_sed_command/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/sed_awk_grep/3_sed_command/index.html_br_04e4b8831a94ebbc1e3963817d2dc2e49c99767c731e7a3ed20978a70da9a0e4" +path = "static-publisher/static-content/file3061.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/sed_awk_grep/3_sed_command/index.html_gzip_e5aee7f8db614d6d91b023f4cf24b6ce81dcd991cece5c879601b6a107b5fcc6" +path = "static-publisher/static-content/file3061.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/sed_awk_grep/4_awk_command/index.html_e7bbddb5c0aa0804db3690b7cb007e2d5850ec4ed9ce00d2dad37b313b751100" +path = "../build/minified/site/pt-BR/books/sed_awk_grep/4_awk_command/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/sed_awk_grep/4_awk_command/index.html_br_142f3c139e2e6c44557dd0fa8d96eda517103dbc2999e447571b9cee4d11b50d" +path = "static-publisher/static-content/file3062.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/sed_awk_grep/4_awk_command/index.html_gzip_0ed6256e69acceb0791a0dda72fd7b92c7aa1e383f3802a315332254dc86a3f6" +path = "static-publisher/static-content/file3062.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/sed_awk_grep/index.html_accedc28da2622994f73137682837a7b3afa48df95d69789c241952295874565" +path = "../build/minified/site/pt-BR/books/sed_awk_grep/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/sed_awk_grep/index.html_br_a3ccc6cfde0184f898f8af15108eaa6105cedb3765b5bb462dbb07cfa78e622d" +path = "static-publisher/static-content/file3063.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/books/sed_awk_grep/index.html_gzip_3c4a037d974df8b013795befe85e4cf761e0ecc7da3bb4c94a2aa2a28df4835b" +path = "static-publisher/static-content/file3063.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/containers/docker/index.html_e4fd309cdd516b3f3a9976e8942ee317e9ca6b9eba13e35193f46e498c658a43" +path = "../build/minified/site/pt-BR/gemstones/containers/docker/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/containers/docker/index.html_br_ccb46960196732017900ab651405b7a6f62f7a40b95992024a95a503366488bc" +path = "static-publisher/static-content/file3064.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/containers/docker/index.html_gzip_8f7ffef26ad251007c8c02036404b01fe8d9b8c7a3dd9708bb45fc605184efae" +path = "static-publisher/static-content/file3064.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/containers/podman/index.html_98f8af63d243a44ab5c696e7a36427082348b76338b73afb5f07feacc7b71d9a" +path = "../build/minified/site/pt-BR/gemstones/containers/podman/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/containers/podman/index.html_br_8d775fded31e6cf8f88ebd88eb7b70490956d33c318afb23becacd1fa8a10f29" +path = "static-publisher/static-content/file3065.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/containers/podman/index.html_gzip_7b4b7d582f683289a58e94e9389cd93902af08462f31bb1486e84c9fccba0d7e" +path = "static-publisher/static-content/file3065.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/core/view_kernel_conf/index.html_f0f468b83f12b1f0457aab91bb24f8d1432e00d6c796e71eb6879ca83866cfe2" +path = "../build/minified/site/pt-BR/gemstones/core/view_kernel_conf/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/core/view_kernel_conf/index.html_br_968761b19875aed5b0aca87a46527d318df06214e6ce4096b2bf06d9b24b011a" +path = "static-publisher/static-content/file3066.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/core/view_kernel_conf/index.html_gzip_7632f3fb350601ce8ddc15eeba07a5d49476c793de59df7de9dec6fc219df205" +path = "static-publisher/static-content/file3066.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/dnf-swap/index.html_96a82977926f4640cf2f9088cc5320f63a74edfa884dc2fa65d49fd9ff02f9f4" +path = "../build/minified/site/pt-BR/gemstones/dnf-swap/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/dnf-swap/index.html_br_b5d809dc832656f254b7c142582ba86fe5e9f6e8f57ca36cbba973f6ad119fcf" +path = "static-publisher/static-content/file3067.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/dnf-swap/index.html_gzip_58983492fa36961acee13e1ba82804ead84952521d9d12340eea81a2f8272eb6" +path = "static-publisher/static-content/file3067.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/gemstone_template/index.html_db5e2f970f5a620499c5772424ed87cee202e405ee1f7c2371b0e2731c0de595" +path = "../build/minified/site/pt-BR/gemstones/gemstone_template/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/gemstone_template/index.html_br_c6703891234d5831ce6dec03cbbbdbd8fad4e0dabc46d94a94e73bba0d4a7e5c" +path = "static-publisher/static-content/file3068.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/gemstone_template/index.html_gzip_c151d57f755f3e9a02cc8a7d030acfbef6753d26ec4437a29e0f9a1ae0e9ec53" +path = "static-publisher/static-content/file3068.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/git/00-gh_cli_installation/index.html_33f1d7b8b6fbb6964e909f57576e0591193075ea659b45440e6737e3616a704f" +path = "../build/minified/site/pt-BR/gemstones/git/00-gh_cli_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/git/00-gh_cli_installation/index.html_br_4c8ac15eca5c39ec1d2d1eee9070bc895d5bc1fac8121f0f10b5c9a69512f3dc" +path = "static-publisher/static-content/file3069.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/git/00-gh_cli_installation/index.html_gzip_b18ed60fa558b43b5532302edd63d97adbee4c6777705f24ee954cfebcf1294c" +path = "static-publisher/static-content/file3069.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/git/01-gh_cli_1st_pr/index.html_92984e17f5ef8cb6405d083cbff9509137068a48311b1631fdd713c4e8ce7118" +path = "../build/minified/site/pt-BR/gemstones/git/01-gh_cli_1st_pr/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/git/01-gh_cli_1st_pr/index.html_br_6c5b9d4939f0ea7c303ccf2af8600ef04ad7ae141b63c4b384eb6f7dae86957b" +path = "static-publisher/static-content/file3070.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/git/01-gh_cli_1st_pr/index.html_gzip_17ea5b8298df6cd3697acb546fe80cb45979f48f7e38f7c0200e05ee9c43659e" +path = "static-publisher/static-content/file3070.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/git/02-gh_cli_edit_pr_title/index.html_80079d61b402ba62384802395133bda6aba632db37002ffc6b380bc1ed9fc28e" +path = "../build/minified/site/pt-BR/gemstones/git/02-gh_cli_edit_pr_title/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/git/02-gh_cli_edit_pr_title/index.html_br_d37a80f09a327892c179a0ec70df6530489abd78ead608aa4028325b875c4996" +path = "static-publisher/static-content/file3071.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/git/02-gh_cli_edit_pr_title/index.html_gzip_928c079be4316b4ad1a48c0c5031e6af8189c29bbe796f6ff01cd3bdd0d25be0" +path = "static-publisher/static-content/file3071.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/git/02_github_web_edit_pr_title/index.html_3d6b72d4947761972e226d5c1f908fcaafe4feb8435a5706c0cb6695ef062b48" +path = "../build/minified/site/pt-BR/gemstones/git/02_github_web_edit_pr_title/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/git/02_github_web_edit_pr_title/index.html_br_f15efc41145828128c0342b67bf2b50c0dd9dae074861be5c5b7b0a7e053e331" +path = "static-publisher/static-content/file3072.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/git/02_github_web_edit_pr_title/index.html_gzip_2e2cd023349a0a04bf150e689a403866a6b33759ba82fe516332d28f8ca37471" +path = "static-publisher/static-content/file3072.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/git/feature_branch_workflow/index.html_d2a74ffecb67b185dbd4cd0ce473a5f5dd548e8250463672c98dcb1d4632ad39" +path = "../build/minified/site/pt-BR/gemstones/git/feature_branch_workflow/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/git/feature_branch_workflow/index.html_br_9d1d1b994df84de639d0bc8e793da6a6894842179310578a0d8f85584ddfc014" +path = "static-publisher/static-content/file3073.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/git/feature_branch_workflow/index.html_gzip_8e7ff01090da81e29b8a2b67d36c492998635b10d212fb04aafdf8ab84a66c43" +path = "static-publisher/static-content/file3073.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/git/fork_and_branch_workflow/index.html_8e422c259221155b5b8a24681b88ce438d4b696794e8eb8e4394761a9f0b2901" +path = "../build/minified/site/pt-BR/gemstones/git/fork_and_branch_workflow/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/git/fork_and_branch_workflow/index.html_br_e7ff225daba259eaa9128eb2290a7f85e247355a068e6af4620f45683615b751" +path = "static-publisher/static-content/file3074.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/git/fork_and_branch_workflow/index.html_gzip_e34d8da152dc3986cdefce6555841361b68b11e0e5e0a1f1287bae934ab20481" +path = "static-publisher/static-content/file3074.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/git/git_pull_vs_git_fetch/index.html_09bf4cd31d090d621357e3bcb38b1563723f2e32b8d9707d16c1d6afa96de0e5" +path = "../build/minified/site/pt-BR/gemstones/git/git_pull_vs_git_fetch/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/git/git_pull_vs_git_fetch/index.html_br_4765866ed2758438db71f1bc93365319613e6e77518fee3d5a045c19d10291bc" +path = "static-publisher/static-content/file3075.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/git/git_pull_vs_git_fetch/index.html_gzip_cf835103dcda6c5f210f4e3029888856ea16bd12b7d19be3d7d78e1020365608" +path = "static-publisher/static-content/file3075.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/git/git_remote_add/index.html_cf4967c3f8efc74dd283094e265c1c94180f7d75ffb773e9d65d2648094e006e" +path = "../build/minified/site/pt-BR/gemstones/git/git_remote_add/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/git/git_remote_add/index.html_br_28063f306406b89c625d19364a875dafab73e1c23f50c65f23748ff902f878cf" +path = "static-publisher/static-content/file3076.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/git/git_remote_add/index.html_gzip_4a88961af7d4b3b1f6ce78760fcabe155c5d60958ec030b22db28834d54b3adc" +path = "static-publisher/static-content/file3076.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/git/tracking_and_nontracking_branch/index.html_46ab595470c299b9163a50705936cb21f1e687853a910cea0044c87568c8d6b0" +path = "../build/minified/site/pt-BR/gemstones/git/tracking_and_nontracking_branch/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/git/tracking_and_nontracking_branch/index.html_br_d1c3cd0d68faac5380b3a20e2fb78a9d18ef8832f314b256ed75a25565a5fb1c" +path = "static-publisher/static-content/file3077.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/git/tracking_and_nontracking_branch/index.html_gzip_bb911a805e48581f868f10587dc2acdae84a574db569a4b24f64973492b6074b" +path = "static-publisher/static-content/file3077.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/htop/index.html_8dab4f918d29ef5761d68819903f7a19a3cc187c1d1dff428377a400b46da858" +path = "../build/minified/site/pt-BR/gemstones/htop/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/htop/index.html_br_f76b1c9ef9850e467ecdbf3dbd5bfe269cae707cc39fb11c6fda6552f4d756f0" +path = "static-publisher/static-content/file3078.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/htop/index.html_gzip_2007bd1bb1c71a75c513d8fbf41bbcb7328fded896a068e9bf1b13ee4b2d1d6e" +path = "static-publisher/static-content/file3078.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/https_rsa_keygen/index.html_918891474db66b138f9b1d9586af4fc9c484e365523bf48093fab31fda9a6f8d" +path = "../build/minified/site/pt-BR/gemstones/https_rsa_keygen/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/https_rsa_keygen/index.html_br_228552e0ce593fadc2817fb1d4a5ef086d9c2e4ecef7578f7b4dad1bda93a979" +path = "static-publisher/static-content/file3079.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/https_rsa_keygen/index.html_gzip_d80d14ba28a008a08c66f86e62734609e57ac01ad99b53987f474620002f8408" +path = "static-publisher/static-content/file3079.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/index.html_84b615077c5fcba3b8e2e0c2d7853ed453ad06eecbaf90ec7c231f1de88717e1" +path = "../build/minified/site/pt-BR/gemstones/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/index.html_br_bcc7f579a5ded7a7b5559ae7909876b14c2bfa30847759142e5fd751d938749b" +path = "static-publisher/static-content/file3080.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/index.html_gzip_61b2aef733d6465df8df834d7da4199e784e47e24df5a77283ad457304d2f3d5" +path = "static-publisher/static-content/file3080.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/markdown-demo-v2/index.html_ba46f0f17816b03c7e1716c538b667e86249f8ec0e54b85e899c7bbe12be43fd" +path = "../build/minified/site/pt-BR/gemstones/markdown-demo-v2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/markdown-demo-v2/index.html_br_2de8cd7db5d95d1fe1dbbd85772ee346abaf466ea2125d77c5c8dd24aab8e152" +path = "static-publisher/static-content/file3081.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/markdown-demo-v2/index.html_gzip_98c53275342b31454f64b2a86915f1a225b28830542436b0ea450fc73f988b42" +path = "static-publisher/static-content/file3081.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/network/RL9_network_manager/index.html_1faf5793379565416817182e56d448fd159d724a9c2c2f101f719a5a9797a013" +path = "../build/minified/site/pt-BR/gemstones/network/RL9_network_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/network/RL9_network_manager/index.html_br_9a99f6b5be00f5c80d39c5e1c45858603d9eaa0011884431bdd6e135c1431b53" +path = "static-publisher/static-content/file3082.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/network/RL9_network_manager/index.html_gzip_7396d06b923c1f71317d3264c47f6b8296e38f0fd311ecaa27be2b7b57ec1fd6" +path = "static-publisher/static-content/file3082.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/network/iftop/index.html_0082c8dd1b9eabcceabc5ee34b85d3a3c832a04e72f290f4bd41174fe55ff3d4" +path = "../build/minified/site/pt-BR/gemstones/network/iftop/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/network/iftop/index.html_br_cb7e0c78b26faec46e128ff0e866bca21c5fcf3b7a529b9cd51076cd301d9a8b" +path = "static-publisher/static-content/file3083.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/network/iftop/index.html_gzip_6bb19b3d2787071a48740ff22ce3487dcb555978cc484325734ed6299bfac795" +path = "static-publisher/static-content/file3083.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/network/mtr/index.html_199d53c33beac2c634a4443369cf7683460fb91a218b663947d337ca4db1f57a" +path = "../build/minified/site/pt-BR/gemstones/network/mtr/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/network/mtr/index.html_br_2b17cd1347734bcac038bdb3c8419807a8e81f991368c0ee17133a4fffe8c879" +path = "static-publisher/static-content/file3084.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/network/mtr/index.html_gzip_bc3f037ad8c315d19bc3be101a63ab1aa908cdf99429921529af7a2ea55057b2" +path = "static-publisher/static-content/file3084.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/network/nload/index.html_0c4e2892dddc472a4a795aea27f3ed6a72f48d6971585f527de6a909df2ae654" +path = "../build/minified/site/pt-BR/gemstones/network/nload/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/network/nload/index.html_br_22aed1f3e464da7206ef9fe4cb910b6f1b61519894bf250bbd45bb2c6b18421e" +path = "static-publisher/static-content/file3085.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/network/nload/index.html_gzip_fb2b7903f897fb26f3188e6705f3f7b513cf5a2d6357911b02a033499dc7e37e" +path = "static-publisher/static-content/file3085.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/network/nmcli/index.html_687850b29f857588533d560f29a26334f5529f29ea2ab1af566378fca08cbab7" +path = "../build/minified/site/pt-BR/gemstones/network/nmcli/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/network/nmcli/index.html_br_6fd9b8a9c3288b9aa4c642564652be214cbbb2761195ebc6cb27e236f0049692" +path = "static-publisher/static-content/file3086.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/network/nmcli/index.html_gzip_ad2af6a1dcaf92d880dc54bbf09bac15529aa84ab0cd325576b5aa8b46a70432" +path = "static-publisher/static-content/file3086.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/network/nmtui/index.html_346f16f5fee22b2e40e3a12c29fa422c3a351b74835c5bb7574d266d9efdd106" +path = "../build/minified/site/pt-BR/gemstones/network/nmtui/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/network/nmtui/index.html_br_4947695e2ceef4fdd765fd88f5b60caedeab03c725b986adc3976b2a1dde29f7" +path = "static-publisher/static-content/file3087.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/network/nmtui/index.html_gzip_83d30cfe5ab6fb164a4060a47eec95e6408e4180ef9e5f0b3be855bbfe48aba3" +path = "static-publisher/static-content/file3087.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/perl_search_replace/index.html_17d8f8965a3d05b32852b2c580b11f41c45e6944f40fb47ce6df506be627507f" +path = "../build/minified/site/pt-BR/gemstones/perl_search_replace/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/perl_search_replace/index.html_br_165adfcf979274e5556b61c28dacedbf02502183391ee383f7eb729bb7c770fe" +path = "static-publisher/static-content/file3088.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/perl_search_replace/index.html_gzip_2c74757195bdbb64a382cd615ec85f4cfd5464eefc44bcf2cd13054173704ad7" +path = "static-publisher/static-content/file3088.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/rpaste/index.html_b3ba831100434efefc85ec805c5e4264a03794910dfe58a521f7b655c85af6a3" +path = "../build/minified/site/pt-BR/gemstones/rpaste/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/rpaste/index.html_br_f0e85d568d22da7dbca8e47364de8aab427f74ca867431fc0ba2216370b1e367" +path = "static-publisher/static-content/file3089.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/rpaste/index.html_gzip_1cabb467d139fc679c5fe024d2578e6c47316f89a94ed5a16db569e33701d0bf" +path = "static-publisher/static-content/file3089.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/scripts/NoSleep/index.html_977bd713b853fe3bf0a1bf98b47772946d9363d5599654871be8fcd784d3c358" +path = "../build/minified/site/pt-BR/gemstones/scripts/NoSleep/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/scripts/NoSleep/index.html_br_f420a398ffe4cc79862f23a696802c05e8a0bcda0b0fa2b40bc21e4f9916e490" +path = "static-publisher/static-content/file3090.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/scripts/NoSleep/index.html_gzip_7c66e86749d8421ec8898f8a912cdf852be5fafc4351c40e2d99944aae059c10" +path = "static-publisher/static-content/file3090.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/scripts/bash_stub/index.html_955d5c71b177cd8cfd32f12ac7afc07af3a9be2b843d823203636f77003b80cd" +path = "../build/minified/site/pt-BR/gemstones/scripts/bash_stub/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/scripts/bash_stub/index.html_br_06113118ec321767ceb81fc1513ee24fe19323fa6d609a9b827621a06507eb25" +path = "static-publisher/static-content/file3091.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/scripts/bash_stub/index.html_gzip_19832932c5fddfa2938072596cd0ed2e24b9de9cd11a2e2905d04295e746669e" +path = "static-publisher/static-content/file3091.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/sed_search_replace/index.html_a2133cc5702fcc358bd2f46bdefcaa9b43347ad4635b549eba571f812eae3c8c" +path = "../build/minified/site/pt-BR/gemstones/sed_search_replace/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/sed_search_replace/index.html_br_134150bff7c7c7ba93709580e176f26337ead714c7ed1bcc98690a3f7752b861" +path = "static-publisher/static-content/file3092.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/sed_search_replace/index.html_gzip_a3a581a20b18df4e2588d4e1560f286cd4829997a6cbc7a7cc401bb085f2da20" +path = "static-publisher/static-content/file3092.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/setup_local_repo/index.html_b9c6edaf8772a3062e98f81cd6c9cb0b9c2f3eb4aabe4b1b68b76a3f4f4a3ad7" +path = "../build/minified/site/pt-BR/gemstones/setup_local_repo/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/setup_local_repo/index.html_br_079eaf6451599d6ab2f6df9ba2c98499a0f662403428a7089e58505eb4ecb36d" +path = "static-publisher/static-content/file3093.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/setup_local_repo/index.html_gzip_13751cf6365f11b0a88f8f85cf1d5a223df07fe7482bc6ec470e22bbe81f6ffe" +path = "static-publisher/static-content/file3093.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/string_color/index.html_6802060fcb2d613932839986442676863098ed6cbe30aef0580db24a48f50c0d" +path = "../build/minified/site/pt-BR/gemstones/string_color/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/string_color/index.html_br_f993d644e7e03eb2e82b15afcf864d5f3e002b33d1974aea46e1e76db264f3cc" +path = "static-publisher/static-content/file3094.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/string_color/index.html_gzip_dac84920ff58c3a083fc41e8ba3426f154886d6737fb0cbcabd25e81ae93e671" +path = "static-publisher/static-content/file3094.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/systemd_service_for_python_script/index.html_7e842681a4743f23790a110a6a62c5c03e2d5dd9a3a2a38465ebb65eac5a2378" +path = "../build/minified/site/pt-BR/gemstones/systemd_service_for_python_script/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/systemd_service_for_python_script/index.html_br_69d724593c19647afd73be22261f40df3f0c474dc931e8f3c9286977e84e7332" +path = "static-publisher/static-content/file3095.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/systemd_service_for_python_script/index.html_gzip_5661f1a7577c7f1f0414031f880503aec5d5a6611452bd700d8cac3106bcf59d" +path = "static-publisher/static-content/file3095.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/test_cpu_compat/index.html_4daf0e457a32271b81323e256c00348665fee01056fee950d8f6cb851a4a204d" +path = "../build/minified/site/pt-BR/gemstones/test_cpu_compat/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/test_cpu_compat/index.html_br_7fc3a3877d97232e100096288bfd2c58ecfddec0739656573fe67041582c5637" +path = "static-publisher/static-content/file3096.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/test_cpu_compat/index.html_gzip_418a4232848a6341f53efc714220cdec0917dce8b4fde3163559d1f0af36d809" +path = "static-publisher/static-content/file3096.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/torsocks/index.html_eb5b4d62599738e033b762842f75376ff379f6148ae83617705e106b9b6b8fb9" +path = "../build/minified/site/pt-BR/gemstones/torsocks/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/torsocks/index.html_br_5d59aaaeb21bc5ca2d10d97467bf6af26df56b9dca85aea46019d58a78e0afc9" +path = "static-publisher/static-content/file3097.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/gemstones/torsocks/index.html_gzip_2b420f86a9bb51447a27474e3a70bb05b2390613d06f439ad547974cc85a56cb" +path = "static-publisher/static-content/file3097.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/8_6_installation/index.html_fd4c7db4a51e894842aa58d32991deb5ce4076778c4141c909481023693ddca3" +path = "../build/minified/site/pt-BR/guides/8_6_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/8_6_installation/index.html_br_c6116259be964637f1c60093e2f381c6b053b8785dd379468bc983cd122bcf69" +path = "static-publisher/static-content/file3098.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/8_6_installation/index.html_gzip_03bd81ea01e0d29820c73e37d865ecc9a7eb0aac252871699d23547c6da37fbf" +path = "static-publisher/static-content/file3098.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/automation/anacron/index.html_536d99e0db7c8ec4aad98da8ded907d1ca8b62f5f21f0e9471061086b046a6ef" +path = "../build/minified/site/pt-BR/guides/automation/anacron/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/automation/anacron/index.html_br_a7475c5627adb71e4e27bf651085685a1f22f522f4c6d4bc4d3e2dbedbc66a53" +path = "static-publisher/static-content/file3099.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/automation/anacron/index.html_gzip_1e5dbdc0f1ced3f611e9ad42e655014535462cd9e0991072a52c637c2a776384" +path = "static-publisher/static-content/file3099.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/automation/cron_jobs_howto/index.html_aef3c81ecf2a528d15eec7f9bc870c71f722e55b87b31255559b7476dd4a27ed" +path = "../build/minified/site/pt-BR/guides/automation/cron_jobs_howto/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/automation/cron_jobs_howto/index.html_br_1185e714e22afc031b73764ebfe53c73aeb14acbd5e042f26342804072dd1775" +path = "static-publisher/static-content/file3100.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/automation/cron_jobs_howto/index.html_gzip_6d31bc82b97da06c41903f68d225b23667083096e652d21048d4200c9b91d478" +path = "static-publisher/static-content/file3100.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/automation/cronie/index.html_3f545bb2930909c3f2d207aeb6f218313738cbdbe75ac90c0aa1ede8cc67b9c1" +path = "../build/minified/site/pt-BR/guides/automation/cronie/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/automation/cronie/index.html_br_6660fa42634568d89418681d96624ab6e5e4c3cb42a945f512c07449be27ade9" +path = "static-publisher/static-content/file3101.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/automation/cronie/index.html_gzip_fd68e0a22d136383a3448713f87ed356be91262dc5bc7958cbab39fd061168fa" +path = "static-publisher/static-content/file3101.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/automation/olivetin/index.html_2fe02e0a919c332e4f4fdf4d26a591053d095f4f75635e4afbedfeaaa94afbde" +path = "../build/minified/site/pt-BR/guides/automation/olivetin/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/automation/olivetin/index.html_br_2e22f3ff30e0f956d490a150da776b78ad9bcd7ebae014dba30c863e3ca0829d" +path = "static-publisher/static-content/file3102.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/automation/olivetin/index.html_gzip_4a051113105daa85dd68ccfbb22b482610082ef8ded7a2dcf1e23d18e8282bd7" +path = "static-publisher/static-content/file3102.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/automation/templates-automation-packer-vsphere/index.html_f22d6312c50a476964bfc780b8225e164f10c6f90463e2b4fbcdb83c6fc15b9d" +path = "../build/minified/site/pt-BR/guides/automation/templates-automation-packer-vsphere/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/automation/templates-automation-packer-vsphere/index.html_br_8b793a181305eab778db39acffdc791b76571ff4cda905131fbb5cb30e918670" +path = "static-publisher/static-content/file3103.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/automation/templates-automation-packer-vsphere/index.html_gzip_54b052b4df16901e793f66b9ac81be42642a818cf227d58cb58e35dc547a3fb8" +path = "static-publisher/static-content/file3103.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/backup/mirroring_lsyncd/index.html_c5c452dd5bc18f1f93260a754bd00fd7fe8b45a43771c7847aed94c3141116e4" +path = "../build/minified/site/pt-BR/guides/backup/mirroring_lsyncd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/backup/mirroring_lsyncd/index.html_br_76f110da45efaba7f062e67003d14822d7e672b31ce17a5f7dd6925efc9bcafb" +path = "static-publisher/static-content/file3104.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/backup/mirroring_lsyncd/index.html_gzip_6e3f0115255fdc0d1a9b6ce1b455688b40ca630c13e9b64ebb99d4a97e335114" +path = "static-publisher/static-content/file3104.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/backup/rsnapshot_backup/index.html_aa27767210193f09ff2948790fb537e1ad3350b1ab80d705cc699896ee6fb4ad" +path = "../build/minified/site/pt-BR/guides/backup/rsnapshot_backup/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/backup/rsnapshot_backup/index.html_br_ba6dc467fb81c29ac685beb7a98e12f9a944d5f289ca6ba4e771c19014bd3492" +path = "static-publisher/static-content/file3105.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/backup/rsnapshot_backup/index.html_gzip_331ce1ca43ed90144130fce46fb9c8e8676864b3b49f2c7146f494a8b4c7e66d" +path = "static-publisher/static-content/file3105.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/backup/rsync_ssh/index.html_4ead2f7541ec11790ff21061b3bdb7d6a01ba658a6edcc0a74bac2d9bcfdef0d" +path = "../build/minified/site/pt-BR/guides/backup/rsync_ssh/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/backup/rsync_ssh/index.html_br_5fae4ee8a87fa0057064364e74c0a064a2a7911f6510c48c4bdbc160075043cf" +path = "static-publisher/static-content/file3106.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/backup/rsync_ssh/index.html_gzip_c5a101d063497ae5ae65b65b37de6c824ca259477eef796804ec4aaabe690011" +path = "static-publisher/static-content/file3106.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/cms/cloud_server_using_nextcloud/index.html_257c4802fc358d49232a0958749330c89410dc2a2a696eb5d7ae02103480acdf" +path = "../build/minified/site/pt-BR/guides/cms/cloud_server_using_nextcloud/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/cms/cloud_server_using_nextcloud/index.html_br_026754332452df1767d89c98c2596903231cfffd1d5320675013052d8c21a33e" +path = "static-publisher/static-content/file3107.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/cms/cloud_server_using_nextcloud/index.html_gzip_06d312339d2680d863b77aa13fdf5d890cfe63f71066a1cbb1e38d8a682b756e" +path = "static-publisher/static-content/file3107.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/cms/dokuwiki_server/index.html_6c890dd7ddb0767ff0f74a450208bad6b2619b078d1af75149b31a7468a33cf2" +path = "../build/minified/site/pt-BR/guides/cms/dokuwiki_server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/cms/dokuwiki_server/index.html_br_181ef8ab105225009eb050ba8033dd92ff3e9c9c3a3c02a6570072007212f591" +path = "static-publisher/static-content/file3108.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/cms/dokuwiki_server/index.html_gzip_32bf1f2ed8ff2f9ab45fa4ef2c909a55fa16cbf0170fc9079f83916d7f061dd2" +path = "static-publisher/static-content/file3108.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/communications/asterisk_installation/index.html_06d423f38e3003da74f5e0514f3f16ed4e3856327922c9356f309b9edc5fe419" +path = "../build/minified/site/pt-BR/guides/communications/asterisk_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/communications/asterisk_installation/index.html_br_180ffc1dba1441a3640af0f1ae77bbb26fcb4f1bf34376ab6bdb6fddea610c6e" +path = "static-publisher/static-content/file3109.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/communications/asterisk_installation/index.html_gzip_c64e735807a3ae79bc3a084d19a766b4670e4ffab90bb2ca395b254449905147" +path = "static-publisher/static-content/file3109.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/containers/lxd_web_servers/index.html_5da2064ff4944be8572e86bb82f4e71b33525bbb9a75764a682aa79794da060c" +path = "../build/minified/site/pt-BR/guides/containers/lxd_web_servers/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/containers/lxd_web_servers/index.html_br_c2a875acc853bc83c484c8ccd0a7b8662a386e17c087302c5d926f2c29bd5223" +path = "static-publisher/static-content/file3110.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/containers/lxd_web_servers/index.html_gzip_82131897634e79aad91e8e145633648137f9c154ea685ecfcf3e0bbb20d85876" +path = "static-publisher/static-content/file3110.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/containers/podman-nextcloud/index.html_b1a948f8cb426d05c455a42f8a6fee74125bdaf147e68203e64d63f8eee0df9b" +path = "../build/minified/site/pt-BR/guides/containers/podman-nextcloud/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/containers/podman-nextcloud/index.html_br_758f83b28bbf302770a8f54af8c3db81baf9f37dca25e4e6be2539cc4f4fe104" +path = "static-publisher/static-content/file3111.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/containers/podman-nextcloud/index.html_gzip_cbf435489da7217355409258c06eca02ebec18c8c07c6dc1a03c340fdf91a6b0" +path = "static-publisher/static-content/file3111.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/containers/rancher_and_kubernetes/index.html_083015a1f5e75593ce2b40b5e972d4586e7d5b8935ee8f98d4f0f334d834c01f" +path = "../build/minified/site/pt-BR/guides/containers/rancher_and_kubernetes/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/containers/rancher_and_kubernetes/index.html_br_7d6007f0653edc9c4adc0b1b3589f177564bcca811fbc79a779a18195b424c2b" +path = "static-publisher/static-content/file3112.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/containers/rancher_and_kubernetes/index.html_gzip_200564e1010b655b384364467f3440290950af66bf854952682f80ebafabdb78" +path = "static-publisher/static-content/file3112.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/contribute/beginners/index.html_0d49ff9ceaec0672fad44f9ea25ff8767bfd40e6756cce5bdbd3f6ccefbc16e5" +path = "../build/minified/site/pt-BR/guides/contribute/beginners/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/contribute/beginners/index.html_br_16349a4eebbda1ff44b8a2007bee2809ac38e95c4cc49123e410fb6316c08b1c" +path = "static-publisher/static-content/file3113.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/contribute/beginners/index.html_gzip_4b18cbf9a0df6a722ad1f2ea7d7c8a5ee9c91cc735b56190b5522e207ba81617" +path = "static-publisher/static-content/file3113.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/contribute/createnew/index.html_36ad1ee6206177914c178499bb751ff221c1477eddd3b7e48aaf16a1e538f91b" +path = "../build/minified/site/pt-BR/guides/contribute/createnew/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/contribute/createnew/index.html_br_afd6c37b1162fe686c389f0548fd44331461557b9331b63a5c8e9af38a790b8c" +path = "static-publisher/static-content/file3114.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/contribute/createnew/index.html_gzip_52cb083b8493c46707c2a81b3f5ed86a08450204aa199d4d6519162878e66b4e" +path = "static-publisher/static-content/file3114.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/contribute/index.html_5ae16ba91c1aaf1ba8e9f8ece3184bbae74a97442221a2d44d9578f8644fd499" +path = "../build/minified/site/pt-BR/guides/contribute/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/contribute/index.html_br_15ede39d3b4c9c37a9833f744e289fa618dbc9a5e0bb2b19c8aaa0f13482c3fc" +path = "static-publisher/static-content/file3115.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/contribute/index.html_gzip_27dcf119d2c49f04996e9952de3500eb5c48752f757fa93436ddce5fcfa1a2cf" +path = "static-publisher/static-content/file3115.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/contribute/localdocs/index.html_618a484f0424377616dc51513d2284b18d43454eb721bf267cc8bc911ff83782" +path = "../build/minified/site/pt-BR/guides/contribute/localdocs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/contribute/localdocs/index.html_br_38e14ec6d1650007eb266a60de7d182a0576c4a54156730e8bdef56503243dc7" +path = "static-publisher/static-content/file3116.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/contribute/localdocs/index.html_gzip_7aa1fa1c5e68d1d1b026489a218f0da5cc2ed2311f1c01b88b6fba3df7ad13d9" +path = "static-publisher/static-content/file3116.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/contribute/localdocs/local_docs/index.html_dfbd831d05ef6fb78a82a7f573bc7c32200912d6a240eee0313c039f53d43021" +path = "../build/minified/site/pt-BR/guides/contribute/localdocs/local_docs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/contribute/localdocs/local_docs/index.html_br_4bb1e518c96d1c16aa1c262914aa5906abedf104c1bd327fedd6c1546de2aef8" +path = "static-publisher/static-content/file3117.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/contribute/localdocs/local_docs/index.html_gzip_57b31a79fc26d668047f294454a2e158d64eb24297b50fff82b4705b24b9646e" +path = "static-publisher/static-content/file3117.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/contribute/localdocs/mkdocs_lsyncd/index.html_0c990596cb7d6f7c2d855fdc4e64afbb793212803f6e0439fc54e67a6af2e681" +path = "../build/minified/site/pt-BR/guides/contribute/localdocs/mkdocs_lsyncd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/contribute/localdocs/mkdocs_lsyncd/index.html_br_e9c5833cec06080a620bb43ed0f4c630f60198109025c5f0697dda7565654013" +path = "static-publisher/static-content/file3118.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/contribute/localdocs/mkdocs_lsyncd/index.html_gzip_1c01f1d80e13816c5a7b1763142628be564be408485643678cb97fa4a3764dbd" +path = "static-publisher/static-content/file3118.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/contribute/localdocs/mkdocs_venv/index.html_36bc462ed7ca83ef32bc59dd7243322d1e15f9c6ed2a8fd51106eee8c5176278" +path = "../build/minified/site/pt-BR/guides/contribute/localdocs/mkdocs_venv/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/contribute/localdocs/mkdocs_venv/index.html_br_b2b1d0a9b3db490b02dd9d713fbee88f77d5f02b7de42cdee0e8d3295c65d512" +path = "static-publisher/static-content/file3119.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/contribute/localdocs/mkdocs_venv/index.html_gzip_789fb1334c9cd6eba05ddc3a32f572facee952ee66f69dc25d9179910acc4bcf" +path = "static-publisher/static-content/file3119.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/contribute/localdocs/rockydocs_web_dev/index.html_3246259fd59392de0bf1f1ef855e67dea43d84bf42243f802f69494fb1dc6ebd" +path = "../build/minified/site/pt-BR/guides/contribute/localdocs/rockydocs_web_dev/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/contribute/localdocs/rockydocs_web_dev/index.html_br_33592757148ab430934b6483924a1f5eef280ca8cd470decd36140418094a95b" +path = "static-publisher/static-content/file3120.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/contribute/localdocs/rockydocs_web_dev/index.html_gzip_6e5e5de12eaac9b781f72af918a2085d690753edf75461e5b6a045aec025915c" +path = "static-publisher/static-content/file3120.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/contribute/localdocs/rockydocs_webdev_v2/index.html_851d00f89a7c9be64984757a4df1b0d0861929694aaf4374d9a1f7dfc207c89f" +path = "../build/minified/site/pt-BR/guides/contribute/localdocs/rockydocs_webdev_v2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/contribute/localdocs/rockydocs_webdev_v2/index.html_br_e303e4758e9cf9561cc3ea7599e845c366a62d87108253e597437c040dccb82c" +path = "static-publisher/static-content/file3121.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/contribute/localdocs/rockydocs_webdev_v2/index.html_gzip_c18398c369ba9f58187e47ab722a67700686c5a7c648984ea4497fc5acbba3e2" +path = "static-publisher/static-content/file3121.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/contribute/navigation/index.html_ded7930a5075d5369d8d7558ff39cd057f1ee471a37555c9249c010dc8b602af" +path = "../build/minified/site/pt-BR/guides/contribute/navigation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/contribute/navigation/index.html_br_0fa3386c13d9e6e2e705e76029d985ba4380020a3f3f00a3c7d60dcc1681fbe3" +path = "static-publisher/static-content/file3122.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/contribute/navigation/index.html_gzip_87640dfa35151796c7742307ed1f4a50d3bcd75eaadac0bc85fceac84b3312e6" +path = "static-publisher/static-content/file3122.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/contribute/rockydocs_formatting/index.html_79effe30437ebdd543674f82e51f45dfb53d3ddb50a173e65c2faabc209ba853" +path = "../build/minified/site/pt-BR/guides/contribute/rockydocs_formatting/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/contribute/rockydocs_formatting/index.html_br_6592bd218bf4626fd9283183cc795eb8c5d25ccbcb7ed837ec0feeb560841d78" +path = "static-publisher/static-content/file3123.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/contribute/rockydocs_formatting/index.html_gzip_cfe303c13fadbe148d509312d1d1c2c206ecf8e2aca93644d615a3f377803c85" +path = "static-publisher/static-content/file3123.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/contribute/style_guide/index.html_d90f0f1cb58fc9182b09315acdffadac28edf9560f74fa953fcd759c0eb837ce" +path = "../build/minified/site/pt-BR/guides/contribute/style_guide/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/contribute/style_guide/index.html_br_b5ea620d33ab4f4866f2d8a4c7fecc84d608cad5d744afcf7fe41f97b45552bb" +path = "static-publisher/static-content/file3124.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/contribute/style_guide/index.html_gzip_6fce57605cd474b4cc4c236ec14becca360dac13836dc91ca6d0ce6c3a1511c6" +path = "static-publisher/static-content/file3124.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/custom-linux-kernel/index.html_efd10a56ae57bfcc6a228237b2609cc9c9de2b5623ce24afe228447d5980862c" +path = "../build/minified/site/pt-BR/guides/custom-linux-kernel/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/custom-linux-kernel/index.html_br_755f14fc8ed30ed664d63c9a31718cab8ef5af59fbe12dc9a58922d88a726ce7" +path = "static-publisher/static-content/file3125.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/custom-linux-kernel/index.html_gzip_56ab31c37a0c522ce93ef90f943a137220d293611b085962bf842b3143271405" +path = "static-publisher/static-content/file3125.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/database/database_mariadb-server/index.html_eb4ed1cb84d6c1fdcdb63d66fdd0282e28a7d95645c2127e0a144258078398bd" +path = "../build/minified/site/pt-BR/guides/database/database_mariadb-server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/database/database_mariadb-server/index.html_br_82915ae8204d5f829b27a389a2f9e303e518adc73b54e5383a5b2f8c6c39d12b" +path = "static-publisher/static-content/file3126.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/database/database_mariadb-server/index.html_gzip_aad66492ff9cd94b41be0ba3d8410641205f2fc2337caabbcf3e48cedbcdd669" +path = "static-publisher/static-content/file3126.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/desktop/kde_installation/index.html_084cf0e770d186fd232e996f7ea3db19a09100349d2e16b64cb6e80c1a6f5af8" +path = "../build/minified/site/pt-BR/guides/desktop/kde_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/desktop/kde_installation/index.html_br_a7170f4bc0f44b14a7fc3540114584bff713f71ddae3ec9fe8ebf8daf5ce1a24" +path = "static-publisher/static-content/file3127.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/desktop/kde_installation/index.html_gzip_6b370ab0ed0a34889ea853a0204daf05d54c5808fd9fead46e07c68be168dbec" +path = "static-publisher/static-content/file3127.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/desktop/mate_installation/index.html_902fe43377cd966abdf93e418b5af51a4fc617bbe0ffbc6761428522661d2adb" +path = "../build/minified/site/pt-BR/guides/desktop/mate_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/desktop/mate_installation/index.html_br_e293f9f06b8ebd64edec17d3c0161847468c973a96e56b68df48b16e06cc30fa" +path = "static-publisher/static-content/file3128.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/desktop/mate_installation/index.html_gzip_18f50d3867451fb6df357a655aedcd7820e103b017b1ded68153a0e78b9e8c1b" +path = "static-publisher/static-content/file3128.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/desktop/xfce_installation/index.html_1ab163d7378fcefc1371dda480f006b1bd6b64b7beb64c698cbd2a385d5bfb3a" +path = "../build/minified/site/pt-BR/guides/desktop/xfce_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/desktop/xfce_installation/index.html_br_db62834c6bb8f6706e63b6730ee6ea13eeb4d21e4f6c6ae307b528bd5ccf4657" +path = "static-publisher/static-content/file3129.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/desktop/xfce_installation/index.html_gzip_810874363d402a8fc619ab090251a4310f3e8939078eae2975a43fb5b2ebc03d" +path = "static-publisher/static-content/file3129.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/dns/private_dns_server_using_bind/index.html_08551d0948b8508a77cff017d2990c03d129ca3a074161e432052b8156fa228e" +path = "../build/minified/site/pt-BR/guides/dns/private_dns_server_using_bind/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/dns/private_dns_server_using_bind/index.html_br_8b7419c07da99e0bfa7ced313c25a3aba9bba96dd21d979d48d691c4af5a90ca" +path = "static-publisher/static-content/file3130.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/dns/private_dns_server_using_bind/index.html_gzip_416c1921b67e0e78947846dd5177627e7e2fdfca47715bf1d3a8a5c899aff47f" +path = "static-publisher/static-content/file3130.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/editors/micro/index.html_1b46aa6ec75645c7adb7c9593e04bbf1206e1d2e9f31225b93cd334f60afba7c" +path = "../build/minified/site/pt-BR/guides/editors/micro/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/editors/micro/index.html_br_90897e9fc858340151633da4d5c56d4fccb4537fd8effeb3d14f08171fccfa4b" +path = "static-publisher/static-content/file3131.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/editors/micro/index.html_gzip_e0b831da9fbede61e09035736d34d9e100fb4afb53003626d2041158ea306aae" +path = "static-publisher/static-content/file3131.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/email/01-email-system/index.html_8c509d996d16679c3ad0e85c7fac24b8ffae45f694f3a1c183623dcc57ca41f4" +path = "../build/minified/site/pt-BR/guides/email/01-email-system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/email/01-email-system/index.html_br_bbfb7cea79afa3c8c91cd7c9067040c64d150d23fe1690b0353d9005c10aec80" +path = "static-publisher/static-content/file3132.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/email/01-email-system/index.html_gzip_8c4373474589dcd4cd70185bdb7fca7bcc772cfd3e186880279e1d2bffa6232d" +path = "static-publisher/static-content/file3132.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/email/02-basic-email-system/index.html_5f405bb856a6848d6c322ab32eed3325d5bfeef430260b1a945ffbcd2b189529" +path = "../build/minified/site/pt-BR/guides/email/02-basic-email-system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/email/02-basic-email-system/index.html_br_07c343ca06fae43b3f013970e3fba848c6c60d2e2ecc6431e0796f967b75b9b4" +path = "static-publisher/static-content/file3133.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/email/02-basic-email-system/index.html_gzip_f47d07a80dd55e5543051d3aeaa0826e67e896bb32e5348f495e8dcd81d57c63" +path = "static-publisher/static-content/file3133.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/email/postfix_reporting/index.html_280e1215364a7ab8a5585474d7d02cd6147089b4194b0aa7f15f78090456a56f" +path = "../build/minified/site/pt-BR/guides/email/postfix_reporting/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/email/postfix_reporting/index.html_br_f8c728841d3677ed1a6cb954746d1da61b0044147457e42101e43febe81c34cf" +path = "static-publisher/static-content/file3134.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/email/postfix_reporting/index.html_gzip_f9fcfa7dcaec40223af2b7a516397e9bdcf4cfc896aa22be99330e917aaf6c57" +path = "static-publisher/static-content/file3134.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/file_sharing/glusterfs/index.html_bceee04105be5fcc90ac35362bd73f9740d74fb0d7e963b5fffb839e3efbf783" +path = "../build/minified/site/pt-BR/guides/file_sharing/glusterfs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/file_sharing/glusterfs/index.html_br_6665fc10947b14cc8ea16c6b5906800c79dcbe7fa4c3f4e1e8a5377fad5f3c6e" +path = "static-publisher/static-content/file3135.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/file_sharing/glusterfs/index.html_gzip_78b8eda14bb8c4fceab27cbba1a317508780aca28d5a78ef470a0b59d3275ed1" +path = "static-publisher/static-content/file3135.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/file_sharing/nfsserver/index.html_f5a1ccbdd1d5cef7260b9fd94f2291986365a258c16a37a4ad5e633c0b0ab6d3" +path = "../build/minified/site/pt-BR/guides/file_sharing/nfsserver/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/file_sharing/nfsserver/index.html_br_c5254808d6205adb3a9e39fdf3db5b26bd932d45d595dbf3988469789cf2b367" +path = "static-publisher/static-content/file3136.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/file_sharing/nfsserver/index.html_gzip_8a973245e7ada67e857ed2c80dd8cf6d064e086714208b5523f8406fd6ea2e97" +path = "static-publisher/static-content/file3136.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/file_sharing/secure_ftp_server_vsftpd/index.html_885ed5188c67b86951f0be95480fbbbcc5c9c90b1a6a3f9f747b819357a84895" +path = "../build/minified/site/pt-BR/guides/file_sharing/secure_ftp_server_vsftpd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/file_sharing/secure_ftp_server_vsftpd/index.html_br_e4abde4648fc8c26877e4e480c7d5fc7aba773ff55c1a68879fff04b9ebb49ca" +path = "static-publisher/static-content/file3137.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/file_sharing/secure_ftp_server_vsftpd/index.html_gzip_a7897b6129f6586a623e83704d440ba24cb172f6104a3573ce3090b3dc5e3d78" +path = "static-publisher/static-content/file3137.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/file_sharing/sftp/index.html_1762362e66ef98a53fd78ef37b687e607e47b229edb03c181648e5c3926ea8a7" +path = "../build/minified/site/pt-BR/guides/file_sharing/sftp/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/file_sharing/sftp/index.html_br_8a9fef5b61fc0b179b448520d49f9b8c304c5f6c266d092691790a59f5bcc9ee" +path = "static-publisher/static-content/file3138.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/file_sharing/sftp/index.html_gzip_76e05781147b730ec8447a48ea9f5b974f354f365725ebeb07e43e675fa3a394" +path = "static-publisher/static-content/file3138.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/index.html_08d0d6e97bd62d29af4e7f7798fd7282be690dbd0dab1c14863eb071516af9dc" +path = "../build/minified/site/pt-BR/guides/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/index.html_br_890d90ac164edb43a298b13fef46963ae0de9bf4a2535b45d4d02c4a3de6578d" +path = "static-publisher/static-content/file3139.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/index.html_gzip_42ddcb0a407277ce8b27519adeec9ef7d4fc4537bf71a19e6e3450f2f0dc4f3a" +path = "static-publisher/static-content/file3139.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/installation/index.html_45798ef52aadc84865ce0f23ec8793f214ae67037728fe5517dca5f7a6669d34" +path = "../build/minified/site/pt-BR/guides/installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/installation/index.html_br_58276b28fa897828003db70c5bf957abb778c436c78fe88add831a224e55052c" +path = "static-publisher/static-content/file3140.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/installation/index.html_gzip_5ab8d236b2275d60925e9a639a6c95fa7ccdbaae9be4998463da6812675172ea" +path = "static-publisher/static-content/file3140.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/interoperability/import_rocky_to_wsl/index.html_955459a17c2f7abf1b240b8a7dc0081d2123125615658fd9557074be7af1730e" +path = "../build/minified/site/pt-BR/guides/interoperability/import_rocky_to_wsl/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/interoperability/import_rocky_to_wsl/index.html_br_4ae226431377389a739440759e455d358f372697228dec08bf8660d7ef921e71" +path = "static-publisher/static-content/file3141.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/interoperability/import_rocky_to_wsl/index.html_gzip_602ca9999265847fcfba97c9716fe926ff6f15cfa2d8e5929cf5087f711ac286" +path = "static-publisher/static-content/file3141.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/migrate2rocky/index.html_a79831344254b8d3267e4212419cb204cd852ad1ecf03d181fff1cdedc2314ad" +path = "../build/minified/site/pt-BR/guides/migrate2rocky/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/migrate2rocky/index.html_br_bfc50496bdd6213a4f410e1a9768425e1164ad1c7dcfabb2745a718af14cf2b4" +path = "static-publisher/static-content/file3142.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/migrate2rocky/index.html_gzip_09157bafadf5eab2485fc2c3c0b1a6094933a610975f013efe311d2bc002a17a" +path = "static-publisher/static-content/file3142.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/mirror_management/add_mirror_manager/index.html_ae899a9a49d9f94b821b75b5a6af04be02b4d7ac083a16145d9b2e783c5c44f4" +path = "../build/minified/site/pt-BR/guides/mirror_management/add_mirror_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/mirror_management/add_mirror_manager/index.html_br_14a3998d2e27b99e0610f682b21548f96dc03d9ab4d0c88850751da47cf3e9c2" +path = "static-publisher/static-content/file3143.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/mirror_management/add_mirror_manager/index.html_gzip_879ca9762e4b52b7141baca1c1725ad0bec5319a141968bc91419a801d06890a" +path = "static-publisher/static-content/file3143.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/network/basic_network_configuration/index.html_66e9adad5e5c992d2fa6690ee38d5118f2c77095486e5c04bc41d6a301257c23" +path = "../build/minified/site/pt-BR/guides/network/basic_network_configuration/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/network/basic_network_configuration/index.html_br_e068d4db62ce984cffa2d0d37657c6da316a898faa7104d6c4dd069ccb1da2f9" +path = "static-publisher/static-content/file3144.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/network/basic_network_configuration/index.html_gzip_34ed1164062233d2cc283ccbb0c225e2b7081208734bd832573dbd2446be7fb9" +path = "static-publisher/static-content/file3144.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/network/librenms_monitoring_server/index.html_5446b57e4ee40bb4990f0c51e1184b1cd0475b5e59af0520251005dd0a1bca43" +path = "../build/minified/site/pt-BR/guides/network/librenms_monitoring_server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/network/librenms_monitoring_server/index.html_br_5c50ddeac90dd9793e60bd086a775eb58934c42181460c39fd474c358a5f494f" +path = "static-publisher/static-content/file3145.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/network/librenms_monitoring_server/index.html_gzip_838a37b8f239d56c3afdfe3736666f5ff95d123531bb86d51520008a2610569f" +path = "static-publisher/static-content/file3145.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/package_management/dnf_package_manager/index.html_7f78154969bdd44d667718843f429c6acc359247436fa3592aa48e124ed532dc" +path = "../build/minified/site/pt-BR/guides/package_management/dnf_package_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/package_management/dnf_package_manager/index.html_br_aded19af32a865f3e62c9b5f53fbaced92c0ff8d2a40cdf53d2fce06e2f073c3" +path = "static-publisher/static-content/file3146.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/package_management/dnf_package_manager/index.html_gzip_71a193d9435e3d02a593c6e1a27bd26ae4735a0991d8db67a26d9b6233b8da96" +path = "static-publisher/static-content/file3146.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/package_management/index.html_4c9aed63e593c26b8f23835becd0229b8edc0cc1e17f8b9a18acf04d8c033728" +path = "../build/minified/site/pt-BR/guides/package_management/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/package_management/index.html_br_5697c32f704f7312da9cd4792d5f00e1a586c6bc551f7a3431cd6ab5d778a3db" +path = "static-publisher/static-content/file3147.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/package_management/index.html_gzip_c8fa3b3c3da16ff90a5096ba633c7b3df11e65d5b35dbb1d42d002bec55e71d1" +path = "static-publisher/static-content/file3147.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/package_management/package_build_troubleshooting/index.html_ec26f1716cfa8d5d15fefece4ee9083f505d35b847ef9fecd598b98034655b50" +path = "../build/minified/site/pt-BR/guides/package_management/package_build_troubleshooting/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/package_management/package_build_troubleshooting/index.html_br_8716181805ec58d8fe7eecd982bdb18a97ed935430de406672b4fe4da3e75c7f" +path = "static-publisher/static-content/file3148.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/package_management/package_build_troubleshooting/index.html_gzip_65711041ae69f08b88447af0fd7d269b7e96968307b33e8bdcbd73059d5bcc33" +path = "static-publisher/static-content/file3148.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/package_management/package_debranding/index.html_0e1fc7976df633e8aa10b30bc776bca49f03fa2f684a454838fc857e7d180b14" +path = "../build/minified/site/pt-BR/guides/package_management/package_debranding/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/package_management/package_debranding/index.html_br_8f956495d48554c42a8af94b22ff8b176257c63e5c6b9d23120f3eca741ac752" +path = "static-publisher/static-content/file3149.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/package_management/package_debranding/index.html_gzip_ca56b6d1f82b1644f73400870b66480eb39fbd7f0faf4d78f0520c2279d6aa42" +path = "static-publisher/static-content/file3149.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/package_management/package_dev_start/index.html_ec27f14f08539de5f0a09c954c24aed370d0dc16a8fce06a869c75de2d7e7646" +path = "../build/minified/site/pt-BR/guides/package_management/package_dev_start/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/package_management/package_dev_start/index.html_br_9c2be282700d33413b3ed6e64c2397ad804dfdefbc9ce9dae9887a020b108d35" +path = "static-publisher/static-content/file3150.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/package_management/package_dev_start/index.html_gzip_b4f7a788a4d29f517233dc17c749bc0eb2d43c60389aa366afd6669491bf3386" +path = "static-publisher/static-content/file3150.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/package_management/package_signing/index.html_5242cd9d155dd8c2328f3948421511dc194c7d412dcf3e5500962e9f77813653" +path = "../build/minified/site/pt-BR/guides/package_management/package_signing/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/package_management/package_signing/index.html_br_3ec91fe7086dc76323704da1a7f3ce49952b2848828d92a21916b9f13be4136b" +path = "static-publisher/static-content/file3151.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/package_management/package_signing/index.html_gzip_b8de5c59722e7846b34c65a60ee9d552e6b5327dbcc40bdee7b7b8887fc50e56" +path = "static-publisher/static-content/file3151.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/proxies/haproxy_apache_lxd/index.html_f0ab62e9af88008f93ba7948fbc33fa6eeaacefd5120a22249e49a5a4eaf5810" +path = "../build/minified/site/pt-BR/guides/proxies/haproxy_apache_lxd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/proxies/haproxy_apache_lxd/index.html_br_8e03e8f32afac47672b86cbb05fea5e58bf1fd009c1ad36238a05dbbc94ae885" +path = "static-publisher/static-content/file3152.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/proxies/haproxy_apache_lxd/index.html_gzip_57f40238ee53f2b65501c4faa82e312e0f3947e2c8d28cdbe9f4c1bcbdf0c183" +path = "static-publisher/static-content/file3152.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/proxies/pound/index.html_a79c6a590592a47e456b58e1e65935f2b4bda251c9ca4750c359b797438b1619" +path = "../build/minified/site/pt-BR/guides/proxies/pound/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/proxies/pound/index.html_br_f88386ac8f192171a94b5718b88357037278230571279b585eec4e347389e100" +path = "static-publisher/static-content/file3153.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/proxies/pound/index.html_gzip_1bd5441edef597c76e4713e6c0cd390c56328dc54bc15bc1ea80a5f327fc1497" +path = "static-publisher/static-content/file3153.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/proxies/tor_relay/index.html_f0835585d1398e19e6428647ee3c4448d53f2c59a75ba2ab213cf7ec279e1816" +path = "../build/minified/site/pt-BR/guides/proxies/tor_relay/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/proxies/tor_relay/index.html_br_36456b0386c5417360f911ecad79c42898edded73c6b4341060173ec70d26184" +path = "static-publisher/static-content/file3154.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/proxies/tor_relay/index.html_gzip_cb3862a450d84010206485751da94263c11f070bae39aad8494bb5efa7d98ed6" +path = "static-publisher/static-content/file3154.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/security/authentication/active_directory_authentication/index.html_37b2fefc59feac7234016e4a81210fe4edb11c394b35c8e0766a07dc73857db7" +path = "../build/minified/site/pt-BR/guides/security/authentication/active_directory_authentication/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/security/authentication/active_directory_authentication/index.html_br_591f4734b05e7e7d224ebdae4bd45ffbaa848bd0747ae9992617805f000ca648" +path = "static-publisher/static-content/file3155.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/security/authentication/active_directory_authentication/index.html_gzip_164639cce4fd748a1c0a9720e8ded8eb7777c1c490b33b119dbbc93869dbfd4b" +path = "static-publisher/static-content/file3155.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/security/dnf_automatic/index.html_9b616311b76d6ced61430330e995e161c42b5109603466b536347d96b8073519" +path = "../build/minified/site/pt-BR/guides/security/dnf_automatic/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/security/dnf_automatic/index.html_br_e52ab0995f3aa8f957380c7bc2be5e8bb742b276433786db9214c8fde83de18f" +path = "static-publisher/static-content/file3156.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/security/dnf_automatic/index.html_gzip_e4c30f74f12915683f45860c9cac792c70abed8e0d7584500c9f156417dc5466" +path = "static-publisher/static-content/file3156.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/security/enabling_iptables_firewall/index.html_091131a7edd70288fdfa56f53121115ec232df18d68ffbee4c2984ddf6793cee" +path = "../build/minified/site/pt-BR/guides/security/enabling_iptables_firewall/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/security/enabling_iptables_firewall/index.html_br_3a0067e52c58c72d5f8c7d0463a85de8f9125b57478dfead53aa5a006f80ee07" +path = "static-publisher/static-content/file3157.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/security/enabling_iptables_firewall/index.html_gzip_316729a5fbbef92d61a409557906cc6a6b1fccdfbcac4769b765195d89e53bbc" +path = "static-publisher/static-content/file3157.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/security/firewalld/index.html_6f0df84dfa0325c3c58af92088b9e185fc62de51e062c5bb24594adb650b1095" +path = "../build/minified/site/pt-BR/guides/security/firewalld/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/security/firewalld/index.html_br_9b656b2f98fd02ac8ff90ae4175515e81f4fe34781be9ea68eb873c94b7adfe2" +path = "static-publisher/static-content/file3158.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/security/firewalld/index.html_gzip_2978db510ebce29f11c9cb46473f2cbe679c0ce72b95fb31f8071e5fb472ef95" +path = "static-publisher/static-content/file3158.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/security/firewalld-beginners/index.html_f5927e68feb3fff7f8a2fbfbe8e60b760af0d77305e7f0bcd5d7d603ee07cc92" +path = "../build/minified/site/pt-BR/guides/security/firewalld-beginners/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/security/firewalld-beginners/index.html_br_b01b135bd6b8c8431c7ee2168e9649dada72f5fcc5505f18502fffbd1beee5bf" +path = "static-publisher/static-content/file3159.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/security/firewalld-beginners/index.html_gzip_57f14c5755e8cc9a42cc9bec82fd177e20666637b2c2bb5b46415be6330546f1" +path = "static-publisher/static-content/file3159.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/security/generating_ssl_keys_lets_encrypt/index.html_e1ab122a081abb20ca7231adc13c848e94c2498be1d5da7f414086244ea5830d" +path = "../build/minified/site/pt-BR/guides/security/generating_ssl_keys_lets_encrypt/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/security/generating_ssl_keys_lets_encrypt/index.html_br_14ccac939e9e1ae6d43f90ae2d03c31c1e572a6f361265f4f3dde9090ab113a8" +path = "static-publisher/static-content/file3160.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/security/generating_ssl_keys_lets_encrypt/index.html_gzip_63d959eb960e0b15396ebf39ba5472b38359e1594b7c2796e9011426ba7b514a" +path = "static-publisher/static-content/file3160.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/security/learning_selinux/index.html_e0aaa40f1ebf79bfffbb67a6e440480a77434bef0d47cad0354c8d74e25c02a4" +path = "../build/minified/site/pt-BR/guides/security/learning_selinux/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/security/learning_selinux/index.html_br_6a5fabb75cf44f91c01c311f65d013c6ecbb3dac1541eed8e40b57a52a93ac08" +path = "static-publisher/static-content/file3161.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/security/learning_selinux/index.html_gzip_c09825f03b42e2f7c534e6701229aa05ba3f63e7563f7486a9b150df3e289fba" +path = "static-publisher/static-content/file3161.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/security/pam/index.html_b31d9f4688c02cc98f1474d3cb32208ca84d6093311f05ef64700535d4a48b0f" +path = "../build/minified/site/pt-BR/guides/security/pam/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/security/pam/index.html_br_7d043e1d828ec36c2656dd7c39d6570778b262a666fc288a4657500a67c2d019" +path = "static-publisher/static-content/file3162.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/security/pam/index.html_gzip_47e761a8b2249add34c59a7e331ef51f80fe8b05220d7c20628a155ac4bae933" +path = "static-publisher/static-content/file3162.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/security/ssh_public_private_keys/index.html_9bf48fbef232a2b749fe3c13395d0fe34af4188b202a41662f0b1420a14b208d" +path = "../build/minified/site/pt-BR/guides/security/ssh_public_private_keys/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/security/ssh_public_private_keys/index.html_br_cefea8929436ed0a2cfcb94be3536bf0b91b1e91d6b9e802d19987c61ce3c8fd" +path = "static-publisher/static-content/file3163.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/security/ssh_public_private_keys/index.html_gzip_809f537705c19f80729d07d5762d075f0e16e7d5c2e804c71886c74169556d3f" +path = "static-publisher/static-content/file3163.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/security/ssl_keys_https/index.html_9d1cf91d38e0102eb7b3d7a048dfd946821332ad8e388f0ae57bf0f27a5d14e0" +path = "../build/minified/site/pt-BR/guides/security/ssl_keys_https/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/security/ssl_keys_https/index.html_br_6cfa16399cdfa5ac81e82109219658f7efcd555edb234c8485fa1c354e15a5c1" +path = "static-publisher/static-content/file3164.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/security/ssl_keys_https/index.html_gzip_08de0ebc1f2419961a8e7b3b6998ee95f7ab237b62c8da1488807131905c442c" +path = "static-publisher/static-content/file3164.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/security/tailscale_vpn/index.html_131cec32d5295606312a64f14345d908570af643af5312f68068fcf09561ad52" +path = "../build/minified/site/pt-BR/guides/security/tailscale_vpn/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/security/tailscale_vpn/index.html_br_59e4aab5740f46a40d6cb5dbae4137c4bc9912de0d83e2c2977b9a906ceb321c" +path = "static-publisher/static-content/file3165.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/security/tailscale_vpn/index.html_gzip_5a4d7a5af9e58ef77e56269be07401af7b5d62e139c13db73eb776ac5604b332" +path = "static-publisher/static-content/file3165.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/virtualization/cockpit-machines/index.html_feabc2016796c61bf7b773fa7cafa75309961a383ddf2f1a7417b5324f4e007f" +path = "../build/minified/site/pt-BR/guides/virtualization/cockpit-machines/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/virtualization/cockpit-machines/index.html_br_3fcdea8c5a2f5845305a295e205ce36e2be42755dff01d7a9992e4ddb4613399" +path = "static-publisher/static-content/file3166.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/virtualization/cockpit-machines/index.html_gzip_e611e9c712e125b0c6ee2a5963d765de5925b79758d390f4aae84a8c60b95d74" +path = "static-publisher/static-content/file3166.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/virtualization/vbox-rocky/index.html_7d6742c63ec825691aa4fbd9dfae11ec4dfe834251bb84b6cde66ead23d319bc" +path = "../build/minified/site/pt-BR/guides/virtualization/vbox-rocky/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/virtualization/vbox-rocky/index.html_br_085b161676d3b0b446dc52194e1c964a7ae692b2fa541b80cc08454b4c429bc8" +path = "static-publisher/static-content/file3167.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/virtualization/vbox-rocky/index.html_gzip_8af34bbaa1421a06671f875565a278f55e8bea63c9bb5286aab5e270a31d30f5" +path = "static-publisher/static-content/file3167.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/virtualization/vmware_tools/index.html_8aa3becf717f53aa679e5e0ddfc5edc4204822f856affb2b06537c0a75280d94" +path = "../build/minified/site/pt-BR/guides/virtualization/vmware_tools/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/virtualization/vmware_tools/index.html_br_a90a0c3cf7e81298ad249ea5691b9c56f5dd40b76b9497eb4e20122a2fc36c55" +path = "static-publisher/static-content/file3168.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/virtualization/vmware_tools/index.html_gzip_0bb5d6e0269d3803b6cce1248ea392ff8f03a68a9a9b7b48788b4bc78d01b777" +path = "static-publisher/static-content/file3168.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/web/apache-sites-enabled/index.html_2213e8dbb840960eb703c2c4f8d60ad03ba0df17539c7b86e2524c09fbe2ef67" +path = "../build/minified/site/pt-BR/guides/web/apache-sites-enabled/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/web/apache-sites-enabled/index.html_br_d78d51c31cd19eff3be8a8d3bac62fc31a96061a537b655bf3eccec002b1cb6d" +path = "static-publisher/static-content/file3169.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/web/apache-sites-enabled/index.html_gzip_873a588214d4d2dd2bb131e364f6d529e9af857a1cfa31aa37c7238b6301c053" +path = "static-publisher/static-content/file3169.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/web/apache_hardened_webserver/index.html_2f3d21ba91b55fe4b856bb30871aa810d26ef2c564a10129eb903e03aea561e3" +path = "../build/minified/site/pt-BR/guides/web/apache_hardened_webserver/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/web/apache_hardened_webserver/index.html_br_fe99d8a4e501410790c3b0093b42e6e847ae1e4c9585449b4fd0d996f02c3185" +path = "static-publisher/static-content/file3170.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/web/apache_hardened_webserver/index.html_gzip_dd9f94a0a05665c56627ba8b4c2f43b407da7a457dfb87ebdf45f89f3616cba5" +path = "static-publisher/static-content/file3170.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/web/apache_hardened_webserver/modsecurity/index.html_122db62d659c264ba96aa59dcc4855699928bdf6a238d458e16d9f8ed2ce970c" +path = "../build/minified/site/pt-BR/guides/web/apache_hardened_webserver/modsecurity/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/web/apache_hardened_webserver/modsecurity/index.html_br_72b0cec54590613d8b1300ea70744ff49b1fb1adf838da88e7a65fa22e798da5" +path = "static-publisher/static-content/file3171.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/web/apache_hardened_webserver/modsecurity/index.html_gzip_5a980cadab95cf25f5b3f67a8721d59902082bc794635b58db8dd9ff4536e3ef" +path = "static-publisher/static-content/file3171.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/web/apache_hardened_webserver/ossec-hids/index.html_1bdb1cca2ebf12cead3ad14c10bed17b7ded1ad90f846d11451b6ec598dce44b" +path = "../build/minified/site/pt-BR/guides/web/apache_hardened_webserver/ossec-hids/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/web/apache_hardened_webserver/ossec-hids/index.html_br_c04c5341fd0ef3f0fc1063e378be097b490b34436ccc3051b63cade33ceee5ef" +path = "static-publisher/static-content/file3172.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/web/apache_hardened_webserver/ossec-hids/index.html_gzip_d5cb3a7370ca91297c1691a3dae7c8cc68d6ae402a35c3d837f40e28dd4febc6" +path = "static-publisher/static-content/file3172.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/web/apache_hardened_webserver/rkhunter/index.html_920463f9ef5ad4ea86c6bbf347780fc96528756bc82ccf1bad04563dd52ab41e" +path = "../build/minified/site/pt-BR/guides/web/apache_hardened_webserver/rkhunter/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/web/apache_hardened_webserver/rkhunter/index.html_br_315aadf59ea16691461f62421b0672fd6d85df183197e0f5895697473b5a4009" +path = "static-publisher/static-content/file3173.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/web/apache_hardened_webserver/rkhunter/index.html_gzip_d0baa514089374725385fa4bccd9bd54f8965a0543fde4ca82e6c8dc9baa3566" +path = "static-publisher/static-content/file3173.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/web/caddy/index.html_e593cbe99c7c941f9e299dad96bdf76204432e68fc583c63fca5a72702b4131f" +path = "../build/minified/site/pt-BR/guides/web/caddy/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/web/caddy/index.html_br_0c7a19b10ff82e002fa697012130e99c60e168c1cabd430462941e5fc4e370b8" +path = "static-publisher/static-content/file3174.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/web/caddy/index.html_gzip_443f84dc55a8f7992ace0f81204eee61749d1cb8dc28bbcf60e8947a0bdeaaae" +path = "static-publisher/static-content/file3174.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/web/mod_SSL_apache/index.html_4a3b0b0c297e3707ceb03103bba9f382333b7d38065e03cf3d85186ad4f66f10" +path = "../build/minified/site/pt-BR/guides/web/mod_SSL_apache/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/web/mod_SSL_apache/index.html_br_94a8b04f8535490e01679e16ddaa42a63d6fbd611caef01d9f859d4fe01b5be5" +path = "static-publisher/static-content/file3175.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/web/mod_SSL_apache/index.html_gzip_500b7eadcb42ee93d48bc1fb068102151297f837e44f5ad54c24b6829c9e070e" +path = "static-publisher/static-content/file3175.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/web/nginx-mainline/index.html_51bafb1c737e6d4e8c305d15019da60441272402a81ac768465b22212887a6b1" +path = "../build/minified/site/pt-BR/guides/web/nginx-mainline/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/web/nginx-mainline/index.html_br_4814ef2a8bf197a368d18c95774066fe5409d3677569078f0316a703786bf627" +path = "static-publisher/static-content/file3176.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/web/nginx-mainline/index.html_gzip_e81fda5e510a900bc5e69f89d5d3f084be349fd24c65c040237c67e99c0344e0" +path = "static-publisher/static-content/file3176.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/web/nginx-multisite/index.html_99d3bf258b9a87f578d6215bc23a93b791c73ba6b2ee20bcfe1a40c1067130a4" +path = "../build/minified/site/pt-BR/guides/web/nginx-multisite/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/web/nginx-multisite/index.html_br_741a7aae70fabdd0a28725bf67fa891af47a1ee4bacb9e036d0a482853dfd83b" +path = "static-publisher/static-content/file3177.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/web/nginx-multisite/index.html_gzip_c876f3c96976e9df8ac1c3f300fcdfb9b63a0264b7eda3d3d1089ecbf68511c8" +path = "static-publisher/static-content/file3177.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/web/php/index.html_9e0a3666bb8efc769f69a8e5772eabedd6c23a7da5fb1364e1347ca0d42b08cc" +path = "../build/minified/site/pt-BR/guides/web/php/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/web/php/index.html_br_053325f78ad9d34e37e3d40a0a4f73f243c002f53db0a9e3cee68bdce48e7bdc" +path = "static-publisher/static-content/file3178.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/web/php/index.html_gzip_761044fe43efe63452eed97e3d9d6c0e40edd9148e39c40e816ec9c8577b8e92" +path = "static-publisher/static-content/file3178.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/web/tor_onion_service/index.html_c7e3d7e645064b17737cae33035ad4d5a28f21339f0ae06d09b3f9b660f42e4d" +path = "../build/minified/site/pt-BR/guides/web/tor_onion_service/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/web/tor_onion_service/index.html_br_364223423dbe4d1afc75e07b7a03bd0f79bfd0965dff6a9dcbac0ef0ecf1f929" +path = "static-publisher/static-content/file3179.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/guides/web/tor_onion_service/index.html_gzip_c5a59dda3051943f976072a20c743ad6b897aa4ec5a9cfc030b42142ed44c593" +path = "static-publisher/static-content/file3179.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/index.html_f3972f0b006065aa62abea0c22d0989055f7a2b8f5a7cad6b7419ad7f9a6b836" +path = "../build/minified/site/pt-BR/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/index.html_br_bd3667973c03d7d1d1056be2254b555400230d7cfb1344d381f479d16b986b73" +path = "static-publisher/static-content/file3180.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/index.html_gzip_c472c7de4772eaa5382481000709559431453c48a885154fc616f7859ae5676b" +path = "static-publisher/static-content/file3180.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/labs/index.html_7293498f1eeb6b5730a9d260e209884b26533f5185706e8b1ee36dd9d19673c9" +path = "../build/minified/site/pt-BR/labs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/labs/index.html_br_0c0f2aca5fa19ee8af58b583c01f4220578a61d66c62c676077adca335aaf187" +path = "static-publisher/static-content/file3181.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/labs/index.html_gzip_b9f054b58ab769100f33addc2239e0780fad3eb999e3d3f3c3df91812d6c7051" +path = "static-publisher/static-content/file3181.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/labs/networking/lab5-nfs/index.html_9c084a43e4c37fdf13fab4f0339a768820307d47206ae331e57ae7f508e1b918" +path = "../build/minified/site/pt-BR/labs/networking/lab5-nfs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/labs/networking/lab5-nfs/index.html_br_fdc4a6c92408559163a8376499bd7c2749df10f92584f50784d731777a8b1dc8" +path = "static-publisher/static-content/file3182.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/labs/networking/lab5-nfs/index.html_gzip_be4d0aa7957b0db1214a00349e17371a0a03576c93edfc7ffe46607724e46590" +path = "static-publisher/static-content/file3182.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/labs/security/index.html_498d762989d1cc4475a23f29f96db31358f67f7ca7c37a8648f853ebee1b77e7" +path = "../build/minified/site/pt-BR/labs/security/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/labs/security/index.html_br_5926c6362db50013b90f8eebe0ff59f02961c8c25cb07d819101171bdff448f6" +path = "static-publisher/static-content/file3183.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/labs/security/index.html_gzip_3a5014d671f9dd65a6dbf296a703bfadea6b2cc2159132db721f1d30c5b66f7a" +path = "static-publisher/static-content/file3183.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/labs/security/introduction/index.html_92ee621d90a6e79101452a4a1dca0a05572e371f518ac396d76f7971901390d2" +path = "../build/minified/site/pt-BR/labs/security/introduction/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/labs/security/introduction/index.html_br_59b874e010534db4331f1659ae15c61b8801fff4039256288feaa1a348f30200" +path = "static-publisher/static-content/file3184.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/labs/security/introduction/index.html_gzip_7fec1713870585c7415ebe45a86a571895690723fc09341e0ceedcc158dcf2c4" +path = "static-publisher/static-content/file3184.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/labs/security/lab3-auditing_the_system/index.html_f60f776009b4d599c1f6fbf7e93c21d86e55652ffaed5b560007b0ddb2f6cae3" +path = "../build/minified/site/pt-BR/labs/security/lab3-auditing_the_system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/labs/security/lab3-auditing_the_system/index.html_br_bb8f46e60aca1d358b44c53fd25ca796b3d8b3d5d09df80189c6b88245abb8f9" +path = "static-publisher/static-content/file3185.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/labs/security/lab3-auditing_the_system/index.html_gzip_334f16a4f90fa653377c01a8c4933b104e8804f1b335f5cb7c7c0d1fc66a3265" +path = "static-publisher/static-content/file3185.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/labs/security/lab8-iptables/index.html_943248b5b93bdf04d4ab6e52cba32b2d4922c6c127eb817037c77875eba6f01a" +path = "../build/minified/site/pt-BR/labs/security/lab8-iptables/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/labs/security/lab8-iptables/index.html_br_a8e525f994ec99d5d676f4a9927be579ba835f1be3b4be9fb9c750d96d99af8f" +path = "static-publisher/static-content/file3186.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/labs/security/lab8-iptables/index.html_gzip_f55b391cae8c2a4a1abc51b4ccb30643f27356f0e49d2fc390695cd206c5102f" +path = "static-publisher/static-content/file3186.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/labs/security/lab9-cryptography/index.html_524b918e0a8c75113a39f5a7bef76d18477bbd72a45928b05b4627f201e81da5" +path = "../build/minified/site/pt-BR/labs/security/lab9-cryptography/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/labs/security/lab9-cryptography/index.html_br_3e4c27207f24643463412673a4e7f01e6fc54afc1ef4a067670bbcc5e8679ce5" +path = "static-publisher/static-content/file3187.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/labs/security/lab9-cryptography/index.html_gzip_5aeff9e3f98b8d1229f74faea484561d9741138fd501bc1c85e8941f32175b0c" +path = "static-publisher/static-content/file3187.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/labs/systems_administration_I/lab3-system_utilities/index.html_5b05bba496bf6f4c7886410d2ce2a8ca9954ca838af610d7920942b66fd1d4ce" +path = "../build/minified/site/pt-BR/labs/systems_administration_I/lab3-system_utilities/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/labs/systems_administration_I/lab3-system_utilities/index.html_br_4ed045dbbc81ccfafd30289847ae8767793747bf0f891391049120cb078b5501" +path = "static-publisher/static-content/file3188.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/labs/systems_administration_I/lab3-system_utilities/index.html_gzip_35b2978ae8de373288ca57dbf8092a95d771259f9106dbe3c0a986a3a075e358" +path = "static-publisher/static-content/file3188.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/labs/systems_administration_I/lab5-networking/index.html_3c10fbed6e1f64c37ac572302a5967881b06103f3a703beabded92c00bfc8470" +path = "../build/minified/site/pt-BR/labs/systems_administration_I/lab5-networking/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/labs/systems_administration_I/lab5-networking/index.html_br_b970614f846966982fddead51114c40789ba8b47c5cc0211827aa23d910ec3f8" +path = "static-publisher/static-content/file3189.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/labs/systems_administration_I/lab5-networking/index.html_gzip_f9c5da4ef32cf7fd257bfdfdbf67d949c209f462959f916a09b19fcd92a4d97b" +path = "static-publisher/static-content/file3189.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/labs/systems_administration_I/lab6-user_and_group_management/index.html_855835bdaf88b573257b3647ea40e8a3c7e1b9b92cacbe6d900ff0b7429b786e" +path = "../build/minified/site/pt-BR/labs/systems_administration_I/lab6-user_and_group_management/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/labs/systems_administration_I/lab6-user_and_group_management/index.html_br_810d3ef4eb1e5a7f300e9a1c4ffc9a6699151d6354dd160303562ddd0af20631" +path = "static-publisher/static-content/file3190.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/labs/systems_administration_I/lab6-user_and_group_management/index.html_gzip_f030b7cb7f0611dcab5aa54d27ef9ba403a0cbe50e13b94c1d9db45f9afb21b4" +path = "static-publisher/static-content/file3190.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/labs/systems_administration_I/lab7-software_management/index.html_ad8ea6d18f73ca4c91413c8860c9fc97d1e3fd82cab459ac1cbb0680633be93e" +path = "../build/minified/site/pt-BR/labs/systems_administration_I/lab7-software_management/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/labs/systems_administration_I/lab7-software_management/index.html_br_64307a7466402b9197189d5c3cd42bb0b4789871af65925b5b75a0c527f527a0" +path = "static-publisher/static-content/file3191.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/labs/systems_administration_I/lab7-software_management/index.html_gzip_99a56ecb0a0c3efdd03c508522c29984a05383fe05655961b01a323b5b4966f0" +path = "static-publisher/static-content/file3191.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html_0080519a5342e5aeae0349ea1aa84e4bcd9a6cb26df7d0965c31b4cb908ddf0e" +path = "../build/minified/site/pt-BR/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html_br_a79cbdd6ebc396d4e6200f8be74ec441e37545c7ca8bcedd49e9d23905bcf806" +path = "static-publisher/static-content/file3192.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html_gzip_f41c8b4efd7fa19fd0617ef14f9dae95fd93a1efc6a824de4efbcef5b616d0c8" +path = "static-publisher/static-content/file3192.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/labs/systems_administration_II/lab3-bootup_and_startup/index.html_c531b612030b982066f6614c3290d2af63a30676f7024cf3b0c46c13cd603ea1" +path = "../build/minified/site/pt-BR/labs/systems_administration_II/lab3-bootup_and_startup/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/labs/systems_administration_II/lab3-bootup_and_startup/index.html_br_ac228cbcd7cf31c53355a1ccd89ba06f6b3eb25a0f8bf73859080c84ee1260e5" +path = "static-publisher/static-content/file3193.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/labs/systems_administration_II/lab3-bootup_and_startup/index.html_gzip_c1373da1e8722c06e245b136e2314a6b456a0c011883c5c2443f30463d5896c1" +path = "static-publisher/static-content/file3193.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html_5e1a5f42590e50455e3c44f6bde6ba761b051a5b3ff35a5835f5b68e4244d0b0" +path = "../build/minified/site/pt-BR/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html_br_eb32dd52d4939beabe37509f3444ed1ee2abe11067cac0fe427aa0b6cf099361" +path = "static-publisher/static-content/file3194.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html_gzip_5c8737472312a7a38e164a97978d1191b8dccee650a80630fe5d5ea78a6f320f" +path = "static-publisher/static-content/file3194.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/labs/systems_administration_II/lab6-the_file_system/index.html_6d40cb44a00363c52c8fb583b18a884ecc5a643e00ebf250a94954471c52dca7" +path = "../build/minified/site/pt-BR/labs/systems_administration_II/lab6-the_file_system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/labs/systems_administration_II/lab6-the_file_system/index.html_br_d2c79c93bb9902f0c423e40ffe03fd415840845e03f2233327acb558748af51d" +path = "static-publisher/static-content/file3195.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/labs/systems_administration_II/lab6-the_file_system/index.html_gzip_fe5fb18d3cd5b0e3935c94e05e7277fd74ebfb41338e726aef6ad7ef3da0fd51" +path = "static-publisher/static-content/file3195.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/labs/systems_administration_II/lab7-the_linux_kernel/index.html_d46538a0fd16a48d19b21a16a782fe1d1e41a54f45f06309b3cfe20d156e100f" +path = "../build/minified/site/pt-BR/labs/systems_administration_II/lab7-the_linux_kernel/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/labs/systems_administration_II/lab7-the_linux_kernel/index.html_br_050a7e86a3d49c3e432a664c270a2d5d51ad3dddcb7b47768e214c52bd301c47" +path = "static-publisher/static-content/file3196.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/labs/systems_administration_II/lab7-the_linux_kernel/index.html_gzip_05b006e1a8942d4d66a21170e01ad2d8e75f6555fefad200efcfeae43e58d592" +path = "static-publisher/static-content/file3196.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/release_notes/8-changelog/index.html_28bed17d187042c3b75406e3bf6340ffa1a2847b57ad41f3b13735e35f4e5bdb" +path = "../build/minified/site/pt-BR/release_notes/8-changelog/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/release_notes/8-changelog/index.html_br_461d738d166ec4a8b23c87c5a2413b78cd343b4995286ff8137bc4f8e10be7f4" +path = "static-publisher/static-content/file3197.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/release_notes/8-changelog/index.html_gzip_1523edfb4f4ed5405f82b5f214e054ae61e53a279e8d2905624f658655d55bb2" +path = "static-publisher/static-content/file3197.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/release_notes/8_4/index.html_f7a4f07e3b51cf744480ac6ac214c464e6053fcd7b42273dc8d03da627402774" +path = "../build/minified/site/pt-BR/release_notes/8_4/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/release_notes/8_4/index.html_br_0fdaeeb8cdb0ebf8671fae17fbf4c0b2ad6f14299b13c6da9449ded8f0bf6ad0" +path = "static-publisher/static-content/file3198.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/release_notes/8_4/index.html_gzip_47f6a4f999df123a604680978ad6e042f5146c8bd70909947ca3f16a018a0541" +path = "static-publisher/static-content/file3198.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/release_notes/8_5/index.html_e782134ce7025053ae84af5278f37bb474325fb33ca5d6a281bb999572497196" +path = "../build/minified/site/pt-BR/release_notes/8_5/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/release_notes/8_5/index.html_br_93d9c2693df114699e089e6770fac970313aab292b2b3f16aad30c5ebc85a96e" +path = "static-publisher/static-content/file3199.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/release_notes/8_5/index.html_gzip_0f85bae3580e4e55929ada064f0f9d709849c7ddd92e40c2aaa5ca38c6e6938e" +path = "static-publisher/static-content/file3199.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/release_notes/8_6/index.html_3a0eb435a54c59d6f1d607dd76aed8f09837bacc3674005fe3651be12d892602" +path = "../build/minified/site/pt-BR/release_notes/8_6/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/release_notes/8_6/index.html_br_efed52fc19f99ba1578e3e55435207e7c5a751a483ee2b4bd7f37f3d1c2f8411" +path = "static-publisher/static-content/file3200.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/release_notes/8_6/index.html_gzip_e3157a303683df63be7fd1f17a038eb41cda26dcf14b847eb0f4bef9b7c73b78" +path = "static-publisher/static-content/file3200.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/release_notes/8_7/index.html_6a15775ac2111dbeddb65c446fa9d2575fdc201da0dc8776f09b0b23d711955d" +path = "../build/minified/site/pt-BR/release_notes/8_7/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/release_notes/8_7/index.html_br_dbe04125ea84d6e251ef9a97d4b56bd4691a71c5be77f2c2cfb59a21b3962120" +path = "static-publisher/static-content/file3201.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/release_notes/8_7/index.html_gzip_37c41802d5fdb0781fecc5f847ad403b5120fd0d5969b53431a778806a36035f" +path = "static-publisher/static-content/file3201.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/release_notes/8_8/index.html_4865b328b5024ab56780aacd4c9f26b92ec7666cf32c93de26fd1e34f06ddc05" +path = "../build/minified/site/pt-BR/release_notes/8_8/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/release_notes/8_8/index.html_br_9d698b7f0cc4ee7f30c5ebcbc912ca9137744b139cd0b25e0812e44c6743f282" +path = "static-publisher/static-content/file3202.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/release_notes/8_8/index.html_gzip_5e5922690b5fe939b48e8e54630f7dbfeb2d2e2e45444ee85d89f1f9ae1ae173" +path = "static-publisher/static-content/file3202.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/release_notes/8_9/index.html_f38e3419a81cb749f6de68fa40c7861ab674f6b6fa6bef99be5562b99d47651c" +path = "../build/minified/site/pt-BR/release_notes/8_9/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/release_notes/8_9/index.html_br_7d6f03379476c048601d324990beba7224e99464975537970e240d7506e072db" +path = "static-publisher/static-content/file3203.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/release_notes/8_9/index.html_gzip_42ecafa244bf098f3fb064b8734e9c1e26fb1af89b58ad97750bed23aa055b3f" +path = "static-publisher/static-content/file3203.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/release_notes/9_0/index.html_52c261b7e5a22adaad6fb44de2e3e88b36b3fef2c32f1b53f750852436ff5e40" +path = "../build/minified/site/pt-BR/release_notes/9_0/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/release_notes/9_0/index.html_br_773dce7070f987d01c581c1a62170c896b35e4443525ff3026f7c4b0bdfa0d47" +path = "static-publisher/static-content/file3204.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/release_notes/9_0/index.html_gzip_ab5cee84ea00cb016dd1ccffd96206c02e406cea180b80b365b0bc2d8b182f51" +path = "static-publisher/static-content/file3204.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/release_notes/9_1/index.html_db036e8affc5bccd0a6eaf38ca6c9b7beabcb3d5ad7252ca3974380ada8307b8" +path = "../build/minified/site/pt-BR/release_notes/9_1/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/release_notes/9_1/index.html_br_c2a16fc8a8fdcea7ea56bea81d37839bca5c117c6e277255dfc657ab2195a8c5" +path = "static-publisher/static-content/file3205.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/release_notes/9_1/index.html_gzip_62771ab5d74bfd4ef242ec5fd44696a0131c494f743744bfd007f6f98f51d550" +path = "static-publisher/static-content/file3205.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/release_notes/9_2/index.html_94fe95cf2c976bed12399a47eaeabd9d5a37db5133ff71348d0cfeaf354b0d70" +path = "../build/minified/site/pt-BR/release_notes/9_2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/release_notes/9_2/index.html_br_2bc203a1f61e8bb4a3e9aa7ce9a8c664bb26087a9ae1e1c0fd5ea462a41e8632" +path = "static-publisher/static-content/file3206.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/release_notes/9_2/index.html_gzip_a572cfa36a7a6f360e9f014b12aa50ba5349af63c67449f7b90c88716f2e3e07" +path = "static-publisher/static-content/file3206.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/release_notes/9_3/index.html_d42ce95803b576c1267611c03a12419b3f29ad012b4a2154d6c2d41f474e2736" +path = "../build/minified/site/pt-BR/release_notes/9_3/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/release_notes/9_3/index.html_br_38ecf0619e1a168bf2e13d98c84e852f351c0374e51227f05a5565642731a7cd" +path = "static-publisher/static-content/file3207.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/release_notes/9_3/index.html_gzip_2b8293c1f87044bdb07afa768ec88f64e0dd031b13c50b2560a7587333b74cf0" +path = "static-publisher/static-content/file3207.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/release_notes/index.html_083970f5a30232edddf3ce6494c52f8bab94594517882bc59d7b4c32e1893d7f" +path = "../build/minified/site/pt-BR/release_notes/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/release_notes/index.html_br_54015dfac900c4b381c5276b1c4d550e1baa57c937293f5350e6a498699db4dc" +path = "static-publisher/static-content/file3208.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/pt-BR/release_notes/index.html_gzip_58391f41e2763193c83042e075d7c31b6d56a72cc0f5c59be8835f6d1f51cc93" +path = "static-publisher/static-content/file3208.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/release_notes/8-changelog/index.html_46b5579312a5ed9119d63ed4aabdbfdf52cc149ba7d645bbffb30e23e4c1ca6f" +path = "../build/minified/site/release_notes/8-changelog/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/release_notes/8-changelog/index.html_br_4f88ecf5a3539536b3a504b187457d289fe7fb7690c4ba63779f3e8f24302424" +path = "static-publisher/static-content/file3209.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/release_notes/8-changelog/index.html_gzip_91559b4f87dea4106283428d947fffde4802805b0b1bf917df93ac6327aad380" +path = "static-publisher/static-content/file3209.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/release_notes/8_4/index.html_f1e8e589e69627f0c199b9d4ab9b8e4898d623c75d15278ba7ff7b7015b06127" +path = "../build/minified/site/release_notes/8_4/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/release_notes/8_4/index.html_br_064837dbaeaa6148b401d68c97c274c84332fab13f99938a7d7beb41f16ca608" +path = "static-publisher/static-content/file3210.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/release_notes/8_4/index.html_gzip_eb5bdd43fcb00a11fe6b245062403329cd311bac88bc5da8b1b1c4f8296dbf83" +path = "static-publisher/static-content/file3210.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/release_notes/8_5/index.html_2cf0c73a8a6fb346158f63ec544f5a9862c912bf86ee102c53a47fb324cc67a0" +path = "../build/minified/site/release_notes/8_5/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/release_notes/8_5/index.html_br_ff3021a05e8ca7ff66cd371686b5839928d3e69d4441638f9987c8e59bcba1ae" +path = "static-publisher/static-content/file3211.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/release_notes/8_5/index.html_gzip_3decc8df981441f6f9ae671dd1d01f5cb3104cae9fe052b0a27b69010f19e6d5" +path = "static-publisher/static-content/file3211.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/release_notes/8_6/index.html_64e6c015f9b8e206cffe5e940c475f6934d5e82e5375eb46a105c9cab144eabd" +path = "../build/minified/site/release_notes/8_6/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/release_notes/8_6/index.html_br_4d1c692770976f161e9357389b92c38e574b73280a700428b13741d39bb82e7e" +path = "static-publisher/static-content/file3212.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/release_notes/8_6/index.html_gzip_f8a7fd0bded7d9c63f255d6942448477aeb7cbf56169e70a8dd927f6dfd8baed" +path = "static-publisher/static-content/file3212.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/release_notes/8_7/index.html_b5a8b47f994ec4b464f9b23cdb57680fe0759e7d00ebbaa0aff944393f66266b" +path = "../build/minified/site/release_notes/8_7/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/release_notes/8_7/index.html_br_f4ec1ee53853cdfc74bddcdc916742180b3500f2db15568e81ef4347bbcaa5a5" +path = "static-publisher/static-content/file3213.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/release_notes/8_7/index.html_gzip_4aff355e9c23382c42869ac0a0822d7010b286f0014258944a08afc7fa2c120e" +path = "static-publisher/static-content/file3213.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/release_notes/8_8/index.html_5449655d93a6a594c1e316768c29deb706fcd80f0d895d31d827b9d63a42e1f0" +path = "../build/minified/site/release_notes/8_8/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/release_notes/8_8/index.html_br_257e24c14e106fecb0ff94d11ac318096216da849e3e574bcb25f735796c4d4f" +path = "static-publisher/static-content/file3214.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/release_notes/8_8/index.html_gzip_7b65ef701c18a33125e5453ca2051a16eb7ce06c102f3e5073eb20992bbd6e74" +path = "static-publisher/static-content/file3214.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/release_notes/8_9/index.html_2820f2cc627d24426d6029101ab7d4a0af8913c6e59ff6145c55124c9cd9f23c" +path = "../build/minified/site/release_notes/8_9/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/release_notes/8_9/index.html_br_ed149f3eee6426f1678c92499a1cbe93b5662681336e364958d008649ed8b5f6" +path = "static-publisher/static-content/file3215.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/release_notes/8_9/index.html_gzip_aa0145ebb811fab27b749213e7f885b5a6c379afeaf6100be08ecf023c282cea" +path = "static-publisher/static-content/file3215.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/release_notes/9_0/index.html_a5c40bb8310fc74495ffc8752379d851564f73f0652263e73dcf4ed58304f087" +path = "../build/minified/site/release_notes/9_0/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/release_notes/9_0/index.html_br_f8a70f784f73bd6f419cbc50b10fce7777e4b1f7e3a304e90da8b47ebd624ed3" +path = "static-publisher/static-content/file3216.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/release_notes/9_0/index.html_gzip_774efd6a33d49e157ab7ddac3a80e8a9e3b1a30667366eff03a090da021e0b89" +path = "static-publisher/static-content/file3216.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/release_notes/9_1/index.html_701266077f58bfc1babe2c05ba2224e9fd6df5be6e025a8cf5b783f9feb1f32b" +path = "../build/minified/site/release_notes/9_1/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/release_notes/9_1/index.html_br_1cdfcd1f6ba2e93885c08d6a2316b2823a81dd02c7da430f32f5243d1761b22c" +path = "static-publisher/static-content/file3217.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/release_notes/9_1/index.html_gzip_61240e2b6c00513533d1138018cb80f68cd86d0e1875dd45ddc2398e2af460c3" +path = "static-publisher/static-content/file3217.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/release_notes/9_2/index.html_680b683cc2656dcbff6fbfdef624671af42dfbc9a63449ff5d67c1c9b10ce710" +path = "../build/minified/site/release_notes/9_2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/release_notes/9_2/index.html_br_b9c83232a711c6cf9e8e5ec014599b69f0c82587ec135cf50ffc62948182fccb" +path = "static-publisher/static-content/file3218.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/release_notes/9_2/index.html_gzip_20905c78d741b1ae37b199acb97eef83619c7f8f3a7c48b707f4fb6aa8a8f25b" +path = "static-publisher/static-content/file3218.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/release_notes/9_3/index.html_ca41430bb21627b15166b1808ae8a3687b8e265fe76e6239bfb725528ecebafc" +path = "../build/minified/site/release_notes/9_3/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/release_notes/9_3/index.html_br_cc9fb2b91b6aac7a675dedd32b1d921d1b64037ca672d4a3b455f9b4dff85d23" +path = "static-publisher/static-content/file3219.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/release_notes/9_3/index.html_gzip_df8e5fc511aa2cd4e11df7e91b85b11376f3906c0d9f3107090f967e5ab734ca" +path = "static-publisher/static-content/file3219.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/release_notes/index.html_fc3e45ac1e0ad44ca981db608ef2847bd9a75b47aecbaf9ef0d10eadabff157b" +path = "../build/minified/site/release_notes/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/release_notes/index.html_br_397d9fcfe435a0c5318617abff75a006ab980558c9895e9022ad09bf1ddde0a2" +path = "static-publisher/static-content/file3220.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/release_notes/index.html_gzip_050cf7c71240be03b5972a19ab3a24e0d826c2cd6f08c05d96ca302bd43db0ac" +path = "static-publisher/static-content/file3220.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/admin_guide/00-toc/index.html_508a6b0dddc492f3d26fccdd56b8498f553876952bbca85a66ea54bbd3c9e3c3" +path = "../build/minified/site/ru/books/admin_guide/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/admin_guide/00-toc/index.html_br_85344969ee8a8a8159b994fc8c69f94466b4194aac4357c8df5d8d46b40e4fa4" +path = "static-publisher/static-content/file3221.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/admin_guide/00-toc/index.html_gzip_689a3f66c2643a70931c1c221ce3a7e5accc08220c26eabf8519449d2f0f3b0b" +path = "static-publisher/static-content/file3221.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/admin_guide/01-presentation/index.html_d1eb143b17597e9ac85473e5d356bcfea557adc03272000a8531b5831a4d93b8" +path = "../build/minified/site/ru/books/admin_guide/01-presentation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/admin_guide/01-presentation/index.html_br_f7833f6b510a23d7b2f8c7971cf126cba4fbf5e6582eee8a9748e44d65ab25e8" +path = "static-publisher/static-content/file3222.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/admin_guide/01-presentation/index.html_gzip_1538f049d04f1a60eec0276dd385128fe3de67f44852619bf6b4b6a22ea1c7e5" +path = "static-publisher/static-content/file3222.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/admin_guide/03-commands/index.html_d653b8bef9449fc5d6c1be5c17552aca215ebb42499043c73f50c13255107988" +path = "../build/minified/site/ru/books/admin_guide/03-commands/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/admin_guide/03-commands/index.html_br_49140d643ae50c827c69873dc429cd64f425c75f3c1efc3fb8bee5f7feb1b7e9" +path = "static-publisher/static-content/file3223.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/admin_guide/03-commands/index.html_gzip_a6df2e719998f1be6146a68195b3e8dd786277048f0eba78d713c4cf645983c7" +path = "static-publisher/static-content/file3223.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/admin_guide/04-advanced-commands/index.html_c02ed0ccf22760371788c8a70f79dee11b6722c4ecb3b80a2536df76fa1a8592" +path = "../build/minified/site/ru/books/admin_guide/04-advanced-commands/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/admin_guide/04-advanced-commands/index.html_br_94ac66438617a993958c004bfce44582346b6b971dd3522f822c7f2a4fa24793" +path = "static-publisher/static-content/file3224.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/admin_guide/04-advanced-commands/index.html_gzip_396fb73c01ee1a2c3a56b22cc9989c0390d3523179f03a02f4d19f1f3db7c706" +path = "static-publisher/static-content/file3224.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/admin_guide/05-vi/index.html_4911df2c2b1ecaee481ba77c81a0be5e29569feea541e0d16b5e04ec927cdc8f" +path = "../build/minified/site/ru/books/admin_guide/05-vi/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/admin_guide/05-vi/index.html_br_8fcb825b514995b993fb04401117c60935c5b3e6dd1511db887a9ce0dd08372c" +path = "static-publisher/static-content/file3225.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/admin_guide/05-vi/index.html_gzip_c661a22f8aa3cacd2ece01f0506e017012a818d20a25b62f0df7c0f715069a19" +path = "static-publisher/static-content/file3225.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/admin_guide/06-users/index.html_2747871ba1295ff0a586dbb893a846aab34294c3513e15d27afdcd537a4eee4c" +path = "../build/minified/site/ru/books/admin_guide/06-users/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/admin_guide/06-users/index.html_br_a0a63c99c1332d696efa6568c7e987a99bc9908460c285454a5780b2d5953610" +path = "static-publisher/static-content/file3226.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/admin_guide/06-users/index.html_gzip_5431a9bb5a8dccecde50cb24eb759598db92f379e0e60a40926c0248e86ad0c9" +path = "static-publisher/static-content/file3226.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/admin_guide/07-file-systems/index.html_913410ea5b7d44444c6690f95bc6593fa89a601705db75bf3a75f193cab138c2" +path = "../build/minified/site/ru/books/admin_guide/07-file-systems/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/admin_guide/07-file-systems/index.html_br_a3b10e8c086e5a7bf5b813b75a4b755f5c5a1349a35b8e500f88e14f304024e7" +path = "static-publisher/static-content/file3227.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/admin_guide/07-file-systems/index.html_gzip_4fa639bce148fb6b168d24ba11b09e6e61616bc3acd588d3ce38d53a3a5a970f" +path = "static-publisher/static-content/file3227.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/admin_guide/08-process/index.html_6600de09fa9a4412da090b802b38dc3d78e744405f6c362c2a93b5a887d1d212" +path = "../build/minified/site/ru/books/admin_guide/08-process/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/admin_guide/08-process/index.html_br_2ef4dc56ba6460ba24d344cf58f57e86f346a81a2df086d492be8171cad802e9" +path = "static-publisher/static-content/file3228.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/admin_guide/08-process/index.html_gzip_e85780b7c01d66bb8e1aa3d3b51659f142413815b1635478d077c37ffebe29f2" +path = "static-publisher/static-content/file3228.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/admin_guide/09-backups/index.html_c03b08a674ea5174617875765b74f024399855b85b9e89e98d0b4bf48117e555" +path = "../build/minified/site/ru/books/admin_guide/09-backups/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/admin_guide/09-backups/index.html_br_1227a3046f9e30ae5c0cd2aa54eab60c28f4dc0b45184611d29a300e6e1ac338" +path = "static-publisher/static-content/file3229.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/admin_guide/09-backups/index.html_gzip_497402805ff1318a11b3cee4d3b40d8fd62f2c91f1a85a7a93856b90013f185c" +path = "static-publisher/static-content/file3229.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/admin_guide/10-boot/index.html_b4751321599bf9c8181a508476537f89fa3d85085c38a19304bf6561cb22ae11" +path = "../build/minified/site/ru/books/admin_guide/10-boot/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/admin_guide/10-boot/index.html_br_e03dfada0a3ab0108258c84d8f9eae0ec0d5e79271889fa9164d3e7a7da6db35" +path = "static-publisher/static-content/file3230.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/admin_guide/10-boot/index.html_gzip_4e897872567c320ad28b81c28bfd1402ab7b506b07362fa4e92f4bf056b88449" +path = "static-publisher/static-content/file3230.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/admin_guide/11-tasks/index.html_3dca050897c0f6b6753c60ece914abc934472b73625c234c0519bc418e1596db" +path = "../build/minified/site/ru/books/admin_guide/11-tasks/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/admin_guide/11-tasks/index.html_br_c8cf5c84faff5c0db7975d20f53a4ec5d1cacd1d7a05a20545211069b6bfa367" +path = "static-publisher/static-content/file3231.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/admin_guide/11-tasks/index.html_gzip_b20f5451de4e05ef5e45c58ec1bbfbf09bf6e2bb6556c6215eadbf098277377a" +path = "static-publisher/static-content/file3231.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/admin_guide/12-network/index.html_1ae4cf711093489e518d553613e7dfcd245434d85e5f5ea606bf6507ec9ffab6" +path = "../build/minified/site/ru/books/admin_guide/12-network/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/admin_guide/12-network/index.html_br_a73e9694567ee5f3467531e1ee4d04b72205513f0ec6ba0d30286a1259de5a13" +path = "static-publisher/static-content/file3232.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/admin_guide/12-network/index.html_gzip_0b2a81fd8b804f7461b79fbda983f5a72c596bab892f6fe0f9dec296d18e3895" +path = "static-publisher/static-content/file3232.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/admin_guide/13-softwares/index.html_e7de77e1b653df572e6d919388a5e491a96ad667e735a5e8b77114e133f48b6e" +path = "../build/minified/site/ru/books/admin_guide/13-softwares/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/admin_guide/13-softwares/index.html_br_02fb61da638bbc9e810e46642f1eb50cd37560e8010d0a3186f0995ec60be38a" +path = "static-publisher/static-content/file3233.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/admin_guide/13-softwares/index.html_gzip_2910d04c793bf82522091965f3e38d1dc97e50a9a4851d155d0f6faaf580cb3b" +path = "static-publisher/static-content/file3233.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/admin_guide/14-special-authority/index.html_33f2d725cfbda22a27c95d0edd20ed7d65890e30d28c38e052cca5e6a9fd2cdf" +path = "../build/minified/site/ru/books/admin_guide/14-special-authority/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/admin_guide/14-special-authority/index.html_br_1b7f5400d3b06c2968daeab6239d6eedcdd35f2a38568cee634fd148fac0150a" +path = "static-publisher/static-content/file3234.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/admin_guide/14-special-authority/index.html_gzip_849e29a3ca03adbc5debace8a435e7af7f99fe8a3806179fcdf0f5d895965163" +path = "static-publisher/static-content/file3234.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/admin_guide/16-about-sytemd/index.html_f24cba1c3164dc6b7129656f30080c5e21cb258e8f7b67cd05ef7087a36eee18" +path = "../build/minified/site/ru/books/admin_guide/16-about-sytemd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/admin_guide/16-about-sytemd/index.html_br_a95d14253a8699fe1cec35ce92c31b7f3995aea819eccbd748caa377f5574fd0" +path = "static-publisher/static-content/file3235.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/admin_guide/16-about-sytemd/index.html_gzip_5d2ee19560668c0473bb7fc565f6b67ca17b81b2c2ccd6ad3e81ba711cefbeb0" +path = "static-publisher/static-content/file3235.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/bash_programming/01-Shell-overview/index.html_7745e6a142dfcd53f958084c7d625e2b3afac416e1c026322b6cdb7598f8412f" +path = "../build/minified/site/ru/books/bash_programming/01-Shell-overview/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/bash_programming/01-Shell-overview/index.html_br_da9c6e0071bef82cb2a8d6d0f5979e8b94ec74881303a2945f12cb5bfb2157e5" +path = "static-publisher/static-content/file3236.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/bash_programming/01-Shell-overview/index.html_gzip_8ea4fa8c1efa1c66e25dcfec5be023901f9c29e6bc90e7475044bdc8b5dfb3c2" +path = "static-publisher/static-content/file3236.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/disa_stig/disa_stig_part1/index.html_22c07ff845192f5fca591214925e5c10bcce5e362f594c3fbd6cbaea405ce385" +path = "../build/minified/site/ru/books/disa_stig/disa_stig_part1/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/disa_stig/disa_stig_part1/index.html_br_17a88fbcfcf857921d4fe89ce73e5e5d2b41aa299a905166e3d25f7dc50566dc" +path = "static-publisher/static-content/file3237.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/disa_stig/disa_stig_part1/index.html_gzip_7e695261833571d5675f864ad7a2b7223b9e3b7020e728828890aa3dad2b4a6b" +path = "static-publisher/static-content/file3237.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/disa_stig/disa_stig_part2/index.html_1a31e7b8dd94593ca7badb7252487b4ab785443ed88140fbfe58dc5d694c2b7f" +path = "../build/minified/site/ru/books/disa_stig/disa_stig_part2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/disa_stig/disa_stig_part2/index.html_br_d83a87608ad5b1f72d90a54cdfd287b4dce16132479eab15735a64e03fe5e46a" +path = "static-publisher/static-content/file3238.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/disa_stig/disa_stig_part2/index.html_gzip_3a0a1d7b7ebe8482b071b2d5889a4002cb6875bdb8588effce29d615ec833674" +path = "static-publisher/static-content/file3238.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/disa_stig/disa_stig_part3/index.html_17d6e9de722d23946bca117d37e37dd9dbfd9293b87948df4da477c9dbfdfb64" +path = "../build/minified/site/ru/books/disa_stig/disa_stig_part3/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/disa_stig/disa_stig_part3/index.html_br_972ef15a1a5edca205f70603abdf2fd665370fd7c435fa4b7c7519b81a979514" +path = "static-publisher/static-content/file3239.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/disa_stig/disa_stig_part3/index.html_gzip_2aa64957eb8f93cf5a0cbbb6dcc16370f4254570b1705aac78b16c503be74b82" +path = "static-publisher/static-content/file3239.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/index.html_8b09848414ea465dc0c737e698bddbcac65519e91da4bab2f097e40288ab6452" +path = "../build/minified/site/ru/books/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/index.html_br_47f3e85318b5e15d796f82eb332b35740732010491a04d70e7a19dfb9f1af67b" +path = "static-publisher/static-content/file3240.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/index.html_gzip_231b23087c8f605b27a8fd4d9ee54b7f72e68d111801a7d515ee069bced0f9d8" +path = "static-publisher/static-content/file3240.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_ansible/00-toc/index.html_1c819f386ab49b2e4a3ede36ad3b6f502915010be3d85967269788b34216fa2e" +path = "../build/minified/site/ru/books/learning_ansible/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_ansible/00-toc/index.html_br_db764ad41bd37ed4baaada6320286866f11a0159def88b5b0e6c3549f0fd6f88" +path = "static-publisher/static-content/file3241.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_ansible/00-toc/index.html_gzip_23958cc0f61bec205a47f5ae20d9c85277973cd51235071eb3f29b21d377e3d3" +path = "static-publisher/static-content/file3241.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_ansible/01-basic/index.html_13ba20bba185dbaf89c4127631c42592d7e113334c17e09d9bdb445e2b1694b8" +path = "../build/minified/site/ru/books/learning_ansible/01-basic/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_ansible/01-basic/index.html_br_f9015d7dc825b51c7c0cd4a8496acb8d26032b4fbca95591e8244c33e88c04c9" +path = "static-publisher/static-content/file3242.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_ansible/01-basic/index.html_gzip_8b23c10aa845906ff5fb4a07db0bda2882428fd60e104300100d01e3b8f9c6a0" +path = "static-publisher/static-content/file3242.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_ansible/02-advanced/index.html_5a3033d1141a0c1f85358a0f78d0834259d9beb39f0fafa2c751afbb594f2db1" +path = "../build/minified/site/ru/books/learning_ansible/02-advanced/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_ansible/02-advanced/index.html_br_2231edcc411f09cd24c085c42346073794014c7291b2d4255f03f1bf2a26df51" +path = "static-publisher/static-content/file3243.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_ansible/02-advanced/index.html_gzip_6c0f37b55fcb45d3fe67c1c7d94be986bc94dcecf7dd40d884fe3a6e880e57cf" +path = "static-publisher/static-content/file3243.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_ansible/03-working-with-files/index.html_0e6082e702dd335aa284f2b40a7911a534f10d8cd5e6afbb3e0d772fc2982cdf" +path = "../build/minified/site/ru/books/learning_ansible/03-working-with-files/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_ansible/03-working-with-files/index.html_br_1b246342767de3954ffad54ee03efe83064116f595fd39982e4c99ff12aa2fd1" +path = "static-publisher/static-content/file3244.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_ansible/03-working-with-files/index.html_gzip_0cb24a2b42fad89d8a3f527292dff22515fec9cf8864c69c54dcc218de9f68e7" +path = "static-publisher/static-content/file3244.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_ansible/04-ansible-galaxy/index.html_24fd310c60c1a755d10c8023fa25d7a1b296988469874bea24b659a32ff70690" +path = "../build/minified/site/ru/books/learning_ansible/04-ansible-galaxy/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_ansible/04-ansible-galaxy/index.html_br_b469969f79d96f1abf91ac4f1180fd57e5e9c020d5de015b338c0a04a121b700" +path = "static-publisher/static-content/file3245.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_ansible/04-ansible-galaxy/index.html_gzip_1a6720460194f70b2b682ebf2ffe69fc17b2f265e094314a9dde331a7f56ad9a" +path = "static-publisher/static-content/file3245.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_ansible/05-deployments/index.html_9ec9b9bd03de409f57c6b1e036eaeb92824a66afa2ab941793949e5ea0ccbf1c" +path = "../build/minified/site/ru/books/learning_ansible/05-deployments/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_ansible/05-deployments/index.html_br_27f7373c4a1f54a8866f01ada5daf4d4d55157d76c3d9508fbf2bc0d441b386d" +path = "static-publisher/static-content/file3246.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_ansible/05-deployments/index.html_gzip_d7ae6835e7331004ca443dbcafc531650d25baf3278755577696caa3f8b5a319" +path = "static-publisher/static-content/file3246.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_ansible/06-large-scale-infrastructure/index.html_d5bcd08ddda18f2eafae3015d0de5392d10fc660dc40c2837c7eb44cbe914353" +path = "../build/minified/site/ru/books/learning_ansible/06-large-scale-infrastructure/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_ansible/06-large-scale-infrastructure/index.html_br_1e4fdba266f072b0d543d45aaf5e900faba6dfe21fb355b1975f83e3a52fc299" +path = "static-publisher/static-content/file3247.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_ansible/06-large-scale-infrastructure/index.html_gzip_3470ac4dedb672b38681083a89b221883f441acb7dc94fa0c6ff2b314db271f1" +path = "static-publisher/static-content/file3247.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_ansible/07-working-with-filters/index.html_783dc92fbae46979cd8eef88359814029edc7d078d74ba24c686c19a5f9769cb" +path = "../build/minified/site/ru/books/learning_ansible/07-working-with-filters/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_ansible/07-working-with-filters/index.html_br_6113673bf8b6d812a277e7420b128cefd7f206c4c2ec806231eb97f2f0559e7e" +path = "static-publisher/static-content/file3248.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_ansible/07-working-with-filters/index.html_gzip_58b708bf2441b50c703b27c68471a0dffd9afd72add8f2e78e4f95be17c3a07b" +path = "static-publisher/static-content/file3248.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_ansible/08-management-server-optimizations/index.html_46a5b128923dd8954a556293ce7bc869847ffcc7ce73367cf9ed13d577a2df4f" +path = "../build/minified/site/ru/books/learning_ansible/08-management-server-optimizations/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_ansible/08-management-server-optimizations/index.html_br_6e2b6fd09db33b3dfe82b7cff022d3759b635e07dbd742e621ace5f26de075b8" +path = "static-publisher/static-content/file3249.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_ansible/08-management-server-optimizations/index.html_gzip_6138450b68908e419b846e248b2bf53680d3b703272e52874a23d015ad41c77d" +path = "static-publisher/static-content/file3249.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_bash/00-toc/index.html_ef1836a49ddab171e445bd923fb03777d233eb0ca21b9267c612f23c617109e7" +path = "../build/minified/site/ru/books/learning_bash/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_bash/00-toc/index.html_br_0a4b09f033dce5066ce25a5e893dfe50de80118910e815169bad0ee014069e09" +path = "static-publisher/static-content/file3250.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_bash/00-toc/index.html_gzip_7b104b7e654ba6d92d8db5ef87243bbbafd5e802f79e0475065ac75940dd9cac" +path = "static-publisher/static-content/file3250.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_bash/01-first-script/index.html_b39d11866e43919d5818664c651d676008874f63e7e2dd0a84d02b3623edb0d3" +path = "../build/minified/site/ru/books/learning_bash/01-first-script/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_bash/01-first-script/index.html_br_c1e4d0f2ab3b3121ef25c5392374e4a7c4f49f287c8e540ccc1d044b915f749e" +path = "static-publisher/static-content/file3251.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_bash/01-first-script/index.html_gzip_bbe410c5521ee9ec097daa5e663f110266d7e3de60a49d17bd4c310a0e029fc0" +path = "static-publisher/static-content/file3251.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_bash/02-using-variables/index.html_7b493253483bef8560582aa3ff5399f485bace6e58104964452670aebef93fb7" +path = "../build/minified/site/ru/books/learning_bash/02-using-variables/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_bash/02-using-variables/index.html_br_cec587e38db85c95c4fe1462ce923c83cf5ece4d39280962807ed33d0315e2cb" +path = "static-publisher/static-content/file3252.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_bash/02-using-variables/index.html_gzip_88c9e6d811b97c31b81805128dee08fde0c3fe1b14713e013ed29c565bc6ac52" +path = "static-publisher/static-content/file3252.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_bash/03-data-entry-and-manipulations/index.html_bebe7b160ecee3332c7802f3923d4140af12da63920d1bffdaab99187506d560" +path = "../build/minified/site/ru/books/learning_bash/03-data-entry-and-manipulations/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_bash/03-data-entry-and-manipulations/index.html_br_0261b770903dda992af1cf144733fe5261fe0aacc8fda1ae79ec5ef6fc47afbf" +path = "static-publisher/static-content/file3253.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_bash/03-data-entry-and-manipulations/index.html_gzip_a478d5d1a5f6fffd93f8a2b8e636916460b7112da55d3627c988879d2024659f" +path = "static-publisher/static-content/file3253.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_bash/04-check-your-knowledge/index.html_b265c1c5a5e36c9bfc3a8fa6f3f2e515cc54ef0c61f08718af60872fe7929901" +path = "../build/minified/site/ru/books/learning_bash/04-check-your-knowledge/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_bash/04-check-your-knowledge/index.html_br_5c45337926567a848b4b52db3438f49cbc490c2773fe44c170ad48c60e7437d3" +path = "static-publisher/static-content/file3254.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_bash/04-check-your-knowledge/index.html_gzip_a2b2f3766c125fe5abda44a59ef94e7beb7a3973247d565f6eae7b575db7bd25" +path = "static-publisher/static-content/file3254.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_bash/05-tests/index.html_d64f5519f1c6a0153ac51c4e471c143e40abe7d5bd3bc15dc87d8273cdfe3a1c" +path = "../build/minified/site/ru/books/learning_bash/05-tests/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_bash/05-tests/index.html_br_b6953c47257082816dede4bbdf2a96eb7a53342130d9db98910de1df64d87a9f" +path = "static-publisher/static-content/file3255.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_bash/05-tests/index.html_gzip_3082f33f4a6e6c6d2c21bfcb2c4a0ecb3d8d8f41b336b8a10b99cd4d655c59b2" +path = "static-publisher/static-content/file3255.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_bash/06-conditional-structures/index.html_240e9419e065acee5aca51d0dbf19615386a2f72285cbb699f827db797b3e32c" +path = "../build/minified/site/ru/books/learning_bash/06-conditional-structures/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_bash/06-conditional-structures/index.html_br_a0a8191056ae9e57defb6465ee6ab03dd1081c60a26b9991d427c2e89237cef2" +path = "static-publisher/static-content/file3256.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_bash/06-conditional-structures/index.html_gzip_366cfab500a793b52c3f640898007f2a501b80cb18099e3a144a9a70845a567a" +path = "static-publisher/static-content/file3256.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_bash/07-loops/index.html_6747122c5090684d26ca3d4ffbf2e3a21d6b8a93592136e4930c81625305477e" +path = "../build/minified/site/ru/books/learning_bash/07-loops/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_bash/07-loops/index.html_br_723500f2a5f7bc97b718c3fe589177e48fc2dee4ac1142742cdcb4823fab8979" +path = "static-publisher/static-content/file3257.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_bash/07-loops/index.html_gzip_cb47ea34be225d7084c7e60902d736759cd8fc755db196fc5fae372cf5db8f56" +path = "static-publisher/static-content/file3257.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_bash/08-check-your-knowledge/index.html_d58e27ea483b3f9340ebbbcd7f30313af98e1d0a4494e0fc57cc85ea2d1515ab" +path = "../build/minified/site/ru/books/learning_bash/08-check-your-knowledge/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_bash/08-check-your-knowledge/index.html_br_efbab29c6286ca2d6beacb0b52f5f6f7dc8836831c1b669c404743c33f86ef7d" +path = "static-publisher/static-content/file3258.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_bash/08-check-your-knowledge/index.html_gzip_f85c8f9e2433a83f7c2d5e129c8279d9f6644521e5f01b16e611545b99749f8a" +path = "static-publisher/static-content/file3258.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_bash/appendix/02-variables-logs/index.html_499e2b2e276210ce6bed1daa08fce861206f49de8a8968a3c0e0975458ac8b0c" +path = "../build/minified/site/ru/books/learning_bash/appendix/02-variables-logs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_bash/appendix/02-variables-logs/index.html_br_f6ff545f862acf0854a63b4556c76694b649b3b8f29c9eeb4b1f2975421b04a7" +path = "static-publisher/static-content/file3259.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_bash/appendix/02-variables-logs/index.html_gzip_5670737bad2511fe841430c02c765c36f2193f8efb13d1d8f5f66a9a094fdc3f" +path = "static-publisher/static-content/file3259.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_rsync/01_rsync_overview/index.html_9bea1d23ab446c81837e6a07a79b55ef24a49d0fd7aaaf9505e73cd4256867cb" +path = "../build/minified/site/ru/books/learning_rsync/01_rsync_overview/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_rsync/01_rsync_overview/index.html_br_9daddb8cdda273bb4291fd42a56e72de1625264c72589ccee63eb645f11920c5" +path = "static-publisher/static-content/file3260.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_rsync/01_rsync_overview/index.html_gzip_f049233bcd3e40b2c129e2758970c89051f5a058eaa0ae2489d9b6298ee84583" +path = "static-publisher/static-content/file3260.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_rsync/02_rsync_demo01/index.html_38f1fb1987e6dc0271c01dd1ca77d4ef7a14876ca7b76e43fe6830be416cd274" +path = "../build/minified/site/ru/books/learning_rsync/02_rsync_demo01/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_rsync/02_rsync_demo01/index.html_br_48c0e3888e39bfbfe12382d3bd2eb669ebe377b7d61683bc8ab95f3edb124a6c" +path = "static-publisher/static-content/file3261.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_rsync/02_rsync_demo01/index.html_gzip_60002485294cddf19df5894b5e7adae0336692ec17a0dde2ba8d6459f52b7733" +path = "static-publisher/static-content/file3261.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_rsync/03_rsync_demo02/index.html_294abb70f51556569abd22d9a09603f593a3dc0d017c3d51f002b76e73137046" +path = "../build/minified/site/ru/books/learning_rsync/03_rsync_demo02/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_rsync/03_rsync_demo02/index.html_br_98e35738ec6506d5e679569d6dd14866b0863dc2acbcd52ca35036197f7229d8" +path = "static-publisher/static-content/file3262.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_rsync/03_rsync_demo02/index.html_gzip_82454be44b8e914136174897647486500a9223e02a0421feb4ce7210a77174c4" +path = "static-publisher/static-content/file3262.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_rsync/04_rsync_configure/index.html_b6c8745cd6b6fee64af0f5030d955d827f51bc8c0e5150c4019e1b3843c59e3b" +path = "../build/minified/site/ru/books/learning_rsync/04_rsync_configure/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_rsync/04_rsync_configure/index.html_br_f3197335de5c4d1b84393f161ea5488c74c9a614a99f2caa580a4576a1170b9f" +path = "static-publisher/static-content/file3263.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_rsync/04_rsync_configure/index.html_gzip_3280627df052080a3c1511071fdba2cbd4f786a8ec9918c4c916271a181ce4dd" +path = "static-publisher/static-content/file3263.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_rsync/05_rsync_authentication-free_login/index.html_e280fe142833c43491c03e3714c757b0a9a6679ddd680c4a6589d21d70b8bdd0" +path = "../build/minified/site/ru/books/learning_rsync/05_rsync_authentication-free_login/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_rsync/05_rsync_authentication-free_login/index.html_br_d772800e52be7702a37c20a43491a28f91fabfa423ee3c0f5d3f82b8f6b06f23" +path = "static-publisher/static-content/file3264.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_rsync/05_rsync_authentication-free_login/index.html_gzip_9372fa7af16d264714bd0a4579c6651853b1db026a631bff2f089d5e2405272c" +path = "static-publisher/static-content/file3264.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_rsync/06_rsync_inotify/index.html_626fea8fc24e42bcc1a91368f30ccfda44a2382c98ee873c0ee27bc361ca65e5" +path = "../build/minified/site/ru/books/learning_rsync/06_rsync_inotify/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_rsync/06_rsync_inotify/index.html_br_bff0075c50c35ae62dade812d79061eb026f058ddd09be9e96f7ac37dcdc94bb" +path = "static-publisher/static-content/file3265.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_rsync/06_rsync_inotify/index.html_gzip_25a4aeabca9932b7b04dda80ec4fe39fa9f4afa9c32378ed762372f0369aec24" +path = "static-publisher/static-content/file3265.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_rsync/07_rsync_unison_use/index.html_a1a22d4098424275df6bc80e7c4fcbba5e587b0873c9c0613a708e65b41e5149" +path = "../build/minified/site/ru/books/learning_rsync/07_rsync_unison_use/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_rsync/07_rsync_unison_use/index.html_br_634188bc3c2d2b8865c740f1319877a2cbf17a4d336e955b8f553d8d7fcb2993" +path = "static-publisher/static-content/file3266.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/learning_rsync/07_rsync_unison_use/index.html_gzip_4724ddf0174552e4829fb26719a5e72cbc6b078d75b343649015710a4e4025b8" +path = "static-publisher/static-content/file3266.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/licence/index.html_ed01404718812e20a6e5c4c2e737e48253e34bdc5b327076963b49959b637455" +path = "../build/minified/site/ru/books/licence/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/licence/index.html_br_ae0906d2d2ae8a8cb7ab5a725b95559d929284ca5c94ed9f59d0c6c95481a599" +path = "static-publisher/static-content/file3267.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/licence/index.html_gzip_8bbb78236b2b91ec8c8f2c97addc5733495e1c89148ba9617a1ea12e3f1d926e" +path = "static-publisher/static-content/file3267.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/lxd_server/00-toc/index.html_f3d881c27e766863028546cc0e09291bbbb7bfdac72302938ec6ec3ff91d671b" +path = "../build/minified/site/ru/books/lxd_server/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/lxd_server/00-toc/index.html_br_75dc1463991590fb048bca5bd37420167c0d4f10c54dfcfaefc006c196846b2f" +path = "static-publisher/static-content/file3268.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/lxd_server/00-toc/index.html_gzip_44000ea155575bedebf7d258e0e772fa34ea5d30b637f5365c801f5401bf37ca" +path = "static-publisher/static-content/file3268.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/lxd_server/01-install/index.html_6639fa03d4c61f6d584758946f19b77cc1860bdba5e1129cafb0b21fe966ae7d" +path = "../build/minified/site/ru/books/lxd_server/01-install/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/lxd_server/01-install/index.html_br_c4195af40230688e457b74c08a324c6748a97a372c36c4b3b11fbdd29fa09bb3" +path = "static-publisher/static-content/file3269.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/lxd_server/01-install/index.html_gzip_a545400f8f85664136992edfb76dc0824565542d5b87410da2dd7037766f77d8" +path = "static-publisher/static-content/file3269.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/lxd_server/02-zfs_setup/index.html_6150858d580cb2cc5570c5b4176841e4ded09640d21ae4037e3fb77e8dc7b7b9" +path = "../build/minified/site/ru/books/lxd_server/02-zfs_setup/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/lxd_server/02-zfs_setup/index.html_br_b1f95645ac22e71b694e184fa9cbc75d4b5e0772f8a64e075dc929a18bbcd1bb" +path = "static-publisher/static-content/file3270.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/lxd_server/02-zfs_setup/index.html_gzip_5c0e51e933cadab57186d9a6aaff479a46bb82e890d6921d576780a6cba5b9a0" +path = "static-publisher/static-content/file3270.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/lxd_server/03-lxdinit/index.html_9e5faf41355a5e9ca7860d99c51983f15ac41bd23d2ee487dae36b769fe354b0" +path = "../build/minified/site/ru/books/lxd_server/03-lxdinit/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/lxd_server/03-lxdinit/index.html_br_ed6591d3b372342c91bdb96bb4bc03d4d590243463e83735add7fc78f7ceb81c" +path = "static-publisher/static-content/file3271.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/lxd_server/03-lxdinit/index.html_gzip_7e5e15180e788314bb98f396f2228a0d9bb213587be1f3f5e61731926d6914ab" +path = "static-publisher/static-content/file3271.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/lxd_server/04-firewall/index.html_df37a31e14fa18079156cc884abfb5dbd105662e5ca35e2c1c6219707309a0f9" +path = "../build/minified/site/ru/books/lxd_server/04-firewall/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/lxd_server/04-firewall/index.html_br_0bf7ca7ba20da85f496ae97550536655949a2b4b03b084523343d923ab48f2d2" +path = "static-publisher/static-content/file3272.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/lxd_server/04-firewall/index.html_gzip_264624deac7630cc235f768f5383e058733551c44464f4db3b12334e9da0288d" +path = "static-publisher/static-content/file3272.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/lxd_server/05-lxd_images/index.html_d9edbe7d417e6e385ffdd1a66069b29e4050d1fe033470b3b18d71af3d5c7294" +path = "../build/minified/site/ru/books/lxd_server/05-lxd_images/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/lxd_server/05-lxd_images/index.html_br_6a581a248391868e934561dd7666b2edbfe8515743405eda5b116e5f7ed91620" +path = "static-publisher/static-content/file3273.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/lxd_server/05-lxd_images/index.html_gzip_74c09fb26654581c75eb790d2d3595ad7dcd1248881f42bbfcfdb47355c70440" +path = "static-publisher/static-content/file3273.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/lxd_server/06-profiles/index.html_52dee5481a379b345de4853a27fdf054718d9f77c234a1a6733e3db5f4ae7930" +path = "../build/minified/site/ru/books/lxd_server/06-profiles/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/lxd_server/06-profiles/index.html_br_4bb40d2e5224c62ef24367c960eada3309618a575ddbe3f65ca73fcea71a80c3" +path = "static-publisher/static-content/file3274.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/lxd_server/06-profiles/index.html_gzip_860fcd287b3a43621ec7c15cf442af64a8e99d6f131fc580a1582d539d0012d0" +path = "static-publisher/static-content/file3274.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/lxd_server/07-configurations/index.html_ff4de59c03bcf0ac44d017af5c25aad4ec387012ce01e7d64b0407ceaeae0008" +path = "../build/minified/site/ru/books/lxd_server/07-configurations/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/lxd_server/07-configurations/index.html_br_99d9346b7c35ab8944392f590955bb90a1b3e36791b3e3d250f235975dfbcbe1" +path = "static-publisher/static-content/file3275.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/lxd_server/07-configurations/index.html_gzip_e46565057774311660da6f39a2ee9bbbc7e93dfb2b08f1cbc2f6e248a9ff1dae" +path = "static-publisher/static-content/file3275.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/lxd_server/08-snapshots/index.html_0dc5252cdff0498fdc806816eae3f6516193f4a45e3b9993b013a331da4511d2" +path = "../build/minified/site/ru/books/lxd_server/08-snapshots/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/lxd_server/08-snapshots/index.html_br_5ae974673ade3cbb4508726f18ce997640e109b8596707fea626ecf029aea958" +path = "static-publisher/static-content/file3276.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/lxd_server/08-snapshots/index.html_gzip_b17a7c995372847111c3ed6049854ef9be66017180eb5f18e846069cccf30781" +path = "static-publisher/static-content/file3276.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/lxd_server/09-snapshot_server/index.html_0a894afcf6bde2c50a7cdb1c27866da4d1e9ede6eca98de5979f98927a9fefdb" +path = "../build/minified/site/ru/books/lxd_server/09-snapshot_server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/lxd_server/09-snapshot_server/index.html_br_344094229a1484c13df0acb14cd3aa4274a621338ecdf8bd914eb6837e3c4d6e" +path = "static-publisher/static-content/file3277.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/lxd_server/09-snapshot_server/index.html_gzip_e3911cd74775ad153cb390904f4b8be69106a89056795c61fefd718d21d0fa8e" +path = "static-publisher/static-content/file3277.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/lxd_server/10-automating/index.html_83918d227c6888914b904775dcbb0ca83240ca7e3f426e19f9036c772ae4f8f4" +path = "../build/minified/site/ru/books/lxd_server/10-automating/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/lxd_server/10-automating/index.html_br_d7579747a0b3c560f774f2338f628be941284de2bf010f4da80638c4230337cd" +path = "static-publisher/static-content/file3278.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/lxd_server/10-automating/index.html_gzip_278770fc3b45c52e029a4aab079da44132c29d6b9064de8214adc380380d1f33" +path = "static-publisher/static-content/file3278.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/lxd_server/30-appendix_a/index.html_2b977595850c5c175f0e5170af3c6df9c33c2c37e6eb3e862cc6a3db351bb79f" +path = "../build/minified/site/ru/books/lxd_server/30-appendix_a/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/lxd_server/30-appendix_a/index.html_br_644017c176a82ae2c5f35f9e0bd77f74938cbf871f50debad17046d1b0f41fba" +path = "static-publisher/static-content/file3279.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/lxd_server/30-appendix_a/index.html_gzip_945f9597ac64feb2b4d2af235ea2260a0bf0a5f41cf2568aba3dbaa3fac0265d" +path = "static-publisher/static-content/file3279.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/nvchad/additional_software/index.html_0f5ce6bb38230243515b784c80deee2512392264033f8db4bfa864a424abd2c3" +path = "../build/minified/site/ru/books/nvchad/additional_software/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/nvchad/additional_software/index.html_br_be648d0dd05031275a4c70458c9831b7c30996e9ee5a52948c089341369bdbd2" +path = "static-publisher/static-content/file3280.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/nvchad/additional_software/index.html_gzip_4ffec30aaf08c0f549fac92986ba2aed572c490dcff7fe1ad1f1885318686a90" +path = "static-publisher/static-content/file3280.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/nvchad/index.html_fd53ceb771206d58deea654ed336e57d478c94b602103b7d88ea874c4aa5cf98" +path = "../build/minified/site/ru/books/nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/nvchad/index.html_br_0634b99fd6f4ec554060ce18577ca611e95a96b1360c48a7525c12ac0757eb5d" +path = "static-publisher/static-content/file3281.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/nvchad/index.html_gzip_46201a94608efbb37fc9d4600f4ac4d4937c49cf5515fcd0745e71d5b705eaa5" +path = "static-publisher/static-content/file3281.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/nvchad/install_nvchad/index.html_026058f6718188a3b3da79b88e796902f03c9af70a77716e420f6ff2195575c5" +path = "../build/minified/site/ru/books/nvchad/install_nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/nvchad/install_nvchad/index.html_br_ebec372f46fa7afcf534c00e602819eb03beb230be156db69ae554ce33012af7" +path = "static-publisher/static-content/file3282.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/nvchad/install_nvchad/index.html_gzip_83ea210f550fe5e1bdff1c22c587b4711b4291cf4114ed03d495140aba25c277" +path = "static-publisher/static-content/file3282.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/nvchad/install_nvim/index.html_3fbc88c9a32030e6a5ace06b49019c3dc09b5c5fa160a1310e470cf28c5f2ded" +path = "../build/minified/site/ru/books/nvchad/install_nvim/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/nvchad/install_nvim/index.html_br_c3f979bbe4a50a69f5dfad364427309f3282625adc07ec0fd6ecf634ee091e14" +path = "static-publisher/static-content/file3283.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/nvchad/install_nvim/index.html_gzip_7946702499cf387687503e3b32f0a95db01e7f95d7a240c9b973eda3b17c838f" +path = "static-publisher/static-content/file3283.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/nvchad/marksman/index.html_ae1b66483d18d3ac7ab2cda9dc477d2cbd4eef3581ffe9fe2ba5e85578fffce5" +path = "../build/minified/site/ru/books/nvchad/marksman/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/nvchad/marksman/index.html_br_5a7cb2c960d537bd94c0cdf7177ea6dea450aa0ec1d57bb3895b6212d3fce621" +path = "static-publisher/static-content/file3284.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/nvchad/marksman/index.html_gzip_d71c24c2968e705d03f5ea3ec8d11b56d4ab1f89dd937d0f9e8e858578a58e28" +path = "static-publisher/static-content/file3284.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/nvchad/nerd_fonts/index.html_0be5abdfbfb9e93b5014eb6b4d771cf9a6ff544a8d6877a0255b8449c3dfbb86" +path = "../build/minified/site/ru/books/nvchad/nerd_fonts/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/nvchad/nerd_fonts/index.html_br_28b30fd9cd3d34ce25d318636e98b283be2f92ca2c54d25f07aa5ab01eb8ff4d" +path = "static-publisher/static-content/file3285.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/nvchad/nerd_fonts/index.html_gzip_9a8f87f9e2adef269c7447d581621d8fb9888217434eab4cf7e7bda348ab2fa4" +path = "static-publisher/static-content/file3285.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/nvchad/nvchad_ui/builtin_plugins/index.html_94703b7d733aa75424d8004c98781e8d0d8e6af4cb88427df6823963e8fb82bb" +path = "../build/minified/site/ru/books/nvchad/nvchad_ui/builtin_plugins/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/nvchad/nvchad_ui/builtin_plugins/index.html_br_5d15ce30fac8576dee46f6448aeab4a7ca289c23e9dfdea127fef628874cef13" +path = "static-publisher/static-content/file3286.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/nvchad/nvchad_ui/builtin_plugins/index.html_gzip_523f5a066168e55e60c672b3ebb4bd9b9adb45e0c08305b2d5cbadcaa1a40f00" +path = "static-publisher/static-content/file3286.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/nvchad/nvchad_ui/nvchad_ui/index.html_f6cf9c9d570f776e6f9f9d542e85ca81584223f611e7179c30577e48ea0ba070" +path = "../build/minified/site/ru/books/nvchad/nvchad_ui/nvchad_ui/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/nvchad/nvchad_ui/nvchad_ui/index.html_br_fdd823c6354275cfc16ce87efc5f3d26979686ea1a3abc32d463797d2dec35fc" +path = "static-publisher/static-content/file3287.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/nvchad/nvchad_ui/nvchad_ui/index.html_gzip_29e79b602ab18864ab8583aed8afaa466c1e233ce4baa1070c95c683d19949b2" +path = "static-publisher/static-content/file3287.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/nvchad/nvchad_ui/nvimtree/index.html_09dfa4a46adba9da2b44c0ed249511eedcac937b2add28fc2443d887aeb5e183" +path = "../build/minified/site/ru/books/nvchad/nvchad_ui/nvimtree/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/nvchad/nvchad_ui/nvimtree/index.html_br_51cd91d5549aacab1480f9a00c6c1dc534e78501559b3f6cdb69ec0e6253c4a9" +path = "static-publisher/static-content/file3288.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/nvchad/nvchad_ui/nvimtree/index.html_gzip_63432dfe9857b32d1327edcec4cd7a4a3eea633cd1ae1cc9e008598e55f26554" +path = "static-publisher/static-content/file3288.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/nvchad/nvchad_ui/plugins_manager/index.html_8281e0d580951716e6a23bff8e5e433cf458eff2745cb6d314f9f0d83f1e6fee" +path = "../build/minified/site/ru/books/nvchad/nvchad_ui/plugins_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/nvchad/nvchad_ui/plugins_manager/index.html_br_d15f178e35b270f6d1a2f5f848153be2167de237d3856c1b7b042de6921b2a37" +path = "static-publisher/static-content/file3289.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/nvchad/nvchad_ui/plugins_manager/index.html_gzip_d55e39a628d7dc2913275ad66b3ec3dbf730452e05531c6852f4c0e8a219e86c" +path = "static-publisher/static-content/file3289.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/nvchad/nvchad_ui/using_nvchad/index.html_cb201dcc0d3becf3415317dedd746c5f399906ef3b2949061d135e5419ce71ab" +path = "../build/minified/site/ru/books/nvchad/nvchad_ui/using_nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/nvchad/nvchad_ui/using_nvchad/index.html_br_99076402a3c2c590dfbdd76b3c7761de51172f0381f64b7a50776af4f8c36f8f" +path = "static-publisher/static-content/file3290.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/nvchad/nvchad_ui/using_nvchad/index.html_gzip_44b439715e0df96c67597778d09ee5262581ba06ca576edc0eb59e68e6f74dab" +path = "static-publisher/static-content/file3290.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/nvchad/plugins/index.html_fee6290dc312d56848ed1629f9fa7f2213c9950ed8c1c9696e4f1e4c766226ae" +path = "../build/minified/site/ru/books/nvchad/plugins/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/nvchad/plugins/index.html_br_4b220b380201ce5b6eab0f45cbade3d3d09e3971e64df92336e2e3db8c0ad348" +path = "static-publisher/static-content/file3291.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/nvchad/plugins/index.html_gzip_e8f2417a8b0b13cd01eba79189dde833f7c6d31f77fe10f42bfef50f51d598c3" +path = "static-publisher/static-content/file3291.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/nvchad/plugins/md_preview/index.html_7ca01eae17ec1c91981787315b3bbbcacc85ef8b9f6dd4c7ed963bd455a22773" +path = "../build/minified/site/ru/books/nvchad/plugins/md_preview/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/nvchad/plugins/md_preview/index.html_br_ec87a320b95cde338b836fa36822922aeac881e38bee4bcd29cfce63e231698b" +path = "static-publisher/static-content/file3292.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/nvchad/plugins/md_preview/index.html_gzip_595cc7f71015efaeb7e5719c66e5403cb7e9ccb332ea8130d2b061193c5b2a17" +path = "static-publisher/static-content/file3292.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/nvchad/plugins/projectmgr/index.html_8f5a0a734891562e34df594882fb7bdd3f6c3577e9ba51a5646a0319c84561a4" +path = "../build/minified/site/ru/books/nvchad/plugins/projectmgr/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/nvchad/plugins/projectmgr/index.html_br_578af38237ab052930df8aa3d4da7e519740536f928ce7c4b76e9b8e24fc651a" +path = "static-publisher/static-content/file3293.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/nvchad/plugins/projectmgr/index.html_gzip_4381ee6c3b90a87b044599541a8d0e2f88ae11ed881495b1341533986eeaf358" +path = "static-publisher/static-content/file3293.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/nvchad/template_chadrc/index.html_28915c940299b7dfb34243bc6999270b45a580cdd0924b7ea4aecad3a6eb5ddb" +path = "../build/minified/site/ru/books/nvchad/template_chadrc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/nvchad/template_chadrc/index.html_br_884f8c70efb5eb4c7a566068a4147e1f6a9e9740fada37ca61f9680f347982ba" +path = "static-publisher/static-content/file3294.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/nvchad/template_chadrc/index.html_gzip_e7edab27593448bfad6c58416847e8de9a5c5f3d2d0ed0b9a08af55d4b4e9ec1" +path = "static-publisher/static-content/file3294.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/nvchad/vale_nvchad/index.html_ccba9bc262b1fa9cb3a2acb914d8aef34a9791b02ff11eddeb3619ee69f71092" +path = "../build/minified/site/ru/books/nvchad/vale_nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/nvchad/vale_nvchad/index.html_br_b015edbe96f0eb5087d2acdc9b37bc25e77741f6fd3af68fb2f0f6d6bcafeb7c" +path = "static-publisher/static-content/file3295.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/nvchad/vale_nvchad/index.html_gzip_c8bcd2456595ed13836911fa46432f01801a9ef4898899ada4b0287583d6e101" +path = "static-publisher/static-content/file3295.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html_24e387b0819fda4c5c3dc1eb6b17bcb248bc8d4841f0b266b325852e9a666cfd" +path = "../build/minified/site/ru/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html_br_e1f48c114dc5cc35f792e8c6704ecb60a685b4504cbdabbbc946844f80fe9d05" +path = "static-publisher/static-content/file3296.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html_gzip_c8a382b5c5b8537a3b7777d9a2f047c85b0f954646964faa1bf72e0eb0a642f0" +path = "static-publisher/static-content/file3296.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/sed_awk_grep/2_grep_command/index.html_3f5b36e2a375eb1db967c489efc77347dd41fc527ba312271b869b3d7cf5593d" +path = "../build/minified/site/ru/books/sed_awk_grep/2_grep_command/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/sed_awk_grep/2_grep_command/index.html_br_3f1530a8a489625519b53b5f7788fe33af88eceb7b0d8812b15e5e502f354f1b" +path = "static-publisher/static-content/file3297.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/sed_awk_grep/2_grep_command/index.html_gzip_d838afcd7173209cd0b70030fb0e2c0da41e22ee4eeff0dce8ce3bb2fd6893bb" +path = "static-publisher/static-content/file3297.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/sed_awk_grep/3_sed_command/index.html_bfdcb1607d5cdb75f841a271de83b5a1817644bafebfd3d76eea8e28c3fd86a4" +path = "../build/minified/site/ru/books/sed_awk_grep/3_sed_command/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/sed_awk_grep/3_sed_command/index.html_br_46bd815f48a63dffb7462283dd49267d78cd850475da692b51d57c6f9d26c856" +path = "static-publisher/static-content/file3298.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/sed_awk_grep/3_sed_command/index.html_gzip_2e3ca1f4e5ff7b658f3e829ad9cd316940cf9ca2e4753785c8590cfa90f16568" +path = "static-publisher/static-content/file3298.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/sed_awk_grep/4_awk_command/index.html_10f286d48f74cb35885393e45a353c40f8f5d4066e80982cb4d6ff5c106c7e7f" +path = "../build/minified/site/ru/books/sed_awk_grep/4_awk_command/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/sed_awk_grep/4_awk_command/index.html_br_ae710e4183367c627aa20f26aaf8ac1b51a41d7999c9cf3265821449f7236c6e" +path = "static-publisher/static-content/file3299.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/sed_awk_grep/4_awk_command/index.html_gzip_315d60038e1e1d7c95f8264070a5cffed2a8dbf5aee82b120628313c30f8d222" +path = "static-publisher/static-content/file3299.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/sed_awk_grep/index.html_1875c3e4ef747df6d844a0fe6ee20c6892f2ed78118acb63db16a533b8c4eace" +path = "../build/minified/site/ru/books/sed_awk_grep/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/sed_awk_grep/index.html_br_4011ebe4c29d84a09fbb509b42bbb2d51374b90d1651b5c681131d3813ba4e86" +path = "static-publisher/static-content/file3300.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/books/sed_awk_grep/index.html_gzip_7f434cc825a183d66de6afe6e0441d4da3275ff7f4b61f0944eacf2eccc356ce" +path = "static-publisher/static-content/file3300.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/containers/docker/index.html_aa26f3541248c724422ed8dd086c43b7be7604c565bb8c0475f1359f17b6c9e4" +path = "../build/minified/site/ru/gemstones/containers/docker/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/containers/docker/index.html_br_0d4e091cb459f4f194d43053713f0596ce898f3a766f734e98172c59806b686d" +path = "static-publisher/static-content/file3301.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/containers/docker/index.html_gzip_acc36cb95256a2111569800ce4198acc907d96b78f640bd9dbad8e72d7926314" +path = "static-publisher/static-content/file3301.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/containers/podman/index.html_82dfe26bb6ab449e961faa008165d9c9b27ed8a9f9a4d6691c723559a9d4324f" +path = "../build/minified/site/ru/gemstones/containers/podman/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/containers/podman/index.html_br_3dd64952b616c1478eb3aaa6de7eb23fc98029a024e73ab3b79694a5c28586b3" +path = "static-publisher/static-content/file3302.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/containers/podman/index.html_gzip_19de022fc825449cfc00dcec6b5d94040577c8b4f6d089c97abf6bc80761f526" +path = "static-publisher/static-content/file3302.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/core/view_kernel_conf/index.html_b0616d809569a10da89f6895045b012f3356821e4c2372a548a398cfbc7b91c2" +path = "../build/minified/site/ru/gemstones/core/view_kernel_conf/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/core/view_kernel_conf/index.html_br_eb663ac99e92a7bcd41ebe84c07c3b448a55452c27611ec39764b2909761e244" +path = "static-publisher/static-content/file3303.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/core/view_kernel_conf/index.html_gzip_6a22fb8baa33ac9666e0dd7cd3b6245cd66071f9d874320143731b79c74735c6" +path = "static-publisher/static-content/file3303.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/dnf-swap/index.html_ec3c3b735b65faa91c7cbdf084a146809166732cdb8e897623e679df97dd433e" +path = "../build/minified/site/ru/gemstones/dnf-swap/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/dnf-swap/index.html_br_d2786b62801176be826f22129e94cfc1e0fa0104bf77429a32229f8fb998a323" +path = "static-publisher/static-content/file3304.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/dnf-swap/index.html_gzip_cab471cd7527802d62521fe4bb1448780ffc88f359dd98244132051e95fffb7a" +path = "static-publisher/static-content/file3304.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/gemstone_template/index.html_97213b5ae451b38b2df3c54667448fd3b70c0f6de070d3f6a89f8cb6489a2eb8" +path = "../build/minified/site/ru/gemstones/gemstone_template/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/gemstone_template/index.html_br_776042eaf9b59d410f18f9406c7754e0d5a44f950bf9c8ca326741dddc6a0bec" +path = "static-publisher/static-content/file3305.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/gemstone_template/index.html_gzip_73edfb5bf2c06fdebda64f61c0739a45f4bdd72b0b8c0557b7c896e44a876475" +path = "static-publisher/static-content/file3305.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/git/00-gh_cli_installation/index.html_8b32cf2ea1f1ddb239e287db21157738435076eb4ef4b1276dbbbcefc68d6597" +path = "../build/minified/site/ru/gemstones/git/00-gh_cli_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/git/00-gh_cli_installation/index.html_br_7837c4bc4614dbc8927a8a804cb2a8eb8b596cc3277853f7f75825fa4e1e0b5f" +path = "static-publisher/static-content/file3306.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/git/00-gh_cli_installation/index.html_gzip_6e601aa79e2b7b4baf12a5657e21bf5ec330896dd058f8fd51bf2faea3cb2876" +path = "static-publisher/static-content/file3306.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/git/01-gh_cli_1st_pr/index.html_113aec47820c3d994da70a8c787950c2805213f3f3babddfd6444b90f71f7f74" +path = "../build/minified/site/ru/gemstones/git/01-gh_cli_1st_pr/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/git/01-gh_cli_1st_pr/index.html_br_f2f7ff45f1be95b3568176865a565df3ca24d491fe4de784ff2770ad11a73669" +path = "static-publisher/static-content/file3307.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/git/01-gh_cli_1st_pr/index.html_gzip_31b85d23161c5252221c0d949ccfa7aaecd5c458bfa476b1b6abcb03000f716a" +path = "static-publisher/static-content/file3307.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/git/02-gh_cli_edit_pr_title/index.html_2d244a468d5299d6d6283edc6adfc8c6cb2c12904306b249cb8f5c5c218d3112" +path = "../build/minified/site/ru/gemstones/git/02-gh_cli_edit_pr_title/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/git/02-gh_cli_edit_pr_title/index.html_br_7a18bef0a307b180ab3f302990818d02c8464d681c52d063c50f57e69f99c1fc" +path = "static-publisher/static-content/file3308.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/git/02-gh_cli_edit_pr_title/index.html_gzip_5539d252f05e2a3927d7447833b2252dca166a3f08e7335d78bf77f29f9c3e64" +path = "static-publisher/static-content/file3308.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/git/02_github_web_edit_pr_title/index.html_a1c6e40695407555909cb94af1fce8cca6727f7e692addcbc8a281af620c8b02" +path = "../build/minified/site/ru/gemstones/git/02_github_web_edit_pr_title/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/git/02_github_web_edit_pr_title/index.html_br_0ca179f0561a916805d23ebc25fad139328e5dd9a866bd4990caca53d00bda86" +path = "static-publisher/static-content/file3309.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/git/02_github_web_edit_pr_title/index.html_gzip_3d4df9a29cf007507f4a48d58e480705f8688fa0db588aa5dd2d6d73f4739649" +path = "static-publisher/static-content/file3309.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/git/feature_branch_workflow/index.html_602445759001e86079eabe6df0d94cc80d69e20ff0c0e09f09737a3c941ed882" +path = "../build/minified/site/ru/gemstones/git/feature_branch_workflow/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/git/feature_branch_workflow/index.html_br_a5616cf8812ca2af596fb1c1d84b300e536c674d424ea9aa204541f3b6c9c858" +path = "static-publisher/static-content/file3310.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/git/feature_branch_workflow/index.html_gzip_579458afcb9923cc5bed8b4273af0dcd17caf8b16ab2b4f9fee9c008685f1baa" +path = "static-publisher/static-content/file3310.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/git/fork_and_branch_workflow/index.html_80a099e5226af15a508300ab7dac204e5c12c2f244fc6afb0fd3558f02b55a15" +path = "../build/minified/site/ru/gemstones/git/fork_and_branch_workflow/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/git/fork_and_branch_workflow/index.html_br_76884b3cf49fc5da8be5397d6bb9689a0bb12cae153d37e0499e4b6d695dd896" +path = "static-publisher/static-content/file3311.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/git/fork_and_branch_workflow/index.html_gzip_aba307b7a6563bd56ab8818b05f5417082d85987dd117c9197ec75f41cb9d5f5" +path = "static-publisher/static-content/file3311.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/git/git_pull_vs_git_fetch/index.html_a91e71d02d5e6d42915c4f9fa539a2bcffd73cad8b412f2bbc2c790798326340" +path = "../build/minified/site/ru/gemstones/git/git_pull_vs_git_fetch/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/git/git_pull_vs_git_fetch/index.html_br_ee62bad25e68cca5d6cba12535861171c860fc5225068f45317d8bd228ff4a21" +path = "static-publisher/static-content/file3312.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/git/git_pull_vs_git_fetch/index.html_gzip_35aefc2a15d0ec85d4f8b2452c61f55447ea9b3a7b6bb64701d3039ec2e395fb" +path = "static-publisher/static-content/file3312.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/git/git_remote_add/index.html_320bb6a2cfff8177fed91ac8badd2c8ce59f61fb9ef86e5d1ebfecc93aca9e71" +path = "../build/minified/site/ru/gemstones/git/git_remote_add/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/git/git_remote_add/index.html_br_305fd4522288ce06675481a2de1a8728ff3277bc1ff898b53da35ae25f866aa7" +path = "static-publisher/static-content/file3313.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/git/git_remote_add/index.html_gzip_528238481d152d26ae78b1d071011937323cd7b3b11497a1a1e7f5120cb275cd" +path = "static-publisher/static-content/file3313.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/git/tracking_and_nontracking_branch/index.html_e8b1475e3f64800c32b119b1f5c7e590568ac093c3094080b0226b2557fbff0e" +path = "../build/minified/site/ru/gemstones/git/tracking_and_nontracking_branch/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/git/tracking_and_nontracking_branch/index.html_br_a5b9dc4a5a1a059109be3adb13911cd77c5c038269ca7266eaf0e7b606195b16" +path = "static-publisher/static-content/file3314.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/git/tracking_and_nontracking_branch/index.html_gzip_c354420c1a9effd090c7349b24404e03ec57060d2e324d1db8f8a8f85970470d" +path = "static-publisher/static-content/file3314.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/htop/index.html_dd4111121927e08cf4b44372c7d252781d5176bc530e4950cd3c43f12059ba0e" +path = "../build/minified/site/ru/gemstones/htop/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/htop/index.html_br_48faa6ebd7350798192bb767a13ef4b042d4bd17177050b9eae46535d2dba329" +path = "static-publisher/static-content/file3315.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/htop/index.html_gzip_6113efc828f9e0052fdf1996e862e1bfd647e06f7aab00df44f15dea04fbeea9" +path = "static-publisher/static-content/file3315.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/https_rsa_keygen/index.html_e421ab907aceb05b4ad54b9bca8077639c8871c2e36f154fe1769e972a6df98b" +path = "../build/minified/site/ru/gemstones/https_rsa_keygen/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/https_rsa_keygen/index.html_br_1096db58097c3ff42f393bfdee728130c7fd9c5b5b5fe96c25319721966504f3" +path = "static-publisher/static-content/file3316.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/https_rsa_keygen/index.html_gzip_dd3410c72eb2a94cc96e3c15c04402a57c434235d634815b3b6514279c1a53e5" +path = "static-publisher/static-content/file3316.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/index.html_f1b373e60254dbb09a32c8d01498de95a15316a8cfcf718fc412ca2f53789dc2" +path = "../build/minified/site/ru/gemstones/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/index.html_br_3c36e1a7e6b56d5d4ed24211c671a3b57fb87f49b47bc7894b3f8b5ae076326e" +path = "static-publisher/static-content/file3317.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/index.html_gzip_da2857629f0c2a76db38bfabcade9b5d6f4d924692111f3416167b2161539eac" +path = "static-publisher/static-content/file3317.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/markdown-demo-v2/index.html_a0a3348214a767fc651f249bde7331af5fb051712b4aa9ca17d0a8e268d6cb6b" +path = "../build/minified/site/ru/gemstones/markdown-demo-v2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/markdown-demo-v2/index.html_br_585115edd6b0671ba81aa5fd47a2cc90b1a1ad362b27475225d3c86eafddf57d" +path = "static-publisher/static-content/file3318.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/markdown-demo-v2/index.html_gzip_ee24ef5d08fe40b5252027488f26695f9feb8e4172702e9f57c4b3ec3c71f23e" +path = "static-publisher/static-content/file3318.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/network/RL9_network_manager/index.html_206006e00ed85cb53e07da92403d3e3f2b75c7caf75ad8b389a21e0a990dd41a" +path = "../build/minified/site/ru/gemstones/network/RL9_network_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/network/RL9_network_manager/index.html_br_d22deab0594554db0e2bc0dcd3f69c1201a7ca038494b097de4595ba0526ef7e" +path = "static-publisher/static-content/file3319.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/network/RL9_network_manager/index.html_gzip_ffff9aee7ffd41fff09d7d195ed31067d92a2288576c30fe066ee26753c7cd7a" +path = "static-publisher/static-content/file3319.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/network/iftop/index.html_6af4d8b8fffb80ca7d3ee98639f5bc1b857ecf5b4b1914e6378123371a47da3c" +path = "../build/minified/site/ru/gemstones/network/iftop/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/network/iftop/index.html_br_7e15dae9f4b73662b4f75b3eab648763a0e9b11dfec3ec34e0b36b77e408bf80" +path = "static-publisher/static-content/file3320.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/network/iftop/index.html_gzip_e6113ee517064fbabb8a2ff180db24e4952dbe095924fa067d0ba1fd5546e4be" +path = "static-publisher/static-content/file3320.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/network/mtr/index.html_1cae03b4c8350ca7cbf4568f71ce135e0b2df81ee92ccd8627a06c9cfd1b2995" +path = "../build/minified/site/ru/gemstones/network/mtr/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/network/mtr/index.html_br_c91207060efe5ead5e717989813631eb7f8b4a6b4a52e7fadac5aa43846edaab" +path = "static-publisher/static-content/file3321.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/network/mtr/index.html_gzip_9c57b97db25a1c43da12a826874952522102961a98b0d7bf21aefc4ce6a42c98" +path = "static-publisher/static-content/file3321.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/network/nload/index.html_1353f9091501d42a23065c7a4e8447c98a2148212d4db021b31be5f364ec5651" +path = "../build/minified/site/ru/gemstones/network/nload/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/network/nload/index.html_br_fab0efb4c53ddd1021f37b5466478775736a696630de4a1803c3705879d12251" +path = "static-publisher/static-content/file3322.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/network/nload/index.html_gzip_47fe60f227f6fd22f88e3129200cf70cc74b869293836e67a487ad943bbae465" +path = "static-publisher/static-content/file3322.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/network/nmcli/index.html_8fc4ef20fcf566b1e696489db654e687ff2d3c1db74e0e753e8db8f31f5e1369" +path = "../build/minified/site/ru/gemstones/network/nmcli/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/network/nmcli/index.html_br_929de50d5a7bba25480cd1a748cb0cb5b1fb8bc1ee698a51aa2f86667c2eb34a" +path = "static-publisher/static-content/file3323.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/network/nmcli/index.html_gzip_08ee1517e7b87e0de5cd9cc17e6b127030083687aa65c3444758a15bd13ee2d0" +path = "static-publisher/static-content/file3323.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/network/nmtui/index.html_3985dea8b0dadba5883fa7a0a672a1a8f4e8f7bd723a8fd170e354cd8ba38699" +path = "../build/minified/site/ru/gemstones/network/nmtui/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/network/nmtui/index.html_br_d8419e2171ebb30bd10b49049f1a2207eeb78f35ed6ab1a37b71c195635fac79" +path = "static-publisher/static-content/file3324.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/network/nmtui/index.html_gzip_16a02953c5530d3ae4ac99e52d809e3fd1b380690dba6afc787e5e2aae7a3594" +path = "static-publisher/static-content/file3324.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/perl_search_replace/index.html_629c1f2ef199df6e83921fb4a0d0d11ef8422f228cf8dd93c958a7973309a504" +path = "../build/minified/site/ru/gemstones/perl_search_replace/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/perl_search_replace/index.html_br_35c126155ac6c2db2f4cffd5b8c876c9bf4dbf8e0a4fb892a78a15cecbe162b3" +path = "static-publisher/static-content/file3325.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/perl_search_replace/index.html_gzip_e04fbb5ac22a53c07719d427af5d5688274d5457cb31a415aa0f94995c40261f" +path = "static-publisher/static-content/file3325.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/rpaste/index.html_a2c1f18ba58f6065e5bd721aa0f7332eed35aa7d0bbf92eed6bfc7a855c6e05c" +path = "../build/minified/site/ru/gemstones/rpaste/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/rpaste/index.html_br_b6607ab0151519b200fd9d3ee7e85b72e37b742aa388dc4e848ef6e9537f75e1" +path = "static-publisher/static-content/file3326.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/rpaste/index.html_gzip_d37ff40a57c03d734e39d88aaaf6752ce67da7c25692e0e648300c89c2eb9f1c" +path = "static-publisher/static-content/file3326.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/scripts/NoSleep/index.html_1b96164efc75fdce2eb2e246c658b72766708e2889172408ce556b3fd79c55d8" +path = "../build/minified/site/ru/gemstones/scripts/NoSleep/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/scripts/NoSleep/index.html_br_296af05b1f86b310192c639a35681658fa33fc5aa6cffea73eec094552a6dd33" +path = "static-publisher/static-content/file3327.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/scripts/NoSleep/index.html_gzip_c5b73a8bcef0f1a81db6a367a4dd7176448aafc53cf4dc3dacbe302b9bf459d9" +path = "static-publisher/static-content/file3327.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/scripts/bash_stub/index.html_1b5759752eb39068274b4d31cd1e7ff27c80a339af8b881464b1950bf2cf32b3" +path = "../build/minified/site/ru/gemstones/scripts/bash_stub/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/scripts/bash_stub/index.html_br_19f3fb6cada838771cb63df95bffa20a9ece7f76ce1e04caa1fb7eecb537bd11" +path = "static-publisher/static-content/file3328.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/scripts/bash_stub/index.html_gzip_40a042e30ca5349f717bf186a2452273f97bc48932f7da13e14b026a9dc8f0b0" +path = "static-publisher/static-content/file3328.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/sed_search_replace/index.html_462c7b12b616bc5932efa91ebb1f1f78a043f04cf837423f4549ea4effdba4d7" +path = "../build/minified/site/ru/gemstones/sed_search_replace/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/sed_search_replace/index.html_br_1f4887567a032ce4ff5a7561817b0b01d14eba9c7d6a0413b36b7422d43088b5" +path = "static-publisher/static-content/file3329.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/sed_search_replace/index.html_gzip_a0f32684b8f823cf7d589b940f523e4950e4e3ba7ce2f0a2d4477725560b8ef6" +path = "static-publisher/static-content/file3329.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/setup_local_repo/index.html_acd364952a8e5658677dd658ec7802a246b50d4320f5ad7cb50e527d1257d933" +path = "../build/minified/site/ru/gemstones/setup_local_repo/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/setup_local_repo/index.html_br_effaa9fa740b8e6ba53601b46443f4e1732e873ceadc0727534aac40fce53658" +path = "static-publisher/static-content/file3330.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/setup_local_repo/index.html_gzip_5cb7c944b1d78d3265c6e9cc7ffc249ed63e437da1abd312f1b26c082d36913f" +path = "static-publisher/static-content/file3330.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/string_color/index.html_5a1c1520e89081da0084ab84a353dd328c3b84459028adc0b777cb85da0ddefc" +path = "../build/minified/site/ru/gemstones/string_color/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/string_color/index.html_br_7766774f13d63e422a03ab7d59c3510b737d976e7b658e3562a4208d8d9417ef" +path = "static-publisher/static-content/file3331.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/string_color/index.html_gzip_b5143d89838a49f43ca6618aafc061db5d3f178f3b54b087609ccbc1a42898f0" +path = "static-publisher/static-content/file3331.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/systemd_service_for_python_script/index.html_c21780d21788d14727c2cc81806a06e5acaedb1c66804ce8da322b71d79180b8" +path = "../build/minified/site/ru/gemstones/systemd_service_for_python_script/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/systemd_service_for_python_script/index.html_br_56d9eb0289946dd5feace17e432d2afc0336cc4a102a26df60a493bd3161b03a" +path = "static-publisher/static-content/file3332.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/systemd_service_for_python_script/index.html_gzip_c65ce8c80f23a1a2fbe07b437641a517af038e73576823062f384f1471ce684e" +path = "static-publisher/static-content/file3332.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/test_cpu_compat/index.html_1703dd04e57f1aefbb0a10a068079acf5068b677f0c17c474209b5c237ed163d" +path = "../build/minified/site/ru/gemstones/test_cpu_compat/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/test_cpu_compat/index.html_br_edadc77e725b9c3b8e9f90acaa086826c869e9e27459b056f204aac80ab2b4d4" +path = "static-publisher/static-content/file3333.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/test_cpu_compat/index.html_gzip_810f92be4c92bec7eb94287fe9585c1db633c514160ec58888b06ff3d14ada85" +path = "static-publisher/static-content/file3333.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/torsocks/index.html_42172cdeb2bfe8d6580921b1c2edfa795c716556da71d9e3c7f53b2003551a4a" +path = "../build/minified/site/ru/gemstones/torsocks/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/torsocks/index.html_br_544b04ebc7f431fff9dd723e961aba7b56bee5bbecb981bea4e1292011d35d81" +path = "static-publisher/static-content/file3334.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/gemstones/torsocks/index.html_gzip_64b940901796da9fa8b5e9f5b6c77ce8f346c8159f31667185a78bc65a47819c" +path = "static-publisher/static-content/file3334.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/8_6_installation/index.html_18838408135a6d36b5092eb35a990901b7488f80b4d49a06cf93680563c8fdfa" +path = "../build/minified/site/ru/guides/8_6_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/8_6_installation/index.html_br_002f3a6807f7f4f53528eacc03781ab745e78c3d70940dbecc0567485d96cd2c" +path = "static-publisher/static-content/file3335.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/8_6_installation/index.html_gzip_bb732875ac2604c6db77ddc95ec33afcff38a19ca8b0966f175567e5310550f9" +path = "static-publisher/static-content/file3335.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/automation/anacron/index.html_f2d8f4850e8c716f4481e1a542ba986facd00748c8440b5b8aaccb8a666365ad" +path = "../build/minified/site/ru/guides/automation/anacron/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/automation/anacron/index.html_br_c65019b2706ce26339c538dcfa71810b4a153f7d5b665c9fed0d8b9f7e9e0789" +path = "static-publisher/static-content/file3336.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/automation/anacron/index.html_gzip_d0d83d78f7e5f34791efa8d32b7810cc54172d3bd861b925f599ddce221082f8" +path = "static-publisher/static-content/file3336.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/automation/cron_jobs_howto/index.html_b7faae740922dc63620652e1da3dec803d82fca33d1c7b2d5d5fe726b734a194" +path = "../build/minified/site/ru/guides/automation/cron_jobs_howto/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/automation/cron_jobs_howto/index.html_br_65b0f964ce74cdb638741ef2922192a28c3ba1ab2f7a5833768da3e8a62a4ac9" +path = "static-publisher/static-content/file3337.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/automation/cron_jobs_howto/index.html_gzip_568029cd6271d61fe911b21f2d59c062665ae2b93c01eeba77b2353ae0b1b5c7" +path = "static-publisher/static-content/file3337.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/automation/cronie/index.html_b866ce645a46ccd71ba0353c855e5140c8463cdbea28c988c9b93060a3d8cc47" +path = "../build/minified/site/ru/guides/automation/cronie/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/automation/cronie/index.html_br_0020afe1e7e8adc46ed3088621cc7be257cca75290d9fdec34f65a690f0d779c" +path = "static-publisher/static-content/file3338.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/automation/cronie/index.html_gzip_999c8d9c1f7820b52bc11433e788d74e46132952bad2ae92a492a46f1eb16ba0" +path = "static-publisher/static-content/file3338.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/automation/olivetin/index.html_ccb61533aa010b2b309bb0967abe3450674b5e0a47476bbe72889d085e348918" +path = "../build/minified/site/ru/guides/automation/olivetin/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/automation/olivetin/index.html_br_973772d45102167f78c2b0bf423e8dcaf97520bfbe4dd9bded4e444f4b811633" +path = "static-publisher/static-content/file3339.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/automation/olivetin/index.html_gzip_682fec4d78bc0d097f634ec6de96777a2a9241dfd17f6d65812f7dd9082f64e9" +path = "static-publisher/static-content/file3339.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/automation/templates-automation-packer-vsphere/index.html_0084bba21a56f3111412ab48fa9218125f31473eebea6050a3a990be7f607a7e" +path = "../build/minified/site/ru/guides/automation/templates-automation-packer-vsphere/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/automation/templates-automation-packer-vsphere/index.html_br_7bf43dac53679128564d0e1f0c0ba3cd23de8f3a9b0aefbef3dab2b17f4c7ba4" +path = "static-publisher/static-content/file3340.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/automation/templates-automation-packer-vsphere/index.html_gzip_803b20bd22bd35ca1990a26a614cbe524f02294157871ce78cea2c7f9bd23e3c" +path = "static-publisher/static-content/file3340.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/backup/mirroring_lsyncd/index.html_078275e13afdf682418f0c103d9e4b7d0af2c5e58d0550e714604634ae5a2fd9" +path = "../build/minified/site/ru/guides/backup/mirroring_lsyncd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/backup/mirroring_lsyncd/index.html_br_baca0bf030fbd58956f4042908f7feab4625a84d0c408503d207eaf7f76005c2" +path = "static-publisher/static-content/file3341.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/backup/mirroring_lsyncd/index.html_gzip_18529e1f459eca51bd3487cbdda7bd80d0b6a4a6cd64570a77d04833196f7a3b" +path = "static-publisher/static-content/file3341.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/backup/rsnapshot_backup/index.html_d08e368749b68139f6948e829572937fca1ef6463c8c19d3a4c8249117ea0ebb" +path = "../build/minified/site/ru/guides/backup/rsnapshot_backup/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/backup/rsnapshot_backup/index.html_br_3c97d8bcfbc47f4746b46ec0283aa74a82ac36d76013b89d68a6a1bff269c170" +path = "static-publisher/static-content/file3342.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/backup/rsnapshot_backup/index.html_gzip_c2970a4f73c780c079c241a8b26e239b2f49413889ea22497f3b2b03e863f66f" +path = "static-publisher/static-content/file3342.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/backup/rsync_ssh/index.html_27cf2260c8fe41ca277d4f46d66b02e8f034b3cd36cc5e349d04f6287f512aed" +path = "../build/minified/site/ru/guides/backup/rsync_ssh/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/backup/rsync_ssh/index.html_br_0b458aa031b4d118ea17b03362024fb3d749cdd4ae9884ea6853cf60ce8ffc17" +path = "static-publisher/static-content/file3343.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/backup/rsync_ssh/index.html_gzip_f865f59570b5b9a569855dc97759228d2e5d9ce9c262ed5d8e3171cc729c5ee7" +path = "static-publisher/static-content/file3343.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/cms/cloud_server_using_nextcloud/index.html_30fc34d7b648fcdea37979dc39bf40bf54d3ca95563f1067b3f9cde66599aa0a" +path = "../build/minified/site/ru/guides/cms/cloud_server_using_nextcloud/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/cms/cloud_server_using_nextcloud/index.html_br_533f8ac4731c4aa577d2806392bfee74c1121f02ef2c5065114ca3816ed67108" +path = "static-publisher/static-content/file3344.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/cms/cloud_server_using_nextcloud/index.html_gzip_89621d7605a53404efa051bd9ab49c075dfacebb636e5112ef6f350e782ba2ca" +path = "static-publisher/static-content/file3344.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/cms/dokuwiki_server/index.html_9b5a5a7b4f074be112a37fb5b1e6edbfa160e76aa97f74bbdbd4e0038558e364" +path = "../build/minified/site/ru/guides/cms/dokuwiki_server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/cms/dokuwiki_server/index.html_br_737444140f27482a49b96252fb8e3ca7eae3acac189a30b8e9e0b806f19d7ecd" +path = "static-publisher/static-content/file3345.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/cms/dokuwiki_server/index.html_gzip_346cdd0683013f6d645c9bae37e40521a577d95b484bcb1199471722cd4b2ff7" +path = "static-publisher/static-content/file3345.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/communications/asterisk_installation/index.html_f2fb2e01efd0726c9e62c183b5355afe9015fd8e833aae21cacaebffd51a5e6e" +path = "../build/minified/site/ru/guides/communications/asterisk_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/communications/asterisk_installation/index.html_br_52e2ab4cfe963a79695a510afe5bbd0ba728212efaae620445322259f502e1cb" +path = "static-publisher/static-content/file3346.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/communications/asterisk_installation/index.html_gzip_d4244bd6f348403749e9290fff28b5f24d02de1e5d6b6cd987b58a42f0f265a5" +path = "static-publisher/static-content/file3346.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/containers/lxd_web_servers/index.html_d7469a30adaa9d3813dabb0b2396035b63c2dfd096c78367b97545b30426c33c" +path = "../build/minified/site/ru/guides/containers/lxd_web_servers/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/containers/lxd_web_servers/index.html_br_f372fc33d7990a92b67097c09bfcbe289b5a86ba9ffe849a85a9c5cddc7b3669" +path = "static-publisher/static-content/file3347.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/containers/lxd_web_servers/index.html_gzip_3b1879a3214d2215cb5c7587d24da4dcc43eec59e7ea4c336d686d96b2751c53" +path = "static-publisher/static-content/file3347.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/containers/podman-nextcloud/index.html_3885e84d0a357129fa0d4a813ac3711d15b0d764f0e566c82b9a5a198e075c0e" +path = "../build/minified/site/ru/guides/containers/podman-nextcloud/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/containers/podman-nextcloud/index.html_br_27549c60b39beb7344b32d0db489fd990bfdfa55c9dde8f46a2b58af94ea0035" +path = "static-publisher/static-content/file3348.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/containers/podman-nextcloud/index.html_gzip_eee6cb4bdd350801f5b779354a6d9260a08494cc7bde1e9951b1e2c611bbbeec" +path = "static-publisher/static-content/file3348.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/containers/rancher_and_kubernetes/index.html_12e4440ce5c97a02644a1b8b24022b13311b18dc92fd8e4d33da9d0ee7dcbf5a" +path = "../build/minified/site/ru/guides/containers/rancher_and_kubernetes/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/containers/rancher_and_kubernetes/index.html_br_5ad9316337e52d93a0337e7cb101f0faf26dbf33d2af1658f2acbfee46597b56" +path = "static-publisher/static-content/file3349.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/containers/rancher_and_kubernetes/index.html_gzip_5cdc1c01762424c26a46fdb95efc22d1d8fde612646d0914ccfdccfa6248151f" +path = "static-publisher/static-content/file3349.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/contribute/beginners/index.html_898e6acd79f18f8f03e3f6d5ccc71fe13ec2f158134911582a2cf46714293a98" +path = "../build/minified/site/ru/guides/contribute/beginners/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/contribute/beginners/index.html_br_9ac51081529c72744a7128bd6ae2ad7734c7589ceadeffc04c53960be6160f56" +path = "static-publisher/static-content/file3350.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/contribute/beginners/index.html_gzip_6d8e7ef2884f2a270401faaadd68a8d52d4a3bb6e60feeb47d62188a7ac4d844" +path = "static-publisher/static-content/file3350.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/contribute/createnew/index.html_c481dbbb182435d8453b4ffcf3d22309c2e028c0460f60109354d43580d745c3" +path = "../build/minified/site/ru/guides/contribute/createnew/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/contribute/createnew/index.html_br_c49dcce590812aea46e426d8507d9f6590ca41edac242fdb320d020d495757ef" +path = "static-publisher/static-content/file3351.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/contribute/createnew/index.html_gzip_c90e6a2abf5942d2378b024edb536494e0dd9db7844fcc8e36dafd707a3f34e9" +path = "static-publisher/static-content/file3351.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/contribute/index.html_d1c4bbab3ec7ed1f5c2f5affa2897c0c7f853b0056b6d3bea434a2e028b5f6fb" +path = "../build/minified/site/ru/guides/contribute/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/contribute/index.html_br_d4c391efff66c00e6a99af0a2aafb8fb7049d7612d2053bd865f31d639a75aac" +path = "static-publisher/static-content/file3352.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/contribute/index.html_gzip_85e9862e05d57b736f896676ec786fe97c2f0ff1ec85efc14980cacedba26a7c" +path = "static-publisher/static-content/file3352.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/contribute/localdocs/index.html_1b7bb2948b2356fae827e2fbaa83ace76ed4f1b8c307ab05676b6e14341bc9c9" +path = "../build/minified/site/ru/guides/contribute/localdocs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/contribute/localdocs/index.html_br_fa1c589724bd4298cb94c8b71a9a705bfb7c21aa8ea03f129288e699f4d6c6e3" +path = "static-publisher/static-content/file3353.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/contribute/localdocs/index.html_gzip_02cdb9db4b382ce468973af4435b711245849f9c2f93d9e5144c83c409108f20" +path = "static-publisher/static-content/file3353.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/contribute/localdocs/local_docs/index.html_03de6d08158bc65b8c5b6e3be7e6efdb7ad147a632926301e73956fe653e42cb" +path = "../build/minified/site/ru/guides/contribute/localdocs/local_docs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/contribute/localdocs/local_docs/index.html_br_ad49d0d141686a601cc3716ce8eb55e6ca51d1f7b6bd74dd659bfa4e95b27b8e" +path = "static-publisher/static-content/file3354.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/contribute/localdocs/local_docs/index.html_gzip_00183b23acbc5010c0ee7306108a3d1709f63f1208e0372889d8302ae514fd97" +path = "static-publisher/static-content/file3354.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/contribute/localdocs/mkdocs_lsyncd/index.html_9fd423bc7f4ef0bfa598fc9b37a7382a289e2de157992f146c8cbcef5e31f15d" +path = "../build/minified/site/ru/guides/contribute/localdocs/mkdocs_lsyncd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/contribute/localdocs/mkdocs_lsyncd/index.html_br_8418f03b98874f7132495acde99c1f2907bdaa81185c8cb6b851f5801e58e16e" +path = "static-publisher/static-content/file3355.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/contribute/localdocs/mkdocs_lsyncd/index.html_gzip_2133fd63fb57d83417226d7e483c4f5223cae69e92045781856e4a20e3bbffb8" +path = "static-publisher/static-content/file3355.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/contribute/localdocs/mkdocs_venv/index.html_cae52237c5bcead67521e5701fb325a0afc5d4170b390dfcc2d9ab7767fa3035" +path = "../build/minified/site/ru/guides/contribute/localdocs/mkdocs_venv/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/contribute/localdocs/mkdocs_venv/index.html_br_a3692a047049e7504a87e1af996e8ba16d1d6a8cde738de3b8d68ffe59c389cd" +path = "static-publisher/static-content/file3356.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/contribute/localdocs/mkdocs_venv/index.html_gzip_30099b32f00c5d0d24113e8143933e42a9e85a21d0235b7a5222f6a18b28ca85" +path = "static-publisher/static-content/file3356.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/contribute/localdocs/rockydocs_web_dev/index.html_3fc978109cbb5c0d3c73c8d9727dd034317ba88a2cadc5050a9fc27fefa0960b" +path = "../build/minified/site/ru/guides/contribute/localdocs/rockydocs_web_dev/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/contribute/localdocs/rockydocs_web_dev/index.html_br_ca782d1566d37555da192be1f104d15c8adb58b67a70df1d89c73ef56154f9d2" +path = "static-publisher/static-content/file3357.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/contribute/localdocs/rockydocs_web_dev/index.html_gzip_ffcd10ede75e500ce802f96fc382e88f8f34316e4a440a253ad67873f7b4ac4d" +path = "static-publisher/static-content/file3357.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/contribute/localdocs/rockydocs_webdev_v2/index.html_5920e4e60e92ca9fae36120714c1e26c917da9eb1e7a88b94e32788f0cb41326" +path = "../build/minified/site/ru/guides/contribute/localdocs/rockydocs_webdev_v2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/contribute/localdocs/rockydocs_webdev_v2/index.html_br_5dc5d7d0e3f6a30634a429bf75d52be95333b7ef588751130338eaea52c613cd" +path = "static-publisher/static-content/file3358.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/contribute/localdocs/rockydocs_webdev_v2/index.html_gzip_b021542a0d2bccdc6b0fc3295cef2165a83c5f2bc772959d9807b44e8caef08f" +path = "static-publisher/static-content/file3358.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/contribute/navigation/index.html_95b67707e68f62e3000e6836c632d2c375df78e6fcdc0f3fcedb669471ece763" +path = "../build/minified/site/ru/guides/contribute/navigation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/contribute/navigation/index.html_br_a04394410dd2a72b305e444e15b371d26edcecde58db7f732ffd1e4e714dfe18" +path = "static-publisher/static-content/file3359.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/contribute/navigation/index.html_gzip_6e54ea725c0a5657a52a31bc155224af945065cb8ea570bd1fb095211c3c8481" +path = "static-publisher/static-content/file3359.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/contribute/rockydocs_formatting/index.html_501254d33e94a84c50f83b3ed9e25c9cbc60ea45e8b3bf10231e555cf7d5a463" +path = "../build/minified/site/ru/guides/contribute/rockydocs_formatting/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/contribute/rockydocs_formatting/index.html_br_867ff1ea8f96e66cc7c98fd71b8cf04b6b3562a7feba081e51ff8fb55b19f07b" +path = "static-publisher/static-content/file3360.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/contribute/rockydocs_formatting/index.html_gzip_f0d689683cce0d0906531d5a2e9e071bb38299784601890cbf7b6fd3b76457f7" +path = "static-publisher/static-content/file3360.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/contribute/style_guide/index.html_22996c073b6cce96eb27748ffcb3c15664acc31c117acc007f1bd910dc5b9b3c" +path = "../build/minified/site/ru/guides/contribute/style_guide/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/contribute/style_guide/index.html_br_d322a4847e7a3c44f9634d9a4999820f9fe1e38ea05d345d5b3baf27d42f9201" +path = "static-publisher/static-content/file3361.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/contribute/style_guide/index.html_gzip_a5d1f472fd8393779287d8d07d53ad1f41a3db9626383681d4545da45797677a" +path = "static-publisher/static-content/file3361.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/custom-linux-kernel/index.html_76b3a7dc1cafc8f756de7a7aea73aa480a38a4c81fec31049ca23bf180582a6f" +path = "../build/minified/site/ru/guides/custom-linux-kernel/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/custom-linux-kernel/index.html_br_7e1508ec05915c40f09ae4d7b3a519ba709ff1e2195f23e7187646dfb8e51821" +path = "static-publisher/static-content/file3362.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/custom-linux-kernel/index.html_gzip_393dd8074c8920d217ec824cf5101ae677899d6f7adf4cbe10426c2ba6caad4e" +path = "static-publisher/static-content/file3362.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/database/database_mariadb-server/index.html_19124f8b0a9999cbde3f5fae042f443aeda46f85d7a6d771d43c51da3dcb0190" +path = "../build/minified/site/ru/guides/database/database_mariadb-server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/database/database_mariadb-server/index.html_br_7f9c7762bf05c9afa1aaed22c30162fdececcbb941d524a1618b10b7a52e80e9" +path = "static-publisher/static-content/file3363.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/database/database_mariadb-server/index.html_gzip_2d6dad057d4e82b67d7e839274340e6cbb0a4daa8044aecade755a4b853cd551" +path = "static-publisher/static-content/file3363.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/desktop/kde_installation/index.html_15c9f8ca8a0aa0589678a2bff36603dd0cc4383aaf797b65b04b7121c0af95b2" +path = "../build/minified/site/ru/guides/desktop/kde_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/desktop/kde_installation/index.html_br_f976e1916e03f9ca41d58c6f05dddda3e7194bef4b1d030117b1c2c27ebd9a4b" +path = "static-publisher/static-content/file3364.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/desktop/kde_installation/index.html_gzip_8f0854b4fa79259def7f380f7ef02682df000f801868a88187a58bf6441bc665" +path = "static-publisher/static-content/file3364.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/desktop/mate_installation/index.html_2e89d9c9c0f0b2323c7a457fcfe3f33ffc2a3778366f9b02403b3dec7a8de3d5" +path = "../build/minified/site/ru/guides/desktop/mate_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/desktop/mate_installation/index.html_br_e1d7ee493d77cd6009591ef57bca8a2c2f904727226623b30608088f4ffb4ca3" +path = "static-publisher/static-content/file3365.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/desktop/mate_installation/index.html_gzip_0dd103b4fe206a258174155773884f93835aa4e1b3637b08b78dc25ea02968a3" +path = "static-publisher/static-content/file3365.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/desktop/xfce_installation/index.html_5b177124d5e81cf90dc60e8669be28129d699ee8a135ccc18cb8ae6233ee492f" +path = "../build/minified/site/ru/guides/desktop/xfce_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/desktop/xfce_installation/index.html_br_925f2a45ca2defcde7b0c179ea0a277fd25d16ff830d9c3bd57a3dde3abf85ca" +path = "static-publisher/static-content/file3366.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/desktop/xfce_installation/index.html_gzip_18fcb9af07e4e485deb22fe18a83a4c93e1b47a55e4d7d46678fe4dfa01ce4c0" +path = "static-publisher/static-content/file3366.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/dns/private_dns_server_using_bind/index.html_a2c1dbea91dd738fd0d9b2ffc903366f23871c043678ba1a59a2498bedc1d144" +path = "../build/minified/site/ru/guides/dns/private_dns_server_using_bind/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/dns/private_dns_server_using_bind/index.html_br_7e49f7c7accc6a952ef5f8005854a319f34bb84b9f815d64b87aab5fe3361bf8" +path = "static-publisher/static-content/file3367.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/dns/private_dns_server_using_bind/index.html_gzip_fd7c86204bcb56c2ae7a7d526096a4291de373f59e3cab0c193056cb7adc897c" +path = "static-publisher/static-content/file3367.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/editors/micro/index.html_126225eee0dc73aa19581bef4be510fdde423b58df295ac28187197582ae1cad" +path = "../build/minified/site/ru/guides/editors/micro/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/editors/micro/index.html_br_08f7d2eafcd6b2100878d1f883cc2e1657234c6353fa64a10bf20607f1985325" +path = "static-publisher/static-content/file3368.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/editors/micro/index.html_gzip_074e3273b94fcabb97dc0a4b1aa5c35a7e61996f3e21ef1a0880f34e52f85f3e" +path = "static-publisher/static-content/file3368.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/email/01-email-system/index.html_89f39010c89ea6ba5c7de73c91064a5afd12d902cd2b02151e0f41ad80863a0c" +path = "../build/minified/site/ru/guides/email/01-email-system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/email/01-email-system/index.html_br_e4bfc4c42435b44960fd195b59b5c84215653a5d642b45e64857d92c1c5f07b2" +path = "static-publisher/static-content/file3369.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/email/01-email-system/index.html_gzip_a5558f72b62b9699f60e1ee20f8413b98a7051f99708c3ce1f819405f4d78207" +path = "static-publisher/static-content/file3369.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/email/02-basic-email-system/index.html_293703f195bedaec9d29c66dd7da6be42abf4036ee10762ffc3efec6c17d056c" +path = "../build/minified/site/ru/guides/email/02-basic-email-system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/email/02-basic-email-system/index.html_br_f20159ef800f16f53a858c5dadf53bc46d4b374d8e9204e187b7b2041dd77d54" +path = "static-publisher/static-content/file3370.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/email/02-basic-email-system/index.html_gzip_d1adaabf0fbee3b8c2b515f384683f99d8b9e0d15eea3d3f7abef757942bf6e0" +path = "static-publisher/static-content/file3370.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/email/postfix_reporting/index.html_a9a0447b223298530836764f2ac2e72f6db418dd940a47e461caf7a35a85d0de" +path = "../build/minified/site/ru/guides/email/postfix_reporting/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/email/postfix_reporting/index.html_br_24721d9b74463038ab51ab982d1777226d10622efcb14bbcf45ee7f3f279421b" +path = "static-publisher/static-content/file3371.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/email/postfix_reporting/index.html_gzip_6327902b05a475e0491b5c7783c353cab4d6ef090b12fc62d96645cbddd8776d" +path = "static-publisher/static-content/file3371.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/file_sharing/glusterfs/index.html_1e27f5473b9753ba8d8d8425f5b2c4f8149db95bdb0586a82aeba3aadafafec2" +path = "../build/minified/site/ru/guides/file_sharing/glusterfs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/file_sharing/glusterfs/index.html_br_923e0893df59256990468bfbd0424c9ae9bb3d4307b8092b6cd1b78ce827c3dc" +path = "static-publisher/static-content/file3372.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/file_sharing/glusterfs/index.html_gzip_cf18b6d368a6a5148030bc71ffa0e2957e855eb963904bed53880a0555d0bc26" +path = "static-publisher/static-content/file3372.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/file_sharing/nfsserver/index.html_7a8fddc7569a02e2267765e24b96e03c03cbf912cf71ffa48bfb1cdb748baf1d" +path = "../build/minified/site/ru/guides/file_sharing/nfsserver/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/file_sharing/nfsserver/index.html_br_51da855d68a2e4162f0c1b02cfbc4d39402220a37757f74516f366e83f4c38b7" +path = "static-publisher/static-content/file3373.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/file_sharing/nfsserver/index.html_gzip_06cb76e0fab5bbaae780033ba2c0aaaf84abd1ebe264bc90538ff6e96bc6f7cd" +path = "static-publisher/static-content/file3373.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/file_sharing/secure_ftp_server_vsftpd/index.html_28c88e81b2ff107c520ab144d5fbe7516487a357fb6c97798b9e13b070de96ad" +path = "../build/minified/site/ru/guides/file_sharing/secure_ftp_server_vsftpd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/file_sharing/secure_ftp_server_vsftpd/index.html_br_e7b97c38284da8d4df527b313cd28342b5411c338104f618116218988645342c" +path = "static-publisher/static-content/file3374.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/file_sharing/secure_ftp_server_vsftpd/index.html_gzip_4fdded6652ca2395e720fbc7fdbea41bfd4e3a3bb519e808a48a2cabe53a5fa5" +path = "static-publisher/static-content/file3374.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/file_sharing/sftp/index.html_385e1f6838f4de9c66bb88c1fef2239ef9a18759531cba42c2224cd2a8919c44" +path = "../build/minified/site/ru/guides/file_sharing/sftp/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/file_sharing/sftp/index.html_br_435f57dc0dafcd5bc389007a927cbadef3080e95a5706dc57979ca96cd5b1949" +path = "static-publisher/static-content/file3375.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/file_sharing/sftp/index.html_gzip_89fdbddbc3f27ccbaefbda1e413e29a25861df194df3c79bbf22a4ca44e8faee" +path = "static-publisher/static-content/file3375.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/index.html_68ecb97e0c447abb7b869c39662521076a47d3bdd80d885c4351499feba7adde" +path = "../build/minified/site/ru/guides/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/index.html_br_66a88523ed1d9399fa87a9a7ed2ca2340a84fd0754806cd5a1e47211475edf44" +path = "static-publisher/static-content/file3376.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/index.html_gzip_c7bcf702e2ad8aae791d65bf597679b11c101774c00a2cfe31fe669fda39c6ee" +path = "static-publisher/static-content/file3376.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/installation/index.html_2be307bbc30bc975331efaae36f879255f3755ba6d5b5b0ef7d806b52e7c4fd4" +path = "../build/minified/site/ru/guides/installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/installation/index.html_br_7df8c717e93a6689564c04cb119d3d7c64a20fb0bc8b51fe81188c06f68debd1" +path = "static-publisher/static-content/file3377.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/installation/index.html_gzip_808533f1823c02517199eb9fd1b2c7ea013bcf9f2c2a27c428b7873b563a6343" +path = "static-publisher/static-content/file3377.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/interoperability/import_rocky_to_wsl/index.html_86e542e8f36cd452a2d426335efc66a86ff912beb4f308ebd77bf30c0b60d46f" +path = "../build/minified/site/ru/guides/interoperability/import_rocky_to_wsl/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/interoperability/import_rocky_to_wsl/index.html_br_8f30fa7c817c161348fffead85d05d1c6c3e67845fa0155966eba8679c98ff3b" +path = "static-publisher/static-content/file3378.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/interoperability/import_rocky_to_wsl/index.html_gzip_49cb6cb19931722925ae77815d906cda167ae05efffd4ffc0bf4d91bb271b5ac" +path = "static-publisher/static-content/file3378.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/migrate2rocky/index.html_57acba42a2d65668ed527a38123527e95e989f9cb02e3ea4acb639f63c347a3f" +path = "../build/minified/site/ru/guides/migrate2rocky/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/migrate2rocky/index.html_br_ff20370d09fb36188b3765124de5c5f351849bbf6a03f2e58ee6293153231453" +path = "static-publisher/static-content/file3379.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/migrate2rocky/index.html_gzip_81e0ae8039131f3ee82ef1fa8be2b6b76692ef934890c79bcfcb7ea6d8752029" +path = "static-publisher/static-content/file3379.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/mirror_management/add_mirror_manager/index.html_8310ce7dbdb1ff8484e2e5b43eec06a5a2c725f4822fa90db94629a1b2dafd23" +path = "../build/minified/site/ru/guides/mirror_management/add_mirror_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/mirror_management/add_mirror_manager/index.html_br_94f1f11a49b41e3228714cc9ad42f39abdd443fe17dc23b3ba948a96f56952a0" +path = "static-publisher/static-content/file3380.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/mirror_management/add_mirror_manager/index.html_gzip_513af690682378c594336f40871ac023a18f87c0cb5e6948b1655f6594d0af8c" +path = "static-publisher/static-content/file3380.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/network/basic_network_configuration/index.html_8bbbe18e855795108c920f446cec7fc2a93d2753b4e88bb12ebd02f8c1dbcd46" +path = "../build/minified/site/ru/guides/network/basic_network_configuration/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/network/basic_network_configuration/index.html_br_be5ac0ddb515ef0ef23233f66eca3d7df9eaecbfe94221a7c80b9c180cc37ab2" +path = "static-publisher/static-content/file3381.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/network/basic_network_configuration/index.html_gzip_1481abc092ad9211c12ae27aba085859bd6a06b90212c0cc80ac982fb82c7bc2" +path = "static-publisher/static-content/file3381.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/network/librenms_monitoring_server/index.html_f532855937ab4a4e46636054cfd217f19fd0b4200e02fbad2ab03e3c92d858a6" +path = "../build/minified/site/ru/guides/network/librenms_monitoring_server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/network/librenms_monitoring_server/index.html_br_1cbd15697efb9e1ebd399d94a210638f625dee03016168b29cbb5c1fbdd3fa37" +path = "static-publisher/static-content/file3382.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/network/librenms_monitoring_server/index.html_gzip_a5f7c0d0ace03277754c5df6888a4d856f564053c6a479831356d1805940aa60" +path = "static-publisher/static-content/file3382.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/package_management/dnf_package_manager/index.html_e3d115daa28922874e77dc5f7ad13a735da019760d9009a0e9f6f1fbabf1536f" +path = "../build/minified/site/ru/guides/package_management/dnf_package_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/package_management/dnf_package_manager/index.html_br_abf3e671325af8c9908ab22ccdfe072c40a1e6ad0e81e74011427d7e7a74bc73" +path = "static-publisher/static-content/file3383.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/package_management/dnf_package_manager/index.html_gzip_a58bc5398160e0c8d525f1f10cb71e5ceae1b326c083816e33cab7f8be2cc7ac" +path = "static-publisher/static-content/file3383.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/package_management/index.html_a3f9d715531be50fd96bf7de58ea9905f04b551197544f458645c02a135d7b24" +path = "../build/minified/site/ru/guides/package_management/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/package_management/index.html_br_d1ad2c167e0d8052ab698becad0daf071ba265382df1a225ab9bc9ad64969053" +path = "static-publisher/static-content/file3384.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/package_management/index.html_gzip_b9c3d7ca1acce49ab0ddc7dfc38b819e07f158512f5c41a7234500114e09cb6b" +path = "static-publisher/static-content/file3384.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/package_management/package_build_troubleshooting/index.html_90f22eb390410af8c79ab9020d38deafc000d93e8f511b1cbc7106219d62b851" +path = "../build/minified/site/ru/guides/package_management/package_build_troubleshooting/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/package_management/package_build_troubleshooting/index.html_br_88a9a546139006a6252e7a65f8700e90c2ab49c77202bfb387ec1288d5e0f9ba" +path = "static-publisher/static-content/file3385.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/package_management/package_build_troubleshooting/index.html_gzip_e0f61c20b0fed89dc3d09c26d839a0030928b3a3c02d7965a1400015ef3154e3" +path = "static-publisher/static-content/file3385.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/package_management/package_debranding/index.html_e6e99a7aea4b45e4993d5dfee063a5f37f920647915e3904e516531fee09a700" +path = "../build/minified/site/ru/guides/package_management/package_debranding/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/package_management/package_debranding/index.html_br_29798d217dd4ee7720fc5960fccb8c8e0d29045a074bd26ad3fb3d50cfee4d26" +path = "static-publisher/static-content/file3386.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/package_management/package_debranding/index.html_gzip_c2fad23a5b6f017b74ab60e0571e49cb23894f6664a03540958a8821dffc306f" +path = "static-publisher/static-content/file3386.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/package_management/package_dev_start/index.html_4e9f39479ea273fca955a7dd35ca063e7dd4f85e5a2a39f4d7ad543b7bc559c7" +path = "../build/minified/site/ru/guides/package_management/package_dev_start/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/package_management/package_dev_start/index.html_br_9cc25bb531bafc3ccd40c2c62bddce017bb6e509dd11b541950ab580dd118acb" +path = "static-publisher/static-content/file3387.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/package_management/package_dev_start/index.html_gzip_1ed9fb10ce3a1a466d19b0ceb0dedd5420aa326601265e86ee4e5d046e04c15f" +path = "static-publisher/static-content/file3387.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/package_management/package_signing/index.html_a396a4f0a81343802eb48797034c8f626ef00a069bd6650f3b60be355f97c833" +path = "../build/minified/site/ru/guides/package_management/package_signing/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/package_management/package_signing/index.html_br_84cd5b7b4cfd441d281eba74c095d4c08930e93a1bdea898a88e8e0040b03332" +path = "static-publisher/static-content/file3388.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/package_management/package_signing/index.html_gzip_00306c8d5bc84956d247b48066db35f4fce70466685a285bf68b75236f7e6535" +path = "static-publisher/static-content/file3388.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/proxies/haproxy_apache_lxd/index.html_aef82549181a61e5c6746c87d11ba71d816c83314df75e69a18c1124143929ba" +path = "../build/minified/site/ru/guides/proxies/haproxy_apache_lxd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/proxies/haproxy_apache_lxd/index.html_br_2fb27c885e8c27166dc344dfe4dc144f7ef9e0ea689787253bf25b7455c41486" +path = "static-publisher/static-content/file3389.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/proxies/haproxy_apache_lxd/index.html_gzip_448d15a0514e69a26125fdf091a8ec44a9aa560e884922beee47d525e3ed2902" +path = "static-publisher/static-content/file3389.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/proxies/pound/index.html_2b229a51da3d596db2b20edbbae8752759ccd1594c66d259d9b9bccff71f4e83" +path = "../build/minified/site/ru/guides/proxies/pound/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/proxies/pound/index.html_br_bc9b39a4e117dfc0d22d0e739dee97cc89b2755fb83eb4a54bc8f4d5bd442cf5" +path = "static-publisher/static-content/file3390.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/proxies/pound/index.html_gzip_ef13d7410ddbe045e81168318eba69a128ab4b89143f3bd14a20afadbbf37272" +path = "static-publisher/static-content/file3390.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/proxies/tor_relay/index.html_0d8bd132676beb320fe3f282ea29ab4060c72db8891d553c639741571b245f3c" +path = "../build/minified/site/ru/guides/proxies/tor_relay/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/proxies/tor_relay/index.html_br_6e5a7ad9e1b6b62ec37ade54e0b133c77d38579975ed03f820d85051d258ec03" +path = "static-publisher/static-content/file3391.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/proxies/tor_relay/index.html_gzip_1a091e9b9cf8c646c9a1d7cfc81e5640b576a4de6699656fda73fe1d2a3cdfbd" +path = "static-publisher/static-content/file3391.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/security/authentication/active_directory_authentication/index.html_73b53add02d6e8fb1d17bcbbf33ed3adff07cd4333cd279e8e9964c909004275" +path = "../build/minified/site/ru/guides/security/authentication/active_directory_authentication/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/security/authentication/active_directory_authentication/index.html_br_113d5f4c55260eab2b297705df8e85428d12c6391bf520ea2977c4f2127ff18b" +path = "static-publisher/static-content/file3392.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/security/authentication/active_directory_authentication/index.html_gzip_91ce32b6e2f4049cffd0062ec0786f0779ec68eaecda7049bf097f29d43264f0" +path = "static-publisher/static-content/file3392.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/security/dnf_automatic/index.html_b329b8a9744819981f7a4649cc39af51f33beb033a2fa309f8c5f9130297f756" +path = "../build/minified/site/ru/guides/security/dnf_automatic/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/security/dnf_automatic/index.html_br_d1815da9096c0e660460de1bdaf81648995e27fc75f2153efff0b3d99372b10b" +path = "static-publisher/static-content/file3393.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/security/dnf_automatic/index.html_gzip_a9e9c88582738f7479a4ad51ab204f97aff266e2b55ebbe4a9b9f0a241137678" +path = "static-publisher/static-content/file3393.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/security/enabling_iptables_firewall/index.html_904476d3a168137eadff4ba57435adbafd6f86b0658bec8bca0de9a56bb5b1f9" +path = "../build/minified/site/ru/guides/security/enabling_iptables_firewall/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/security/enabling_iptables_firewall/index.html_br_250352c5962793009362a42b742ffe804317cee3cc8ba63df29889ffdcec3b73" +path = "static-publisher/static-content/file3394.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/security/enabling_iptables_firewall/index.html_gzip_0db44d43c39857207db8d0b1b25e586705b25c094501d17bac436fec5a4f2805" +path = "static-publisher/static-content/file3394.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/security/firewalld/index.html_91e21144da0f78412bcbdb7165eebf0cd9085c2493a2f7151e783567b278a3cb" +path = "../build/minified/site/ru/guides/security/firewalld/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/security/firewalld/index.html_br_c5c955f47c7eb6dba654abd39b2e7f235f2d25c48b5911ef39ff6c4855fbf46a" +path = "static-publisher/static-content/file3395.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/security/firewalld/index.html_gzip_e763f6802fc7aaa0bdf086fce0538049906c5735148845ff8376ba9234259164" +path = "static-publisher/static-content/file3395.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/security/firewalld-beginners/index.html_7c93cdf5454c1d063d74b5da09c29e8392f5d75ce0d8de388930bf485e544fbc" +path = "../build/minified/site/ru/guides/security/firewalld-beginners/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/security/firewalld-beginners/index.html_br_983ee5381c7169b417654e24f7f559087607288a745311cfef6330829570570c" +path = "static-publisher/static-content/file3396.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/security/firewalld-beginners/index.html_gzip_571a12742eb2a781bc6b2c99bd85b5db7a577a36c4b9d0da2e0486fd0c830159" +path = "static-publisher/static-content/file3396.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/security/generating_ssl_keys_lets_encrypt/index.html_1662558c3c8996c0e1644763bca4771183df2b6fe96bab3c337d92e806e3abea" +path = "../build/minified/site/ru/guides/security/generating_ssl_keys_lets_encrypt/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/security/generating_ssl_keys_lets_encrypt/index.html_br_3cfaf2c78656e5ac38b7c229054583b9deda14065ab3beb213c98358f6754348" +path = "static-publisher/static-content/file3397.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/security/generating_ssl_keys_lets_encrypt/index.html_gzip_63e84ee07861ac461b30644a5348d6588c9cde592231954fdc9d7b1429866b47" +path = "static-publisher/static-content/file3397.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/security/learning_selinux/index.html_6f32555ad6f1986f38d14690b0a1bc38cd3db5eefdf326f18719a3b51b86baeb" +path = "../build/minified/site/ru/guides/security/learning_selinux/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/security/learning_selinux/index.html_br_695f7df711d65a88134fb84ca1c78c53bb23f20ebe35827218ef4ca5eafb31df" +path = "static-publisher/static-content/file3398.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/security/learning_selinux/index.html_gzip_2726960209c3641525460ba67bca098723727a1463b5d7cfa9c76f217d30abf5" +path = "static-publisher/static-content/file3398.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/security/pam/index.html_687abc3e0759dcc9dae20d21025a3539575036bee818390086d7d523fcffd82a" +path = "../build/minified/site/ru/guides/security/pam/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/security/pam/index.html_br_762b276af59ea5bf9d8a9eee9247678f55d10341bc281eb4b3d726c655625635" +path = "static-publisher/static-content/file3399.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/security/pam/index.html_gzip_cd75bfebb38ac3bb776372d7ca625153bd8d507d01ed594db484e9c330451f3f" +path = "static-publisher/static-content/file3399.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/security/ssh_public_private_keys/index.html_bfcc5b5e93b53a1fa0aac7d50cd009437a371f9bde2f6a63031dd1333c721aed" +path = "../build/minified/site/ru/guides/security/ssh_public_private_keys/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/security/ssh_public_private_keys/index.html_br_38be81ef63bb6c9d1923fa6a19f5e66f7f5a7e5f728bd835938643877ee27548" +path = "static-publisher/static-content/file3400.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/security/ssh_public_private_keys/index.html_gzip_aa797810db9fbd5d320de0f2be4cbf77b62d2bb9a5dd6b3b133dfc76b4dba935" +path = "static-publisher/static-content/file3400.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/security/ssl_keys_https/index.html_43139d6b01afc8d95b0e8e8fb704ac69ae951be7bf9331cb9dc98980daaf7d0b" +path = "../build/minified/site/ru/guides/security/ssl_keys_https/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/security/ssl_keys_https/index.html_br_f574fdb84dd674c2bb0cfa1db94e69f9bb6b9d38b7cd85928954e6835723dbdb" +path = "static-publisher/static-content/file3401.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/security/ssl_keys_https/index.html_gzip_cf9e076e5584284debfcb265dc37366bc45b1f0f41700d0bdc45085f27b27815" +path = "static-publisher/static-content/file3401.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/security/tailscale_vpn/index.html_fb60964b4430a7c7c09361dd8e2bf1a1d2e7540a6b382e5f42163351863ea1b4" +path = "../build/minified/site/ru/guides/security/tailscale_vpn/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/security/tailscale_vpn/index.html_br_f45672d3e5bbdb9950477d4692d911b1272ce6dcbdfcb19c030f462e2204470e" +path = "static-publisher/static-content/file3402.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/security/tailscale_vpn/index.html_gzip_d71296a4d3d7a17ab123c4c428ac664fa889bd5ea44d5453867860bfb30d1403" +path = "static-publisher/static-content/file3402.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/virtualization/cockpit-machines/index.html_c3358524786ec851d626167d6de286461681b1d4166c690dc31c0ad142af815e" +path = "../build/minified/site/ru/guides/virtualization/cockpit-machines/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/virtualization/cockpit-machines/index.html_br_30e348ab0dc093320bc6d19a55318dae3db6d730abf7e24aa40a1e30bf18dc04" +path = "static-publisher/static-content/file3403.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/virtualization/cockpit-machines/index.html_gzip_f1b6781080e689b22370362fe87792b3bfa244170ee32710bd14b2e40d2027ba" +path = "static-publisher/static-content/file3403.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/virtualization/vbox-rocky/index.html_d2dc609ecc911a9f2b3524181b76d2c561c250a2c0c953374720a94e36e433e8" +path = "../build/minified/site/ru/guides/virtualization/vbox-rocky/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/virtualization/vbox-rocky/index.html_br_44657978737660eb72201cc6b46ac5b39e309ac68ca2b59753e74b8943e47d47" +path = "static-publisher/static-content/file3404.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/virtualization/vbox-rocky/index.html_gzip_858c0707980e560e180f34a934b31f460aa853910dac2be080ce7db4d0b14bce" +path = "static-publisher/static-content/file3404.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/virtualization/vmware_tools/index.html_572accea805a743a4b804ea25f04c4060051cd0922a1d8bb1f8c85c732576285" +path = "../build/minified/site/ru/guides/virtualization/vmware_tools/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/virtualization/vmware_tools/index.html_br_80f4d4d20c7bfdbcdc989f4246e28ddcb9acacf8a55923ff62db70deaf28e3d8" +path = "static-publisher/static-content/file3405.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/virtualization/vmware_tools/index.html_gzip_de84478aaf09c3e7137e36432cd2ca84d90a7718a04a478cc5def652fcaa2fa4" +path = "static-publisher/static-content/file3405.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/web/apache-sites-enabled/index.html_e358718d7c627c815acd2d92d6dd7f8187e6760a9d6dbc8b4be76347010767a4" +path = "../build/minified/site/ru/guides/web/apache-sites-enabled/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/web/apache-sites-enabled/index.html_br_dc1cb2a1a03491edbf1947838b36a9b9fce130fcb7c93cde3da8c1b1a22d70bc" +path = "static-publisher/static-content/file3406.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/web/apache-sites-enabled/index.html_gzip_29908cc0508e24c89158dc096152c22b3c0d785ec8c1e4f4988e5bb76c879dc8" +path = "static-publisher/static-content/file3406.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/web/apache_hardened_webserver/index.html_7a3f4e640870222c8a6f2b4ba70c66ef8664898872e1c5d6a80b4f5417362bf5" +path = "../build/minified/site/ru/guides/web/apache_hardened_webserver/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/web/apache_hardened_webserver/index.html_br_c10d6dc5cf203b0ea682b832aa7abcd0b50c6f2e78c6d3701d638ab943d2a620" +path = "static-publisher/static-content/file3407.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/web/apache_hardened_webserver/index.html_gzip_de25a7163c161f9cca4ddc7e78ce45f0ef49daa28f7d931384a16589f0c40ce0" +path = "static-publisher/static-content/file3407.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/web/apache_hardened_webserver/modsecurity/index.html_ca964b51eb8d048d5ce8c0b444cb0f21b5b9284d7efb38cfcbff992b4e9a5325" +path = "../build/minified/site/ru/guides/web/apache_hardened_webserver/modsecurity/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/web/apache_hardened_webserver/modsecurity/index.html_br_e14711df8ba2ce5ee32bdd5c48205c0f23cefef8309087571676390536c770c0" +path = "static-publisher/static-content/file3408.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/web/apache_hardened_webserver/modsecurity/index.html_gzip_52a43404d233bcbd35ff5f9a1e1691c97dda94bb89e142b8cd6491bdade23284" +path = "static-publisher/static-content/file3408.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/web/apache_hardened_webserver/ossec-hids/index.html_4139d5c80ab69003837955e41eb6f94622a3c99c9484867c8e0a0a195962423e" +path = "../build/minified/site/ru/guides/web/apache_hardened_webserver/ossec-hids/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/web/apache_hardened_webserver/ossec-hids/index.html_br_6088ec143f8fd4719bfaeddc3286206979aebe3938ca1432b25f2e595530c0e3" +path = "static-publisher/static-content/file3409.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/web/apache_hardened_webserver/ossec-hids/index.html_gzip_804dd30a49a2414393f2acae78c5024615da6d83c007e2d875968ff0ea3e0671" +path = "static-publisher/static-content/file3409.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/web/apache_hardened_webserver/rkhunter/index.html_bbf28de87b17a3a519a09394afc9abc91aab44aae3a509b0c50994b0108a9a8a" +path = "../build/minified/site/ru/guides/web/apache_hardened_webserver/rkhunter/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/web/apache_hardened_webserver/rkhunter/index.html_br_45bf4cf3255e16bb69e46607022349330de681d174d161c04cebc1b1e618d328" +path = "static-publisher/static-content/file3410.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/web/apache_hardened_webserver/rkhunter/index.html_gzip_3c73421fbf5a6808773b48606a4dc7e6f0216a6b6afbfb4da4999d814a904582" +path = "static-publisher/static-content/file3410.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/web/caddy/index.html_07e9817b98c0b953bcaed0438d4717fa5c567dc87e09d5dd1fc501db01df8aa3" +path = "../build/minified/site/ru/guides/web/caddy/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/web/caddy/index.html_br_7a83e3588d2be873477e846fe78ea29a833a7bbc000e2d7be870d3766eb22dfc" +path = "static-publisher/static-content/file3411.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/web/caddy/index.html_gzip_3b80bd0a817a00b8d3e5233f3fa5ad84b80ef78b0ffc4f8ac70f743558417f62" +path = "static-publisher/static-content/file3411.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/web/mod_SSL_apache/index.html_40541a9bf2ac3adaf13b4caf298d0e6a2fc7941ca07026b9531539da9c90e3eb" +path = "../build/minified/site/ru/guides/web/mod_SSL_apache/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/web/mod_SSL_apache/index.html_br_cd53b9b40c45b5c0b003b43f32ca7849f16b4b761e40b09e89cab906523769bc" +path = "static-publisher/static-content/file3412.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/web/mod_SSL_apache/index.html_gzip_402f6efcce59c0881be0b3ba36153b37917ae9db248fe290233346a50f09a4b8" +path = "static-publisher/static-content/file3412.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/web/nginx-mainline/index.html_14fa24614d7aaaef38efb8c626e9cb60cee839fe0a691978126a3d4cb8ba4a06" +path = "../build/minified/site/ru/guides/web/nginx-mainline/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/web/nginx-mainline/index.html_br_4f35aaaf27be30a156c19a04f265bb268886c7010ac914d234cc53432dc95893" +path = "static-publisher/static-content/file3413.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/web/nginx-mainline/index.html_gzip_80858719bb5670211f9ebc9f9ac78803922d1866bf76a768d03ea1db9df5746e" +path = "static-publisher/static-content/file3413.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/web/nginx-multisite/index.html_d66a4aa11f474f055d9aadf2f2e466515e253e451f5bdaf954d6ef66e1522182" +path = "../build/minified/site/ru/guides/web/nginx-multisite/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/web/nginx-multisite/index.html_br_64258543652b38eeea3c2155e210c8ff89a5921a9b2ce7de6816c8ef7a58f0e4" +path = "static-publisher/static-content/file3414.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/web/nginx-multisite/index.html_gzip_9bc3a119f3acbcaa0a3e8ab968011c93fc9caa34587a488249b20df6fbf493a3" +path = "static-publisher/static-content/file3414.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/web/php/index.html_3909cdf17ee2dbdc91866e35dbbca75de87bd561aec94303100b7aed6f76dece" +path = "../build/minified/site/ru/guides/web/php/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/web/php/index.html_br_87a373d4ac6c0dba4b00c6fe19a3e937861612fdb40bc2e2c4e8216b6b2f27d7" +path = "static-publisher/static-content/file3415.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/web/php/index.html_gzip_5f63a32ae1265f6cf3757ce0178a53f0fad3886ba846d54f191062a25cb97ba0" +path = "static-publisher/static-content/file3415.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/web/tor_onion_service/index.html_31ce949cf49ef7d7286b52ed4ce314b53a4590816abcface6b2c4f79956a1145" +path = "../build/minified/site/ru/guides/web/tor_onion_service/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/web/tor_onion_service/index.html_br_616d2fad1d1e7cfa91af78460a8027af2af7dc60c73dc9d939e620dd24e6d854" +path = "static-publisher/static-content/file3416.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/guides/web/tor_onion_service/index.html_gzip_442fa0ba7e0c8f908605673bf31a0ae0a9e51360ae1186f02fe1a6101917decf" +path = "static-publisher/static-content/file3416.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/index.html_d1090f1b0ab92c95d2412a0dd42bbbf0b2ae998e1a4145e78695e5cda845086d" +path = "../build/minified/site/ru/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/index.html_br_8193ee7d14b055ad0963c38947326aed2eeb3faeedf9195d23208a4cd5f69a58" +path = "static-publisher/static-content/file3417.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/index.html_gzip_824c61dcf531aea4b48e6728ef260797af4409b306b8895ef350aac985aedf8d" +path = "static-publisher/static-content/file3417.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/labs/index.html_03a26a78a301705133cf8f0d5480804b68098d525bc5dc76fc466442e7e295a8" +path = "../build/minified/site/ru/labs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/labs/index.html_br_a72a7b42fde2f2e7a5c0ae083df9a711271b8f7c556d4352e024af3f1f60141e" +path = "static-publisher/static-content/file3418.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/labs/index.html_gzip_ec649f97a632075232d34d8168afedd2196cedddc0168ba7238368cb9609e258" +path = "static-publisher/static-content/file3418.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/labs/networking/lab5-nfs/index.html_ea7fa3cffdf784af7954578f94068881db4cb3a2f5d3351c81c012b22a41c9fb" +path = "../build/minified/site/ru/labs/networking/lab5-nfs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/labs/networking/lab5-nfs/index.html_br_bac552640002d30d31d98501dbe54e88e1170588683c4fb581f348a838d6147b" +path = "static-publisher/static-content/file3419.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/labs/networking/lab5-nfs/index.html_gzip_239e0c5762d8df046fe3726fb853c6678501b9f9af22c1febb6df23ca2a29b5f" +path = "static-publisher/static-content/file3419.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/labs/security/index.html_cf227b92851f4f21f8ba3e19d70b43bc9ec1eded548b015c01ac2f0cfdb9a556" +path = "../build/minified/site/ru/labs/security/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/labs/security/index.html_br_352babd7349bb38d30e283af27380a033c2668296e5e68af9814349ee9087945" +path = "static-publisher/static-content/file3420.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/labs/security/index.html_gzip_ad952018b13ada79fdb640c36e20e0092b431f4913869fed9b9e0c42622fdea9" +path = "static-publisher/static-content/file3420.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/labs/security/introduction/index.html_9901f910c3fa728c97ab40a6cc44254dc8f8d94c77f19b21cc1499e0524bbe14" +path = "../build/minified/site/ru/labs/security/introduction/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/labs/security/introduction/index.html_br_911a0dbed7c961d0c57939ca2e887993ea3cd65ff0eb2663d8e24129a4f5761e" +path = "static-publisher/static-content/file3421.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/labs/security/introduction/index.html_gzip_d535b8d7436d843f78292e3378315b990462aa8334612012249fa51ed27094a1" +path = "static-publisher/static-content/file3421.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/labs/security/lab3-auditing_the_system/index.html_8264fc40baaab75fd35df954d4eb43e9135bbc91e919666b259915791e0270d1" +path = "../build/minified/site/ru/labs/security/lab3-auditing_the_system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/labs/security/lab3-auditing_the_system/index.html_br_82c5dfdd2c8e34cbb5af5150cb9cf80b691c0339bb6df62eda571138e67069f1" +path = "static-publisher/static-content/file3422.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/labs/security/lab3-auditing_the_system/index.html_gzip_cfe476cf16beefff608a955e36f6b64a8cfd1cb12a0f8b4969252598e7ff3338" +path = "static-publisher/static-content/file3422.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/labs/security/lab8-iptables/index.html_79dbe24ce2d9e38a9e87ec2ab8d1247c6b505527182397d1c4c02a73d852f094" +path = "../build/minified/site/ru/labs/security/lab8-iptables/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/labs/security/lab8-iptables/index.html_br_fe128b2138e7ba764b50b331c8de435419eafcaf934ec794fdba83c775954365" +path = "static-publisher/static-content/file3423.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/labs/security/lab8-iptables/index.html_gzip_a058f6a608bb912baf96cb711da902543e1507652a3faf765590df6aea58fe86" +path = "static-publisher/static-content/file3423.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/labs/security/lab9-cryptography/index.html_1c6413a8e892e0b6c2915f82481177e2888a134b6145322a50f2911f41c603a6" +path = "../build/minified/site/ru/labs/security/lab9-cryptography/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/labs/security/lab9-cryptography/index.html_br_b2789e3d7807cd04e0852f1df938e4a846f0dc61c0d46e9ecb66db1e57c3dce3" +path = "static-publisher/static-content/file3424.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/labs/security/lab9-cryptography/index.html_gzip_a95d9c52f8d2a04aa05899f7c00d037bf4f18cc4745dd5e837551a8713b29cfa" +path = "static-publisher/static-content/file3424.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/labs/systems_administration_I/lab3-system_utilities/index.html_3066aa450b181f8d7dd535465ec400e58af56321002b1985fba21c7b1ff3bd25" +path = "../build/minified/site/ru/labs/systems_administration_I/lab3-system_utilities/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/labs/systems_administration_I/lab3-system_utilities/index.html_br_8bad310c8484d000823f4423c5b0cf62d870fc58ee19c62f912a1958c4b97e8e" +path = "static-publisher/static-content/file3425.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/labs/systems_administration_I/lab3-system_utilities/index.html_gzip_cd49be299d24ac22f33247ee6ba0f8e7ca13df71733e897b49b9a5c0b6394c70" +path = "static-publisher/static-content/file3425.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/labs/systems_administration_I/lab5-networking/index.html_873f1079de0921e747f3d39664c46f0a8b288316cd9934012074f3bbb4e5d8b9" +path = "../build/minified/site/ru/labs/systems_administration_I/lab5-networking/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/labs/systems_administration_I/lab5-networking/index.html_br_4a979ae8e5940c15dbf5546c95ddcc58cfca5d4b0479c60627e2221dadf9b8cc" +path = "static-publisher/static-content/file3426.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/labs/systems_administration_I/lab5-networking/index.html_gzip_463bff7a0a125afae1476db2dca2491244b9506da958feed31b856814779be6f" +path = "static-publisher/static-content/file3426.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/labs/systems_administration_I/lab6-user_and_group_management/index.html_38bf78fbcf72edc443185f2bb90f264cf875b6a1594844796ad80f92516e659f" +path = "../build/minified/site/ru/labs/systems_administration_I/lab6-user_and_group_management/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/labs/systems_administration_I/lab6-user_and_group_management/index.html_br_7394895e095c74f9a7f4131e6bc818827ed212992b63afbddf1c2e926d7d33af" +path = "static-publisher/static-content/file3427.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/labs/systems_administration_I/lab6-user_and_group_management/index.html_gzip_798af5e31fad2da0ba029a63d694842e9745d694ee37a48304e5e5d6404325f2" +path = "static-publisher/static-content/file3427.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/labs/systems_administration_I/lab7-software_management/index.html_aa871153eef408f0103f2b108c1a5a07d8eaa48d78d79d1bc67aed0f1b9dc877" +path = "../build/minified/site/ru/labs/systems_administration_I/lab7-software_management/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/labs/systems_administration_I/lab7-software_management/index.html_br_048af8338873e1d33cc1fafb73de598ea2272c414bb7b1affec663addb88d3fa" +path = "static-publisher/static-content/file3428.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/labs/systems_administration_I/lab7-software_management/index.html_gzip_3ac66d93f41b057351a5512dc4d07ce11af4e0cccd33afc5ecc68148302af365" +path = "static-publisher/static-content/file3428.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html_ba02eb9b91a97672cd4242fdddfc60e58e36cb881b1cd17165ded3a1da003573" +path = "../build/minified/site/ru/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html_br_8789d1d7aa8af47cea4687540c4e978f257a5a752f18d48f1488d6500d100000" +path = "static-publisher/static-content/file3429.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html_gzip_abe0717f648f94b791dd1114a743a098b259ddbf679dd2c53dfbdc2abdf8ce2f" +path = "static-publisher/static-content/file3429.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/labs/systems_administration_II/lab3-bootup_and_startup/index.html_cba0d4849acd4cd0bb6709e98e9904183891787f737a3e6d1f2339fc3a96a6fe" +path = "../build/minified/site/ru/labs/systems_administration_II/lab3-bootup_and_startup/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/labs/systems_administration_II/lab3-bootup_and_startup/index.html_br_f7499c90d96b8ffc7cd6f0f0ce9cbfdc98483b2d4e460f55b5e9f2de2d98959d" +path = "static-publisher/static-content/file3430.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/labs/systems_administration_II/lab3-bootup_and_startup/index.html_gzip_069e04b3420b04d21f5c2d2143d4633f5da730d8a7824873b6647bed95d4f43f" +path = "static-publisher/static-content/file3430.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html_300608ce83b87f6f201ba7b099fc3a49c26762c8260f9a448cc49b8edc970e51" +path = "../build/minified/site/ru/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html_br_0960d5908c743bcc8c5ae05a632a3e4c84448112d064bb0a0dd870c2c26fb000" +path = "static-publisher/static-content/file3431.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html_gzip_3ef65f2016047530725ed878f377c7e97ee83f4acd42b9f766ef13a3013ac596" +path = "static-publisher/static-content/file3431.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/labs/systems_administration_II/lab6-the_file_system/index.html_dba54c588335557c0b0599abf67ce2f67ff5e944638d6c4708d12ad3a57e72c0" +path = "../build/minified/site/ru/labs/systems_administration_II/lab6-the_file_system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/labs/systems_administration_II/lab6-the_file_system/index.html_br_545a50d5cc07421af5d0bd8ce55f4abfa05b6906a39d0f66eb9caa7ff4859e68" +path = "static-publisher/static-content/file3432.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/labs/systems_administration_II/lab6-the_file_system/index.html_gzip_f5f2f149fb44e14a840d09d583f74eded19985eb51d216b2f26c8703b2c5b87d" +path = "static-publisher/static-content/file3432.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/labs/systems_administration_II/lab7-the_linux_kernel/index.html_42fc75d052b482156cad5f46194d87f33cd3aa0e06c52e4aca5706fd9f709643" +path = "../build/minified/site/ru/labs/systems_administration_II/lab7-the_linux_kernel/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/labs/systems_administration_II/lab7-the_linux_kernel/index.html_br_3ae6b0bd5936bed07f46674e3af80a82a11dff35fba6fdf5491c0c8f5ec027f0" +path = "static-publisher/static-content/file3433.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/labs/systems_administration_II/lab7-the_linux_kernel/index.html_gzip_23e3cde3d915549afa39610b8d9f8cf585d5d23853442806214bb33e1cd608f5" +path = "static-publisher/static-content/file3433.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/release_notes/8-changelog/index.html_a83d2e96729801f93bbb7d51070321bc88c666066213b7fe2cad9b980da7e192" +path = "../build/minified/site/ru/release_notes/8-changelog/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/release_notes/8-changelog/index.html_br_aafb0861c702222deec7a149379bbf59d2fe2855feebba42461fed0f35292ce7" +path = "static-publisher/static-content/file3434.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/release_notes/8-changelog/index.html_gzip_7e073a3db453d7768611c0fc09ee1efd6909317d866e12e5e7a6d8bcc4f955e9" +path = "static-publisher/static-content/file3434.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/release_notes/8_4/index.html_9fbbbf3a7f0342eb4f0749c5b092d402f7d3c74051d69a62182e53cdc5d05aac" +path = "../build/minified/site/ru/release_notes/8_4/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/release_notes/8_4/index.html_br_8e3f2e10724665df06112222b4f159ebbd40d86e037c63fdb68e0f0a38027797" +path = "static-publisher/static-content/file3435.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/release_notes/8_4/index.html_gzip_9b983ba02d5eab922f86f556959f6c94af936a6e21313b03980e3f73000155a3" +path = "static-publisher/static-content/file3435.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/release_notes/8_5/index.html_7f3d610d5433c0e507dce2a13840df9d5817b71870997a09e0b69d308fbf2e2e" +path = "../build/minified/site/ru/release_notes/8_5/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/release_notes/8_5/index.html_br_e11fbdd90793a936eaaba84564054e37daee586a445d1f9d67ceac9f4bb1bc04" +path = "static-publisher/static-content/file3436.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/release_notes/8_5/index.html_gzip_4d855f571799bde69fb6a9297b3e9ffc752e906ebafec8e6f1681829d4b6af89" +path = "static-publisher/static-content/file3436.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/release_notes/8_6/index.html_451314313a893b0bf46de2eae754aa5a03786f1e879c9e73a688749699c922d8" +path = "../build/minified/site/ru/release_notes/8_6/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/release_notes/8_6/index.html_br_a4a4d4a719d25f239489275432afbe4644b0689e34bd015a9cc96c23ec7917ff" +path = "static-publisher/static-content/file3437.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/release_notes/8_6/index.html_gzip_0c6fa481a1028c88faefac1872e44d6df0fb6264b1c36c8c45168a13757a8825" +path = "static-publisher/static-content/file3437.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/release_notes/8_7/index.html_e6f2bde6aff0cef15a1aae69accd5f8db2aa4076b77845b402b502ce230ee7ab" +path = "../build/minified/site/ru/release_notes/8_7/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/release_notes/8_7/index.html_br_b156b68e279395e009efb5ba30ad8efef13544e6181779f6e035739bb06a008a" +path = "static-publisher/static-content/file3438.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/release_notes/8_7/index.html_gzip_c4db81b91ab7852ea4005e77e5de6502b06066b285cac64fa7e38317cbaf2b9d" +path = "static-publisher/static-content/file3438.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/release_notes/8_8/index.html_772ef91deed4f9f8f991ad0a4e8ebb2cbe16c90ad2c05e2e5225acf2b81cd059" +path = "../build/minified/site/ru/release_notes/8_8/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/release_notes/8_8/index.html_br_9f461e46a22fdb36994823dbe5690a1c25ceb7faa85c167919b16bafe6ba635d" +path = "static-publisher/static-content/file3439.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/release_notes/8_8/index.html_gzip_a9bc2a449a1eeb5e9caf19c2ff579ef00b9a16248744ab5aeac2e342cd4d5891" +path = "static-publisher/static-content/file3439.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/release_notes/8_9/index.html_f5c2aeb8f1c9fca69cb6afd3f81e4fdcc32bd9a9abbab5428cab2e72102bd66d" +path = "../build/minified/site/ru/release_notes/8_9/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/release_notes/8_9/index.html_br_6f2b3148cc7ea83e8fb87a418b4522da502fc36e0ac594e0ede9851ae6a0220e" +path = "static-publisher/static-content/file3440.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/release_notes/8_9/index.html_gzip_b7a099110f3c009c9a77ece4ab4e7c3b02e181a1d627ab8c9178b91312855cd9" +path = "static-publisher/static-content/file3440.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/release_notes/9_0/index.html_45a98dec193fa474111c7e3be86b1d2436d0d28c799e563ba8be89b24abaf1f4" +path = "../build/minified/site/ru/release_notes/9_0/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/release_notes/9_0/index.html_br_a7e30d26fdf478ee0e6b66d34de71fec3da24f7dee69a617317001ddfea6b09c" +path = "static-publisher/static-content/file3441.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/release_notes/9_0/index.html_gzip_fc32034714b0f0f4478f1cb67e01ec3af4679c218dec29aafa4fd4205b03a230" +path = "static-publisher/static-content/file3441.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/release_notes/9_1/index.html_b2dd9ca9459515d55888d7139fbaadfd611455b86faccb85cbad356ef753126f" +path = "../build/minified/site/ru/release_notes/9_1/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/release_notes/9_1/index.html_br_9070ee6f2784cde784941584e9a129eeffb422f8ee671817c1238301725f3ada" +path = "static-publisher/static-content/file3442.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/release_notes/9_1/index.html_gzip_216d35ecde0b8e39ca0996152524a4a676607f547670c06d5a57dd84534c84c5" +path = "static-publisher/static-content/file3442.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/release_notes/9_2/index.html_20f8db02a5a0eab5c90b9b7c2ca3ca3ffda1610da3d7e091188b40006d470d0d" +path = "../build/minified/site/ru/release_notes/9_2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/release_notes/9_2/index.html_br_1c37d4a1b6ee4e76e1f820777b5c5bb7fdfc7e05cd41c78d10d16e1289f2a185" +path = "static-publisher/static-content/file3443.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/release_notes/9_2/index.html_gzip_046ed170c8d821fbb6ea52b3ea5c462afd52333947ee510593c557d5cc45b939" +path = "static-publisher/static-content/file3443.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/release_notes/9_3/index.html_7d15d6ebb45f6f15a50c34380abd5ca5a3eda60a1eede042804bdfecc20b2cef" +path = "../build/minified/site/ru/release_notes/9_3/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/release_notes/9_3/index.html_br_df5fadf68d8f5b712f5dc61e95e7844a7bd9ac5e20e69b883c03e072d5dacf04" +path = "static-publisher/static-content/file3444.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/release_notes/9_3/index.html_gzip_492679f23097ecd0036430d68f6c2936a441a5d8c392c9b0031ed1d27f091f42" +path = "static-publisher/static-content/file3444.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/release_notes/index.html_55154e1aa378d8094cc058f2c340bb6d56932693b57f67aaaa3c96fdf1f4ca7f" +path = "../build/minified/site/ru/release_notes/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/release_notes/index.html_br_65e88d9692fe7cb6ad29df294d3606ec63a4b8421cc95780bb47cdade247fd19" +path = "static-publisher/static-content/file3445.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/ru/release_notes/index.html_gzip_7f75f9ee0f754279a4801f213ced8a785b5b2cfa8e8df505caa2fc5d9cc4a476" +path = "static-publisher/static-content/file3445.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/search/search_index.json_3d9f7b1ff1245cc07154f40cc7a936a6c69244f1cf7d2e9b5e484d46f99ae250" +path = "../build/minified/site/search/search_index.json" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/search/search_index.json_br_29376c4578b3981b01caa3b518635f7edbc16b5e298998bb987ac331999ffbbf" +path = "static-publisher/static-content/file3446.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/search/search_index.json_gzip_6f23b852a8597909959d5d30e13c9f1868a6590b086011e68d5813428db7cd19" +path = "static-publisher/static-content/file3446.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sitemap.xml_52ae588cc560537a4917ddb0d01f3af2818243848606493ce4ffeb1c50aa6118" +path = "../build/minified/site/sitemap.xml" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sitemap.xml_br_4674022cc4a633681a312760f82d82238c77a6aa1b77e7c27aa7fb99470a1ef1" +path = "static-publisher/static-content/file3447.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sitemap.xml_gzip_095069afe86be078f48fd1a885e3830d3113d7b43ffe86da6ba7bca0f033254f" +path = "static-publisher/static-content/file3447.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sitemap.xml.gz_49dca0e71991196e1acd00d07f6eb921278223abc1bfdb7a953813a8ce575cf7" +path = "../build/minified/site/sitemap.xml.gz" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sitemap.xml.gz_br_d03f98b79e3c3585a6b048a5f82b56eae08f22f02683c08e4e683e281f1e76ee" +path = "static-publisher/static-content/file3448.bin_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sitemap.xml.gz_gzip_4bb2e43eacac6797e308eb79e7666ac0b6ff7894479a3bbcedb3993eb663220e" +path = "static-publisher/static-content/file3448.bin_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/admin_guide/00-toc/index.html_18a1d56150239c74655b6379352bc283a7881678d42efde6a3d132a43bff8af2" +path = "../build/minified/site/sv/books/admin_guide/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/admin_guide/00-toc/index.html_br_2d5a38b865e88ea2917655a2c058431cea3702ec6bd74504414ea04b82367bbc" +path = "static-publisher/static-content/file3449.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/admin_guide/00-toc/index.html_gzip_014a253693bd8be0fc7f24efd476248cddc03632271eea9c4f775c97c8ddef9d" +path = "static-publisher/static-content/file3449.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/admin_guide/01-presentation/index.html_1c75645bb37dc7b653fe9e1ad5acb325090d9bba15918d36f09ad0bb680c97d7" +path = "../build/minified/site/sv/books/admin_guide/01-presentation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/admin_guide/01-presentation/index.html_br_60db10957d192d21506828201d1b913c29f0907bd61c4bba4db86c159400f025" +path = "static-publisher/static-content/file3450.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/admin_guide/01-presentation/index.html_gzip_6ad4ecb70d7fdd72229574e7b349c0cbbf51c521605851721182236f3396f05d" +path = "static-publisher/static-content/file3450.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/admin_guide/03-commands/index.html_2fe800b9de093e7cbf10fefa8eb59a4f6a2102eb81511c847b047a9442dd6469" +path = "../build/minified/site/sv/books/admin_guide/03-commands/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/admin_guide/03-commands/index.html_br_2caef04f038a0db58ad89d7232dae40c6f92569ceb26656c79bef633a74e442c" +path = "static-publisher/static-content/file3451.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/admin_guide/03-commands/index.html_gzip_3670adf3bba0ccd05deb9f0a7aff678aeacc7966c6140a6c35b103de05d1e01e" +path = "static-publisher/static-content/file3451.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/admin_guide/04-advanced-commands/index.html_ad4828654397bf3e18f4e5800ac4e6dbc8962dc13a25e39a599bbc2de5d3c156" +path = "../build/minified/site/sv/books/admin_guide/04-advanced-commands/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/admin_guide/04-advanced-commands/index.html_br_df880fb6700f71cb68444085294bed7f115e52b0816ec1626e7ad429f9315983" +path = "static-publisher/static-content/file3452.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/admin_guide/04-advanced-commands/index.html_gzip_fd95690a698c33042e710fd39d6d85607807419670046604fad610a4737cc1e5" +path = "static-publisher/static-content/file3452.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/admin_guide/05-vi/index.html_41a11ececbf776ededdf108c5d2dd37a2ee823ed9517bb3f972a39d27336adaa" +path = "../build/minified/site/sv/books/admin_guide/05-vi/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/admin_guide/05-vi/index.html_br_35471fb8a3a8ffd67c698df12c74bd9d51b89ebc36bc41bc25ddba52ff0afa8f" +path = "static-publisher/static-content/file3453.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/admin_guide/05-vi/index.html_gzip_7a583f5df851b0870a62967c1e9c24365d89af471f9fcaa2435ad3a8efe8fa58" +path = "static-publisher/static-content/file3453.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/admin_guide/06-users/index.html_3b20bc9265ef2488fd16f32717e3c0a93a2a718571a640b315130a0d08c07acc" +path = "../build/minified/site/sv/books/admin_guide/06-users/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/admin_guide/06-users/index.html_br_2eedf5cf4e8b8f6c2050a8f1f2f7b9966a0dad73934c09373b3641a415509c80" +path = "static-publisher/static-content/file3454.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/admin_guide/06-users/index.html_gzip_2452dcf4afdd6f37e32d9dcba69507a51f3014896a580efe6f73d3fb725a6876" +path = "static-publisher/static-content/file3454.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/admin_guide/07-file-systems/index.html_16583e67cb0cf0f9b2997d07bbf02ff3b64a5d5cee555f643b8b9cd99218a1df" +path = "../build/minified/site/sv/books/admin_guide/07-file-systems/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/admin_guide/07-file-systems/index.html_br_c3e843fedd0a022747f872fe42dbc7d860c8ed4d180d082f72d5ceccfe029f75" +path = "static-publisher/static-content/file3455.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/admin_guide/07-file-systems/index.html_gzip_0d30c0283118cdaee1ed0aa12b9685aaca52e09b5cbe6bd20de16735f66cc952" +path = "static-publisher/static-content/file3455.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/admin_guide/08-process/index.html_f5ec35faec25671f9a6c33d3ead59ed99972c7741858cac9717a24deccbbb745" +path = "../build/minified/site/sv/books/admin_guide/08-process/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/admin_guide/08-process/index.html_br_ba12e65ec91382ff25dec5d400d3305d9df3778c54d2a1f8bf187da6d1613744" +path = "static-publisher/static-content/file3456.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/admin_guide/08-process/index.html_gzip_7f0bd6613e66ed4ba4dbb88c343ea8af0f72c941ee952bdd6cb18399e5f16440" +path = "static-publisher/static-content/file3456.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/admin_guide/09-backups/index.html_fa04dbd4220ef214bd1f5a4dce849761e3139a43c30c9ef84f621924a58535db" +path = "../build/minified/site/sv/books/admin_guide/09-backups/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/admin_guide/09-backups/index.html_br_78c8ec057b0e0d1d27b7e3793f6893edbd745e3c69515470c1252082e2b00b20" +path = "static-publisher/static-content/file3457.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/admin_guide/09-backups/index.html_gzip_b19b9c298f9d5110e89e02be672cfc925c4e0258bdc0e94c98d86972b2c14b0a" +path = "static-publisher/static-content/file3457.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/admin_guide/10-boot/index.html_72f89382377ad8ef768d5627c19f753f86b23a448158ba02eb29a96cef1633f3" +path = "../build/minified/site/sv/books/admin_guide/10-boot/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/admin_guide/10-boot/index.html_br_163ccd18fab17cc250a4f2837fba9e54c210951e27bb5327380a3f7104600e38" +path = "static-publisher/static-content/file3458.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/admin_guide/10-boot/index.html_gzip_0bab7e1bafcfacdd1362c65f1338a9c129e4510a372e9dba4ca80a81a0f9fb03" +path = "static-publisher/static-content/file3458.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/admin_guide/11-tasks/index.html_ec5ac47643f77ec16e1310395c82b98761026d38ed44c45a35d494aad83958a0" +path = "../build/minified/site/sv/books/admin_guide/11-tasks/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/admin_guide/11-tasks/index.html_br_24855298f18eae1753a22e739ef10ee4c6bff6b2834ea335238eec9af3ba6b74" +path = "static-publisher/static-content/file3459.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/admin_guide/11-tasks/index.html_gzip_31ea89bd0126e366987ee2ab023f9ecd5c36219b02582b5299a2631c77671c63" +path = "static-publisher/static-content/file3459.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/admin_guide/12-network/index.html_016f16b57e56d3d0f0b5c912d11fa9e47c8ba2fb3832dfd45356e48f5fcb339b" +path = "../build/minified/site/sv/books/admin_guide/12-network/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/admin_guide/12-network/index.html_br_1005f44f62b474471429bbe8bbe155d0b921ccb81b634ae64dbbd73f39bdec9a" +path = "static-publisher/static-content/file3460.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/admin_guide/12-network/index.html_gzip_8672042eb6aa6ddec2797dee9eccc002707b54d51d054780e3821261ee3a4d91" +path = "static-publisher/static-content/file3460.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/admin_guide/13-softwares/index.html_703ac61096415d2802067ab9d00b63b5fc2c105ac4be38b246764a5cfca768a0" +path = "../build/minified/site/sv/books/admin_guide/13-softwares/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/admin_guide/13-softwares/index.html_br_c97121c400129484659dc55202c996672c8bb99a09b918f8660bc9118e23394a" +path = "static-publisher/static-content/file3461.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/admin_guide/13-softwares/index.html_gzip_e59f8d8649ac13ebd3c7af9eaf864a4f2ccaa2a321169485a07a7e76c7209520" +path = "static-publisher/static-content/file3461.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/admin_guide/14-special-authority/index.html_b58db2bf2c82ab08d03e6b2497f90269c76141f7f88b8daad597aa001a3cc39c" +path = "../build/minified/site/sv/books/admin_guide/14-special-authority/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/admin_guide/14-special-authority/index.html_br_1e4d6db04b5fa3e4237b7ad7cdd634825e25ee046b18e9f92742ee4d4f00eabe" +path = "static-publisher/static-content/file3462.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/admin_guide/14-special-authority/index.html_gzip_54049d55b111f4f6039117b274d7e3aa8062c13964158c48f54cb5fce962fe3f" +path = "static-publisher/static-content/file3462.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/admin_guide/16-about-sytemd/index.html_366bb1b34bad032e879dc4abffe8f6e0be5ae4672a7f7f8934ffbe6dafcafb22" +path = "../build/minified/site/sv/books/admin_guide/16-about-sytemd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/admin_guide/16-about-sytemd/index.html_br_88811602dbc4a1dee50422a2149b1006951c9fd9a6552bdeebbd2b9f8367c083" +path = "static-publisher/static-content/file3463.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/admin_guide/16-about-sytemd/index.html_gzip_a0ae05e6dc39fe4a25d4618e74a863b26a50d121844a90522d1d5ab8d33171ae" +path = "static-publisher/static-content/file3463.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/bash_programming/01-Shell-overview/index.html_17269714cc31cb63e5cb12864fae4f5055823cdf4c7f921c6b5b45083b3bc36a" +path = "../build/minified/site/sv/books/bash_programming/01-Shell-overview/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/bash_programming/01-Shell-overview/index.html_br_d17e062b17e3f747a164752482098f30a6d03e3d85f288ab52ef37976615cb3e" +path = "static-publisher/static-content/file3464.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/bash_programming/01-Shell-overview/index.html_gzip_a9561b10136da9837fd0fb88d3503934031053b3bdf1e8cbe852080a5b03dc9d" +path = "static-publisher/static-content/file3464.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/disa_stig/disa_stig_part1/index.html_a496a8f8303a6778b151cfb20e44549d57c9c75dd3a469fded6c2e351a773163" +path = "../build/minified/site/sv/books/disa_stig/disa_stig_part1/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/disa_stig/disa_stig_part1/index.html_br_e59bc6a7e401c5ca5e4e06f34f49416111b4d9ed3e8bb63d39c00a4367ec47ab" +path = "static-publisher/static-content/file3465.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/disa_stig/disa_stig_part1/index.html_gzip_7e3980d8c166b4da64788e456ffe01afa0e49340a1207aaf62128dcfa0c448b2" +path = "static-publisher/static-content/file3465.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/disa_stig/disa_stig_part2/index.html_87f74336d3409d75097d14d267942a88417a827443b3a24922fc9c2b4f4caebf" +path = "../build/minified/site/sv/books/disa_stig/disa_stig_part2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/disa_stig/disa_stig_part2/index.html_br_5a7fb25861558f008d6e3a18c99aa4be016d4b4f34549d12610fa4d02b29aa16" +path = "static-publisher/static-content/file3466.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/disa_stig/disa_stig_part2/index.html_gzip_65dde559725bb40738d940d54b1d5ac25364f1eed38273e04d47c34c092f618f" +path = "static-publisher/static-content/file3466.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/disa_stig/disa_stig_part3/index.html_ae3177e6e7ac51b39fdbb61afadb1e4ca6844cae26c0b1e25bfd57b17ebf5982" +path = "../build/minified/site/sv/books/disa_stig/disa_stig_part3/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/disa_stig/disa_stig_part3/index.html_br_1e378f59fd2005409c479a983e1d4152fd9269edda3b16aa7f0d47936faf0372" +path = "static-publisher/static-content/file3467.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/disa_stig/disa_stig_part3/index.html_gzip_a506298ba9c0355cd63d4763f257157e8d9c9d5ed6f70439337ffcd382cf0511" +path = "static-publisher/static-content/file3467.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/index.html_f012873d07b1adbc0ccf0d152245bb2d042022316d0116660ae2ee79e0817004" +path = "../build/minified/site/sv/books/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/index.html_br_2a574985ef8984b407447b452ac75ed77535dc6d79416040d01fc3c85b3af2f4" +path = "static-publisher/static-content/file3468.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/index.html_gzip_a2c67d63e19bd86560697f4ab9b94d4208fe21f3b87f169028600bf1204a4e05" +path = "static-publisher/static-content/file3468.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_ansible/00-toc/index.html_44f0b8f3cc5d72687fdab9074c8df33321153e1e7d415848a89755bb73d7fb71" +path = "../build/minified/site/sv/books/learning_ansible/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_ansible/00-toc/index.html_br_e57ab3abdacbb73716694cdf8af5f90d107ebba89743c0cbe0d2d87c47446ced" +path = "static-publisher/static-content/file3469.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_ansible/00-toc/index.html_gzip_a9d20c74b0169d97b4301ba45c723b78b87a86584dfa799becbe23c61e1c668d" +path = "static-publisher/static-content/file3469.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_ansible/01-basic/index.html_102698ea5ea3c2005576993b4d611f62dbe79da53ab1e8c9b924be1604c11bd4" +path = "../build/minified/site/sv/books/learning_ansible/01-basic/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_ansible/01-basic/index.html_br_f5b5cadacf1fff76d6fbe850b74cba3e22674640f40472214ba853415f07306d" +path = "static-publisher/static-content/file3470.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_ansible/01-basic/index.html_gzip_c8f08271c74c5304d3b4d364bb2bbb0af54f63b113b47cce3b2261220e6361bb" +path = "static-publisher/static-content/file3470.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_ansible/02-advanced/index.html_f1a8eaf631c5ff8c9ef017133c9bb6344987de8f7e8ecbbfc5c9486b97b4d12f" +path = "../build/minified/site/sv/books/learning_ansible/02-advanced/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_ansible/02-advanced/index.html_br_870e49b8156a3a4a2d5ace3f338504fbca3977d53023cc77f4d754a7fdeac704" +path = "static-publisher/static-content/file3471.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_ansible/02-advanced/index.html_gzip_0d3c5e1afc4008251dcfa9ef722271813ac5904bd646f438b1cb0bf313bba224" +path = "static-publisher/static-content/file3471.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_ansible/03-working-with-files/index.html_c2787801497c4233ecb204e14da24918347e280e338ac310a1f22ba047e6a148" +path = "../build/minified/site/sv/books/learning_ansible/03-working-with-files/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_ansible/03-working-with-files/index.html_br_b374eb674cf52445a7690ea2f2c7c50e99885227d802f7226a3295832969fd49" +path = "static-publisher/static-content/file3472.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_ansible/03-working-with-files/index.html_gzip_d1574d9a461004f9310f666d40a5459abbd6584e014a114597e20d427e242655" +path = "static-publisher/static-content/file3472.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_ansible/04-ansible-galaxy/index.html_b695ccd3ce725333698d1a5a814726440c72b29002b9ad95402b80b64a212f57" +path = "../build/minified/site/sv/books/learning_ansible/04-ansible-galaxy/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_ansible/04-ansible-galaxy/index.html_br_5009c91a4aba3d62162690de9e94749a6b353c9046f1667460ec6211719e148d" +path = "static-publisher/static-content/file3473.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_ansible/04-ansible-galaxy/index.html_gzip_ab6a71e6ae2aafbcb9aaaf5ace099337f94111d09baab778f363bfd61f66726a" +path = "static-publisher/static-content/file3473.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_ansible/05-deployments/index.html_878f9dbe605f750332f6815252e678e068e0ed24876b0fc51e14a9f46c0e8d44" +path = "../build/minified/site/sv/books/learning_ansible/05-deployments/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_ansible/05-deployments/index.html_br_2ce5eee67eaa1fd44fcb7deea95989122d0e6f87a1f29c967a5af9a209c4df30" +path = "static-publisher/static-content/file3474.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_ansible/05-deployments/index.html_gzip_17025f19cb86bcb992ccb0fbd6c6068d52ddd8689297199603376e2e0134f8a3" +path = "static-publisher/static-content/file3474.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_ansible/06-large-scale-infrastructure/index.html_535b8a11a06c692c0dbe287bc5cb2ab7ca769d0918d087ee02d6e50073ae4e2e" +path = "../build/minified/site/sv/books/learning_ansible/06-large-scale-infrastructure/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_ansible/06-large-scale-infrastructure/index.html_br_eafc6f419ba605488227147169f0e81a2e3d330460e8b7b5aa94593f2a2ebd7a" +path = "static-publisher/static-content/file3475.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_ansible/06-large-scale-infrastructure/index.html_gzip_42750ceaf6f0731bc5a00511d1b0a4a916c11627c370d8d51dec34e14d212f4c" +path = "static-publisher/static-content/file3475.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_ansible/07-working-with-filters/index.html_48a5658aea0dd9bf34b211271ca68c0e32a04542580d95ab6166aa0866bedf91" +path = "../build/minified/site/sv/books/learning_ansible/07-working-with-filters/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_ansible/07-working-with-filters/index.html_br_bd21f574a36107ca2450552c093a0deb61f6bcabdb272ca4e98f06288f4a423f" +path = "static-publisher/static-content/file3476.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_ansible/07-working-with-filters/index.html_gzip_087ba32fa67206857062461794309d18334c83111ee171bfe09d783d5675c629" +path = "static-publisher/static-content/file3476.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_ansible/08-management-server-optimizations/index.html_219736d8cb1b410cc824531d2b56b91ee7d8b484a7bcd0597318518c20e786fb" +path = "../build/minified/site/sv/books/learning_ansible/08-management-server-optimizations/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_ansible/08-management-server-optimizations/index.html_br_43bc53bd479fda45ac4929d6d90f4aa7ca225170b1c2ea12f07da54da6cc5b34" +path = "static-publisher/static-content/file3477.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_ansible/08-management-server-optimizations/index.html_gzip_96fb547ca9ef52b00749bfe813ad4850f93eecf80f1438d5eb51041a9cb6ea50" +path = "static-publisher/static-content/file3477.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_bash/00-toc/index.html_c73feb998f8e6d3c57469888f0a8b8343831940ff1d14da28f347a0972307dda" +path = "../build/minified/site/sv/books/learning_bash/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_bash/00-toc/index.html_br_f4f31d0262ec798e6cc2259a872b6fa1aed3b6cadcdf1202423f16a12d211a5e" +path = "static-publisher/static-content/file3478.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_bash/00-toc/index.html_gzip_b956d88d25559ef2332e3ae528cda822184fabb1103408da1ff41d7e5422243d" +path = "static-publisher/static-content/file3478.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_bash/01-first-script/index.html_f561f599e929727ae57841d5bfae9861bc14db242854c7b26977233d03868446" +path = "../build/minified/site/sv/books/learning_bash/01-first-script/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_bash/01-first-script/index.html_br_6e08443d4803f159bd8664342af0f864877743300f972e9116b04934e23d7dae" +path = "static-publisher/static-content/file3479.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_bash/01-first-script/index.html_gzip_08884f6fbab2ab286795e8b6114f117be6a9b630ccf476acb607094c78f8863d" +path = "static-publisher/static-content/file3479.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_bash/02-using-variables/index.html_6df2e0964295ceb3b88775fc29eac955980347d62cb1366643eff043ae4f8b6a" +path = "../build/minified/site/sv/books/learning_bash/02-using-variables/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_bash/02-using-variables/index.html_br_ff202a616ce2ea11ad1038567502181239c88cfe6160ea993b6080337ba4b74a" +path = "static-publisher/static-content/file3480.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_bash/02-using-variables/index.html_gzip_2e3ee30fd4dbaf2ec9d2c9c0c73148a511b3d46eb76953e9c102e06fd273875e" +path = "static-publisher/static-content/file3480.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_bash/03-data-entry-and-manipulations/index.html_31bcbfe3cc2ba0dd4db454d279e61e3ffbbda08d6b9bc9f566d5474608450c2c" +path = "../build/minified/site/sv/books/learning_bash/03-data-entry-and-manipulations/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_bash/03-data-entry-and-manipulations/index.html_br_1c0b8c578906822322a326c39b9dbf9e7b56e29231d6956813d8bb338efa6f03" +path = "static-publisher/static-content/file3481.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_bash/03-data-entry-and-manipulations/index.html_gzip_5f02d92be0270e677dd9a87fc71115b422b542168635ba48ab3ac94c479590df" +path = "static-publisher/static-content/file3481.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_bash/04-check-your-knowledge/index.html_56da1d2656e25c550d60833882ae44adf3cb2f79efb05f9dd35cef271ae3958d" +path = "../build/minified/site/sv/books/learning_bash/04-check-your-knowledge/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_bash/04-check-your-knowledge/index.html_br_f2d29752155d84bb703161fb7b25ddab0d56c426f37b59a69cea25047a8a484a" +path = "static-publisher/static-content/file3482.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_bash/04-check-your-knowledge/index.html_gzip_68e84b1bacf729a1535634283cac5586cfc33902faedb66ce56c8e30ddf5f47e" +path = "static-publisher/static-content/file3482.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_bash/05-tests/index.html_02709d31b8b79690d43337bb404f3b5ab0021f3e14a1013ebb54b054c90985ee" +path = "../build/minified/site/sv/books/learning_bash/05-tests/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_bash/05-tests/index.html_br_ee05d6d16825072c1879775f16fa5215c290297e9c733aac3d35bc319fb40b0a" +path = "static-publisher/static-content/file3483.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_bash/05-tests/index.html_gzip_ba062bbfb47ee535f0cf4ebdb70f73f8277a0bcd2733e9d9cc286069b4a730f6" +path = "static-publisher/static-content/file3483.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_bash/06-conditional-structures/index.html_c8a886d7dc5651bf486585de21cf1dfc28b474c72fd4faec9d6ed5c2c2fa0a4c" +path = "../build/minified/site/sv/books/learning_bash/06-conditional-structures/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_bash/06-conditional-structures/index.html_br_8b15f2c603814ca2ae37fb97d7b8c073d5e99b96ec9baefef9bdf47f298427e1" +path = "static-publisher/static-content/file3484.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_bash/06-conditional-structures/index.html_gzip_6bc1fb61fc20512d5860f5899340716416899612a19ba5cbce36576f78fb2539" +path = "static-publisher/static-content/file3484.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_bash/07-loops/index.html_958754f521f0474b8dc869c68791b23c1b60eb4b22c7c9aa39262124aa7cfb6f" +path = "../build/minified/site/sv/books/learning_bash/07-loops/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_bash/07-loops/index.html_br_ac92b689adb2273ac91887aca274ba206967084c881f64d1eb55b478f2dd640f" +path = "static-publisher/static-content/file3485.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_bash/07-loops/index.html_gzip_91b82c6535b2d9587324f0d01500cdddaaff7b9a27a1dde7213b1b59d3a6e7e0" +path = "static-publisher/static-content/file3485.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_bash/08-check-your-knowledge/index.html_36e7c45d891cfac25483e03ac90937e99f97697499752219fc69f048635bfa8c" +path = "../build/minified/site/sv/books/learning_bash/08-check-your-knowledge/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_bash/08-check-your-knowledge/index.html_br_ad9a9c563baa8972bbadcfafaa66f8b068819deeefc2881b8267f55029a0c6e2" +path = "static-publisher/static-content/file3486.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_bash/08-check-your-knowledge/index.html_gzip_94145fd6b8b4b89b48a9e995e80a43c8c2cdd4a0158d419dde95c3c8398881c0" +path = "static-publisher/static-content/file3486.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_bash/appendix/02-variables-logs/index.html_c2086ac0e5c0f4eaf5c8b1d404e97479e8f549d0bf5a9a4318a5c263910d053a" +path = "../build/minified/site/sv/books/learning_bash/appendix/02-variables-logs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_bash/appendix/02-variables-logs/index.html_br_57c78efd8d5e8cf358bacce373adc1ef3cf2648531b42111248067035135a496" +path = "static-publisher/static-content/file3487.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_bash/appendix/02-variables-logs/index.html_gzip_8772d2a6632f305a6d2f4f6b8c31f7171696fc2124c964445953291aa81535b3" +path = "static-publisher/static-content/file3487.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_rsync/01_rsync_overview/index.html_11bab925682a36b10e24abb2b8a32add24c9359f42ccc2b1e9431b04d6172864" +path = "../build/minified/site/sv/books/learning_rsync/01_rsync_overview/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_rsync/01_rsync_overview/index.html_br_6a1356b8cb7a013fcfde6a2e73450fa7e922b85b847c0e03517cce825048fc2d" +path = "static-publisher/static-content/file3488.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_rsync/01_rsync_overview/index.html_gzip_eb793299dd9ce6fe9ef01f7abefd820960d63ee36dfde2e9782bc53f42badedc" +path = "static-publisher/static-content/file3488.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_rsync/02_rsync_demo01/index.html_1c24fb7e4e9e8c3c27a58cf5c3950b25507f3541ae17efaa711b2edbbf1fe212" +path = "../build/minified/site/sv/books/learning_rsync/02_rsync_demo01/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_rsync/02_rsync_demo01/index.html_br_bffb5be6b875a12a3a23b2fa6050442e02d597dd7e36ad17c4470b4779c65574" +path = "static-publisher/static-content/file3489.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_rsync/02_rsync_demo01/index.html_gzip_ad4d96cbdcf32814bc2f7e6f105185094b76fc0b3b83bcc86cceef015b1de00e" +path = "static-publisher/static-content/file3489.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_rsync/03_rsync_demo02/index.html_3c775ba111772e034112316376977e058d6dbe2e8c992506477ee6456682e699" +path = "../build/minified/site/sv/books/learning_rsync/03_rsync_demo02/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_rsync/03_rsync_demo02/index.html_br_81243ba883839f2c76c44104c1b3985e8329d28693e2d75d7604a0d213b5ed19" +path = "static-publisher/static-content/file3490.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_rsync/03_rsync_demo02/index.html_gzip_04f3fa1393e668ecb80d80101b1a0cde4fbc2bb1f2793fa41e5012332b24c375" +path = "static-publisher/static-content/file3490.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_rsync/04_rsync_configure/index.html_8e9ce60f752b2e4ea1442243eb7afd85aa1d91a4dd255a856444361b0b58acaa" +path = "../build/minified/site/sv/books/learning_rsync/04_rsync_configure/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_rsync/04_rsync_configure/index.html_br_366640072a1afd047798884fd9fe01430a98ef9f561b1cbacf40a6ba32606f74" +path = "static-publisher/static-content/file3491.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_rsync/04_rsync_configure/index.html_gzip_4680f7f21d4715f58eb95f03a86ff9551239052c54ff19f98bd5b77c8440d9c7" +path = "static-publisher/static-content/file3491.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_rsync/05_rsync_authentication-free_login/index.html_62712c7b5e0da4ed92d0e805a7b80fb025832c9e29be41d78471f15435378432" +path = "../build/minified/site/sv/books/learning_rsync/05_rsync_authentication-free_login/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_rsync/05_rsync_authentication-free_login/index.html_br_4e5a3521bd5d6eae3d2dbe2966f64f707b9af999663f7a36ada4ce0a63378844" +path = "static-publisher/static-content/file3492.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_rsync/05_rsync_authentication-free_login/index.html_gzip_1e995a7eaeedecf1c77121b8827b76efd9c45f813c903cd3bb81077cffa1256f" +path = "static-publisher/static-content/file3492.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_rsync/06_rsync_inotify/index.html_4e5d0deec18bbb7b936aec392fd1c26bee4efeda341031dea878712199d9570b" +path = "../build/minified/site/sv/books/learning_rsync/06_rsync_inotify/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_rsync/06_rsync_inotify/index.html_br_8c8e8561129860ac2842a694ff5ead19a52e512ec9a1d40a589f17c631b2f084" +path = "static-publisher/static-content/file3493.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_rsync/06_rsync_inotify/index.html_gzip_11de49b3ac6dbce9e8ca38195bb83a9a42a91c044b8ccfc2aafa0ccacf4d6e8b" +path = "static-publisher/static-content/file3493.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_rsync/07_rsync_unison_use/index.html_1147966486c62eab7b8a7bd28a47b00655667f8e2f73417e2541f9ed76c1afce" +path = "../build/minified/site/sv/books/learning_rsync/07_rsync_unison_use/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_rsync/07_rsync_unison_use/index.html_br_16ae79f5d3b96221d70a86219c168acd79e63fa13a06f67585d3e1f72cdd7016" +path = "static-publisher/static-content/file3494.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/learning_rsync/07_rsync_unison_use/index.html_gzip_240a90a33830ab72374d4547cd5ac45072d85bc8cc8c9310197f50d03c1618f6" +path = "static-publisher/static-content/file3494.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/licence/index.html_bfa9e18e3616dcf5480a12c827767dcab7ed668f35a40ad2fd5794c696755ecb" +path = "../build/minified/site/sv/books/licence/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/licence/index.html_br_2547b2f113b1fe72a9dbed820dd33dd4485c2d3e763841a67218b5d9cc75ea3b" +path = "static-publisher/static-content/file3495.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/licence/index.html_gzip_c8518be426d2c0bf97576b2fd2d6919dd192832cc09ff8273150da2f231b9b60" +path = "static-publisher/static-content/file3495.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/lxd_server/00-toc/index.html_e81e431bef517d1230e5c29e4b3bd7bb8ea8f92b17720b8b71f00a50e7fc634f" +path = "../build/minified/site/sv/books/lxd_server/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/lxd_server/00-toc/index.html_br_6753f79421c3acc5bbcf1bdd3594de53436206663034e85fadb2305f6b621a07" +path = "static-publisher/static-content/file3496.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/lxd_server/00-toc/index.html_gzip_c489fb278a4f873cf069a33ee73eba0b9009977b9f31a5a19aec51c787f6582b" +path = "static-publisher/static-content/file3496.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/lxd_server/01-install/index.html_8d5a11f0d74e3569483596faab6b119f9fd5199e545ff01a5dec19891c51dd22" +path = "../build/minified/site/sv/books/lxd_server/01-install/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/lxd_server/01-install/index.html_br_e69b2faeaed94e92b7ef80b5816c54dd2c400212fc4bea8ea7a4c7fe16361f2e" +path = "static-publisher/static-content/file3497.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/lxd_server/01-install/index.html_gzip_01a5276573f9709340c518c6211d91c5fd3039fbf12283c35da1e884ba397955" +path = "static-publisher/static-content/file3497.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/lxd_server/02-zfs_setup/index.html_7b754df505db3ecbf6c2e581104dc4c8a88682b0f53af1cb9a21965263989634" +path = "../build/minified/site/sv/books/lxd_server/02-zfs_setup/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/lxd_server/02-zfs_setup/index.html_br_512e6db4bdbb83ea3774e46e75de62002fb771424dc840bcbcce8b5b7f97f11f" +path = "static-publisher/static-content/file3498.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/lxd_server/02-zfs_setup/index.html_gzip_14299f03a7661af49b9053451e18e552284c15aae26a75b92ae5d7dbe9a03cd5" +path = "static-publisher/static-content/file3498.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/lxd_server/03-lxdinit/index.html_0bd859210b146c98e6928bd7151956bc219eacaf7acf965e7f68ad212f84d0c0" +path = "../build/minified/site/sv/books/lxd_server/03-lxdinit/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/lxd_server/03-lxdinit/index.html_br_1d783df4554cbd49dff8703c2d1c8fdb08fc1edb81d7b844e444df48aeabb51e" +path = "static-publisher/static-content/file3499.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/lxd_server/03-lxdinit/index.html_gzip_00476be16638a3111597bb0783f4938413ce9791ab61844ce0a91decd7e4064e" +path = "static-publisher/static-content/file3499.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/lxd_server/04-firewall/index.html_9d22b848618db7f277682a39c90c6c92c428abfc4ffdac39ca6be74710636926" +path = "../build/minified/site/sv/books/lxd_server/04-firewall/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/lxd_server/04-firewall/index.html_br_88af97ec31a4d09e04d736a9c36f8faf9027bc6f7f75e6a9dc452a0e140f2839" +path = "static-publisher/static-content/file3500.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/lxd_server/04-firewall/index.html_gzip_3e634e0dec703733d39b7cfed8b7671a0d22d8265a560b0c57629242cce66325" +path = "static-publisher/static-content/file3500.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/lxd_server/05-lxd_images/index.html_ff86d2794b90d2bb257a7ae857b9be0592fe25c44c53b1c855915408523eaa50" +path = "../build/minified/site/sv/books/lxd_server/05-lxd_images/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/lxd_server/05-lxd_images/index.html_br_afdaae4635fa2292be9dc003c61efdd3e77ab2c32909fa9d0fc5250090202eb3" +path = "static-publisher/static-content/file3501.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/lxd_server/05-lxd_images/index.html_gzip_1475a2ac8d427744da064eb3cbe593a04b9fffadfc6b40c15fd1ec6bc477fd27" +path = "static-publisher/static-content/file3501.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/lxd_server/06-profiles/index.html_950ac74ee9acc320f627ece233c82b061803afc991fa9537993c73708b19a66e" +path = "../build/minified/site/sv/books/lxd_server/06-profiles/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/lxd_server/06-profiles/index.html_br_882a697b8547ceb7a290244a0aa62f170f90b87d3481aa8f32b41458eb7d488e" +path = "static-publisher/static-content/file3502.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/lxd_server/06-profiles/index.html_gzip_c54e53dc275332456e71563eaa550e8e0e6e0f18e303ac16efedf66ee5dd4b95" +path = "static-publisher/static-content/file3502.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/lxd_server/07-configurations/index.html_5981df4c33be8b18debd277cbe94d621d53f61e29000fd1325230b81cd6112ba" +path = "../build/minified/site/sv/books/lxd_server/07-configurations/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/lxd_server/07-configurations/index.html_br_7a7074f2dbac2cb831c17452b4f1475412094ab0d71791b5a6cef81b03525173" +path = "static-publisher/static-content/file3503.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/lxd_server/07-configurations/index.html_gzip_2b6801ca5de42482eb39188480315de59e5ccdb7f7cdcb334c5d54edebbcca1e" +path = "static-publisher/static-content/file3503.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/lxd_server/08-snapshots/index.html_7ca04a0b94fb3f8374cfa27abedc85922acd5ffbb7c3fa0b47eec71514142682" +path = "../build/minified/site/sv/books/lxd_server/08-snapshots/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/lxd_server/08-snapshots/index.html_br_ad6fca6d52cc6d8cf04a338312cdeeb4ac9c5e7342cdabad65ac4fd92bf639ec" +path = "static-publisher/static-content/file3504.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/lxd_server/08-snapshots/index.html_gzip_a815b8ca0808a8a7947c26465510ae652c661777bd10196c47a8c4173abb8c58" +path = "static-publisher/static-content/file3504.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/lxd_server/09-snapshot_server/index.html_20f246268f9e09102a2f2e1d85b93749b10d0945208993c2117ce26b6bade323" +path = "../build/minified/site/sv/books/lxd_server/09-snapshot_server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/lxd_server/09-snapshot_server/index.html_br_947b817e323061fd0767d4c3677395248571bb64be08626387b7c89cff66f812" +path = "static-publisher/static-content/file3505.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/lxd_server/09-snapshot_server/index.html_gzip_a63ef8b024bfe6ebfd499f47a011d7a53fc66d1f7b150676aab84e4e4b3cf0b1" +path = "static-publisher/static-content/file3505.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/lxd_server/10-automating/index.html_c059b8dcd0d0e3ebd088c3635353aa7128b26bd0fed1a8c82e5105643f7c5f2f" +path = "../build/minified/site/sv/books/lxd_server/10-automating/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/lxd_server/10-automating/index.html_br_47019745ec5c26ce55aab74985a126e57ed0e52ca36a9a6158661b4c0949219f" +path = "static-publisher/static-content/file3506.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/lxd_server/10-automating/index.html_gzip_d33a1f7b1e2d828342a87492fd7a959d1527882f6b0dda2e91af40b6bef0a5fa" +path = "static-publisher/static-content/file3506.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/lxd_server/30-appendix_a/index.html_5c0a624e1638772e885cb4f93ca1c894093162c17a8f0cfc2224f37c14215934" +path = "../build/minified/site/sv/books/lxd_server/30-appendix_a/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/lxd_server/30-appendix_a/index.html_br_4c25999199b8771a94bf31a66d579601f970114bd08025e969089a61f0d314ed" +path = "static-publisher/static-content/file3507.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/lxd_server/30-appendix_a/index.html_gzip_bb9dc3e40dad147415a33ed50f440b672270a0107d958d598e5e4607dcd7cccf" +path = "static-publisher/static-content/file3507.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/nvchad/additional_software/index.html_946b632b6f80829ffae49d838b32707f22f95b4175b5abcb4f044202dd381d25" +path = "../build/minified/site/sv/books/nvchad/additional_software/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/nvchad/additional_software/index.html_br_5bc33cf8a4114a025aa620d5fe77c75c56a347567ab544fba8b17c4ef0b0401f" +path = "static-publisher/static-content/file3508.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/nvchad/additional_software/index.html_gzip_6208cd9808be13831778a3ab93e5585e2b318803f52fefa2526c732543aa65ac" +path = "static-publisher/static-content/file3508.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/nvchad/index.html_ac586005e4e172d5cf87fd93cd372cc9691cc97b95405cfe4251636c1a5751ea" +path = "../build/minified/site/sv/books/nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/nvchad/index.html_br_b07fdd3ced303fc184ee98a271f36ed71b10791710e32573bc6080ecf2fb1a8f" +path = "static-publisher/static-content/file3509.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/nvchad/index.html_gzip_ecfe80cfb46d45f7d34e8d3e0772321fb3afc89ac245f70fd91f6dec2fe115bf" +path = "static-publisher/static-content/file3509.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/nvchad/install_nvchad/index.html_1e28c89391365c46e8f346b77d5c29d37bd83075c056fd2e6bee156cce8c54bd" +path = "../build/minified/site/sv/books/nvchad/install_nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/nvchad/install_nvchad/index.html_br_32c8138fb24f398b0e98ff6b8ddfd6be8b25cd671e1e88eb302da3ea1aaef52a" +path = "static-publisher/static-content/file3510.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/nvchad/install_nvchad/index.html_gzip_4c5c4a16b474335eb7d5d4af9fed4307de4f626b35a41a0a68e63d70cc915153" +path = "static-publisher/static-content/file3510.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/nvchad/install_nvim/index.html_c000f39be395db67cb74c7727fab16922d5f65e27164a47eb92260e454ee70a7" +path = "../build/minified/site/sv/books/nvchad/install_nvim/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/nvchad/install_nvim/index.html_br_276f6ed5473edb79dd7ee2f82ee2b5f5587099282e66d7de2b46a43b2203d130" +path = "static-publisher/static-content/file3511.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/nvchad/install_nvim/index.html_gzip_c63a918e1ef270d4c4021ae12937fc3471d3df79875b91aa4170ac13dab819a7" +path = "static-publisher/static-content/file3511.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/nvchad/marksman/index.html_9fede81e6c782282843a48937a79bf907249bc83d6cc8d60f30ef02ceedd4922" +path = "../build/minified/site/sv/books/nvchad/marksman/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/nvchad/marksman/index.html_br_544856c70670b7e89afc96767cc5cdb7660eec8ba68dbc5443f67d6515d1836d" +path = "static-publisher/static-content/file3512.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/nvchad/marksman/index.html_gzip_cf1930150565f359b0306c3569a6e7bfa33e0d49fb26b5f0335f23f6a3438bc7" +path = "static-publisher/static-content/file3512.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/nvchad/nerd_fonts/index.html_8e22f5bb9e8734e0e02fc728c0b2ed630cfa8c81fa903a631a67db0addfd511a" +path = "../build/minified/site/sv/books/nvchad/nerd_fonts/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/nvchad/nerd_fonts/index.html_br_a5c38d5164b4e1e34ff1a8f3272cd78e3f8f1ba6d6ab719ff12f034548c8019d" +path = "static-publisher/static-content/file3513.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/nvchad/nerd_fonts/index.html_gzip_04c125b6458976de6975e3afc21138d1e223862f4bdaa731bce68a023484b9d7" +path = "static-publisher/static-content/file3513.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/nvchad/nvchad_ui/builtin_plugins/index.html_a1d7bb1322283094e539367b05cadcd661b254c1c0da9cc0d2a7ab9a088a67f4" +path = "../build/minified/site/sv/books/nvchad/nvchad_ui/builtin_plugins/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/nvchad/nvchad_ui/builtin_plugins/index.html_br_9f9cf601ee316852ffe47291106689e2e76f7f91608946dc82b10561d08eb3ff" +path = "static-publisher/static-content/file3514.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/nvchad/nvchad_ui/builtin_plugins/index.html_gzip_9528ab4ed7c61104fbeca6dc13896788befbefd935f15b554b2016bf400d9d9a" +path = "static-publisher/static-content/file3514.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/nvchad/nvchad_ui/nvchad_ui/index.html_ca0026ab65026337787689be7743df66888a0f504d80861043495aa59e72ed63" +path = "../build/minified/site/sv/books/nvchad/nvchad_ui/nvchad_ui/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/nvchad/nvchad_ui/nvchad_ui/index.html_br_90c845031a00ffcfd295459d5e92f8c0dfffb60c544aabfb661432fa4fb8a34f" +path = "static-publisher/static-content/file3515.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/nvchad/nvchad_ui/nvchad_ui/index.html_gzip_3338bc4cfa829845840c100a837511baf625156a621e0153f29f896ecb6b7f43" +path = "static-publisher/static-content/file3515.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/nvchad/nvchad_ui/nvimtree/index.html_92e8f80329c127bcea77a58e87b5fd2ab0f7fffce1430ab0e6229039ffc15396" +path = "../build/minified/site/sv/books/nvchad/nvchad_ui/nvimtree/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/nvchad/nvchad_ui/nvimtree/index.html_br_30d018b9a0ecc7b8ca09fab355775a43c327f9592cce8c098262cff321786c66" +path = "static-publisher/static-content/file3516.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/nvchad/nvchad_ui/nvimtree/index.html_gzip_22eda9120e89c5f9879c69e6d35d896f6d47869fc187be2e111581972e24dbfe" +path = "static-publisher/static-content/file3516.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/nvchad/nvchad_ui/plugins_manager/index.html_f05cb1b34f264b59ed504c03489f8dfd30562746f246a9a1139ab19ce3806a3e" +path = "../build/minified/site/sv/books/nvchad/nvchad_ui/plugins_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/nvchad/nvchad_ui/plugins_manager/index.html_br_a485d0420e59cb2b27408521b43cabe9682a4dd880864fd2d0044cf7f42e5eed" +path = "static-publisher/static-content/file3517.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/nvchad/nvchad_ui/plugins_manager/index.html_gzip_fd2f301c42744b3566d9c02818ab6d4d92c54616d9a95c511cc0a3b798d0ae89" +path = "static-publisher/static-content/file3517.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/nvchad/nvchad_ui/using_nvchad/index.html_daa6cd70a84acbf544e93c3ba16862528a7205743ba12f5ea320154d44afd31e" +path = "../build/minified/site/sv/books/nvchad/nvchad_ui/using_nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/nvchad/nvchad_ui/using_nvchad/index.html_br_c0fc237bf637985e280b7cfc903dffc2a1f394336854798212544e6b31c0992e" +path = "static-publisher/static-content/file3518.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/nvchad/nvchad_ui/using_nvchad/index.html_gzip_596905a9e3bafc53221027d5b0421e044fc5cc07713ec2692cd3fb10ca2d5afc" +path = "static-publisher/static-content/file3518.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/nvchad/plugins/index.html_0fd9813d590e6dc75cca9f35001fad9293ee3b55db0c126b92bf0f7dc80f3616" +path = "../build/minified/site/sv/books/nvchad/plugins/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/nvchad/plugins/index.html_br_f40987f98cb6874efdcd2cbd08ed34da42a23fc008d46b888aeb534b5dad8252" +path = "static-publisher/static-content/file3519.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/nvchad/plugins/index.html_gzip_4f61836b29c8b1d81eb26f956c81a34a05a599dd2154c234c0cd73d2baef2418" +path = "static-publisher/static-content/file3519.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/nvchad/plugins/md_preview/index.html_1ea0f42c4a7f05194099ee6a07fa0c8b123c1af173a921f483eda3d77a361afe" +path = "../build/minified/site/sv/books/nvchad/plugins/md_preview/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/nvchad/plugins/md_preview/index.html_br_836c73e12d3b36efbae0a56d1223df093481a19ac7c481de0c84d51d1c3b5001" +path = "static-publisher/static-content/file3520.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/nvchad/plugins/md_preview/index.html_gzip_2600b7d7ffd8db4efe73642a1b1976c7e95ef7348ed2ae357d3c85f271c93f93" +path = "static-publisher/static-content/file3520.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/nvchad/plugins/projectmgr/index.html_38c6c541f7d614e26c703571022dc611ef72d9d2ce3b2a96e93ad415e3618777" +path = "../build/minified/site/sv/books/nvchad/plugins/projectmgr/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/nvchad/plugins/projectmgr/index.html_br_190a7765ffeebccdd9ac9e686f4aa36a54f5cddc7e29a272efb5ddf4d1c376fc" +path = "static-publisher/static-content/file3521.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/nvchad/plugins/projectmgr/index.html_gzip_a39981d84a8672e72282cbdb5606e2c597a30583d5bc83d09457c00b2e17ea2f" +path = "static-publisher/static-content/file3521.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/nvchad/template_chadrc/index.html_38da0fedf37246d0102fbeb4d7b2646489fd3806624057259f3e2a4d059f25ff" +path = "../build/minified/site/sv/books/nvchad/template_chadrc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/nvchad/template_chadrc/index.html_br_1928d93c1ba49f2b2ed1bf6253c00c1a6f5e23a99a40ffa4ce5df8e9cb4be1ff" +path = "static-publisher/static-content/file3522.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/nvchad/template_chadrc/index.html_gzip_1b9004b415e35c3464292c82adb27dcdfd537b35a00c184cecbdc2931b015ee7" +path = "static-publisher/static-content/file3522.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/nvchad/vale_nvchad/index.html_9d0f5bf57386faf327b7511d6b9b51bf9ecebc97e567ee36e059bd49acca26c0" +path = "../build/minified/site/sv/books/nvchad/vale_nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/nvchad/vale_nvchad/index.html_br_07d05efedfb1547d54514d6fde61b6a49aa829e077261bca4f09dc1238f9e4c6" +path = "static-publisher/static-content/file3523.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/nvchad/vale_nvchad/index.html_gzip_f0ac49403813cc64ae94e3a8a6fbf7cf81650a15af16d4488985c1e882eb4c1a" +path = "static-publisher/static-content/file3523.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html_c34dc73f32645080dfd36bd29ebcb54e923728d404f0f1ff523416a7cdb0d105" +path = "../build/minified/site/sv/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html_br_45ecc54b11a5d562e46072aa6b4f64e4f3f87de71657923f2fc236db1bfde78f" +path = "static-publisher/static-content/file3524.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html_gzip_65a223e10bb478f621216a0ae8744df1d40fcec8ee02ba5f14677582f018969c" +path = "static-publisher/static-content/file3524.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/sed_awk_grep/2_grep_command/index.html_9da53ea79b9826ce83c9bd74ad3ae6817e023e32db5622886d10240928979b62" +path = "../build/minified/site/sv/books/sed_awk_grep/2_grep_command/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/sed_awk_grep/2_grep_command/index.html_br_b2a7e5d30e5282f6a204d3b240d4a8130b5ab8cbd1abf8f221bf27cd5d120316" +path = "static-publisher/static-content/file3525.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/sed_awk_grep/2_grep_command/index.html_gzip_50f26c0fe75366e0fd06186218301f4d3f6fbaea9bcf46732b0a227161e68ac1" +path = "static-publisher/static-content/file3525.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/sed_awk_grep/3_sed_command/index.html_94e1b80d652a13a681a439aa4c8121aee86a66971b4f94f55e7c8e5785844909" +path = "../build/minified/site/sv/books/sed_awk_grep/3_sed_command/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/sed_awk_grep/3_sed_command/index.html_br_197a1919b3dff9a6a3f3ce9fcaecd57071bd4d3c6906c9d80595615dd390df95" +path = "static-publisher/static-content/file3526.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/sed_awk_grep/3_sed_command/index.html_gzip_985c7877d61d989f55a667043a00ae42f2ccffa0366105387bba2bb2a9f496e3" +path = "static-publisher/static-content/file3526.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/sed_awk_grep/4_awk_command/index.html_cc736e21bfd534a0929cee4c61359ace87e811e590a842d6d4d41a45ae77de36" +path = "../build/minified/site/sv/books/sed_awk_grep/4_awk_command/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/sed_awk_grep/4_awk_command/index.html_br_9d36dfad5d8a2ddb5f37800facb53a31e7b35aec8ff39607462db7c6de881b8b" +path = "static-publisher/static-content/file3527.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/sed_awk_grep/4_awk_command/index.html_gzip_0c7ab563d41472a7e8863c48ce3ef2a10e73eaa49aebd9a30d6b297547fc2a64" +path = "static-publisher/static-content/file3527.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/sed_awk_grep/index.html_a5c8946bb292f8ed75b76c57b5164c221be0b08aa90a8250f0a9b83b3d43deee" +path = "../build/minified/site/sv/books/sed_awk_grep/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/sed_awk_grep/index.html_br_ff4c7d8779e068fe84d9ca2e3b55288f56b36f2ef10da60e7f539b15d8cf3b54" +path = "static-publisher/static-content/file3528.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/books/sed_awk_grep/index.html_gzip_d034bc6adafc1f30530e2ffe50234d668952356a03d252daf0d8ad99e04aff11" +path = "static-publisher/static-content/file3528.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/containers/docker/index.html_7f0be0d481efa0a8521e12d664083a5c979abaf77f1fb1671db0290b82a9c473" +path = "../build/minified/site/sv/gemstones/containers/docker/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/containers/docker/index.html_br_03fc811ebc356ff1a1e05c633e849d110597a1c9d0997de1ffd7c7ed0abde80c" +path = "static-publisher/static-content/file3529.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/containers/docker/index.html_gzip_f171ee140dba717bb0a084a99aa4646b861b5a90dd992c60200ae199ebd83387" +path = "static-publisher/static-content/file3529.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/containers/podman/index.html_6881ecb1d242b7f047941bc574b4cb988bb512f787b233ca8b57617709379680" +path = "../build/minified/site/sv/gemstones/containers/podman/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/containers/podman/index.html_br_a9158f89143afdcc9dfec27d8e5dc51e8b71154586473467cf364587c71b4850" +path = "static-publisher/static-content/file3530.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/containers/podman/index.html_gzip_134db7e418549b48bf655099b97d96a2d761a0dd268a47fe8fc6c29bfc97f5b4" +path = "static-publisher/static-content/file3530.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/core/view_kernel_conf/index.html_41f6818a3be991ed3d106a1c7cc423256ab04cf959234e582fb174267c75f479" +path = "../build/minified/site/sv/gemstones/core/view_kernel_conf/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/core/view_kernel_conf/index.html_br_6960cdc24980b8218d801b2b9642acab66ba6ba359f5048137499411af0a580b" +path = "static-publisher/static-content/file3531.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/core/view_kernel_conf/index.html_gzip_b832d43aabde5806a7cf79ccb3eb537afe6bcedcdcfb26d8ec4d43623dec3f77" +path = "static-publisher/static-content/file3531.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/dnf-swap/index.html_880763bd49bd2f340baed2ffdd36bdc45b0e9e51f958fc535b7af85e9d5ba9e3" +path = "../build/minified/site/sv/gemstones/dnf-swap/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/dnf-swap/index.html_br_a554b5716b7d188a4626bf28920d72734e7ebab458fb86b43a76163c3ff27554" +path = "static-publisher/static-content/file3532.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/dnf-swap/index.html_gzip_3affd447b51c53d16d69decdead9efe6493fff236fcc375351e7aac4fa1ae657" +path = "static-publisher/static-content/file3532.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/gemstone_template/index.html_3393e55cd25c4fd37e68dac787384d03207fb7e8b1f82bf961d0afb06784ea51" +path = "../build/minified/site/sv/gemstones/gemstone_template/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/gemstone_template/index.html_br_f0bb18539bd522c7f51d873eab6ee2426cace94008068a74a4d4251ee2f89349" +path = "static-publisher/static-content/file3533.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/gemstone_template/index.html_gzip_853fdf44098fe5011cb83a82d8fbdedb94576406b7ec33838dc183f7a1e54087" +path = "static-publisher/static-content/file3533.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/git/00-gh_cli_installation/index.html_d42c5893182d07bd1e88556356a71705cf8fd9e34461bc05d3a088c413c84797" +path = "../build/minified/site/sv/gemstones/git/00-gh_cli_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/git/00-gh_cli_installation/index.html_br_9274219277ee33b59aa9b69a52448c5307e0ca4e06f78eb612bd9ac321059c57" +path = "static-publisher/static-content/file3534.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/git/00-gh_cli_installation/index.html_gzip_834ff318016f8210b5b9e39d312947fd0e1e88195b25404e5c878f2f0e1c1e35" +path = "static-publisher/static-content/file3534.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/git/01-gh_cli_1st_pr/index.html_090cd9cdb4cb7617561f91a2a527ac5298c1ca90dbc9ed0b8cfff9b1642e5c27" +path = "../build/minified/site/sv/gemstones/git/01-gh_cli_1st_pr/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/git/01-gh_cli_1st_pr/index.html_br_33e7caa67b7a7108322064fd93a23684f53090124a99d48c0d80e9ea8d031ed5" +path = "static-publisher/static-content/file3535.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/git/01-gh_cli_1st_pr/index.html_gzip_9177a4c9378af5427acc2d41f2d7385a56e02e438e573aaf6e94e76f24197fd0" +path = "static-publisher/static-content/file3535.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/git/02-gh_cli_edit_pr_title/index.html_ce3ada7b3f31143bec9e129235555d01b64d8d3b88c35aff7a673c6692de10cf" +path = "../build/minified/site/sv/gemstones/git/02-gh_cli_edit_pr_title/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/git/02-gh_cli_edit_pr_title/index.html_br_c0f11500cfeb1a2bd56f27e60725d7552353adda33748db07dc98f1b542d8b3c" +path = "static-publisher/static-content/file3536.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/git/02-gh_cli_edit_pr_title/index.html_gzip_b06ac11a4c00a8caaf8e9514a7018b39553ac1cacb8065e91c84092284b0c878" +path = "static-publisher/static-content/file3536.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/git/02_github_web_edit_pr_title/index.html_907e2b3065ba8a8ca655eedfa268129fa0c6e69ea5a67154241c3f22e661dd85" +path = "../build/minified/site/sv/gemstones/git/02_github_web_edit_pr_title/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/git/02_github_web_edit_pr_title/index.html_br_c7b282ea0e39db1f64b7de9d4b61553d1535ab0f2540dc37a452061c63cd8208" +path = "static-publisher/static-content/file3537.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/git/02_github_web_edit_pr_title/index.html_gzip_aa467998f5bc47a4e84d352934c46a14971db81d1fa9d8b36e50ed77769669b7" +path = "static-publisher/static-content/file3537.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/git/feature_branch_workflow/index.html_af4b4883959ef7150e880f9959cdbb6d33c936844984db4c745389a20c383dbc" +path = "../build/minified/site/sv/gemstones/git/feature_branch_workflow/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/git/feature_branch_workflow/index.html_br_82b1e918a654ab5f49b72f7793cfd38f7874eb9f668ef93c1cfca58900d0489f" +path = "static-publisher/static-content/file3538.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/git/feature_branch_workflow/index.html_gzip_9d86011486ba38d155106923ed7fc2dcc749fd45f4dd9f015ceea3e53165494f" +path = "static-publisher/static-content/file3538.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/git/fork_and_branch_workflow/index.html_206898a6f4b886bce0da6ecb208f4444e34c759d8332125b38ae765670223716" +path = "../build/minified/site/sv/gemstones/git/fork_and_branch_workflow/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/git/fork_and_branch_workflow/index.html_br_f6337e29ffdf65b4bd36638bcabac7479193232039283ac6df68298fb3804008" +path = "static-publisher/static-content/file3539.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/git/fork_and_branch_workflow/index.html_gzip_b759a16257d9bc377b1a0df63644ec666110858f5cb61242d47a525266644e2b" +path = "static-publisher/static-content/file3539.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/git/git_pull_vs_git_fetch/index.html_dd4fc4ca4bd106e09a5aa780f3c0aad75ff581beaf9b4063f2ab4a682a9f1dcb" +path = "../build/minified/site/sv/gemstones/git/git_pull_vs_git_fetch/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/git/git_pull_vs_git_fetch/index.html_br_71df2cfcaf98c8789cb38d712fdee1f9e39fc2476b8bf6c160529757c98d4ca9" +path = "static-publisher/static-content/file3540.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/git/git_pull_vs_git_fetch/index.html_gzip_8b4ab5384324932f1fb49a2f96febbc007e641c07bf35fd588596755e6ae3f57" +path = "static-publisher/static-content/file3540.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/git/git_remote_add/index.html_da7116d5462d0cfba2dce6284815f040822e12ce1713ef488812b98ddf0a5ff1" +path = "../build/minified/site/sv/gemstones/git/git_remote_add/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/git/git_remote_add/index.html_br_33f5b7a98543a3d5fbf563380fea367e4358e8e588b7abed34e56bc423a8d440" +path = "static-publisher/static-content/file3541.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/git/git_remote_add/index.html_gzip_04d4872258bd2f3acf54f35373f996c5d81238868f705ef6b1632899a05935ce" +path = "static-publisher/static-content/file3541.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/git/tracking_and_nontracking_branch/index.html_9461f3192c4514e8a83e5ebb28837ebb8ac7ef0252f0417b3d83e58c7bce862f" +path = "../build/minified/site/sv/gemstones/git/tracking_and_nontracking_branch/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/git/tracking_and_nontracking_branch/index.html_br_f08da23f4e4bc07c11e66ed30801d40924d72caec429a989775080e6edba4d0d" +path = "static-publisher/static-content/file3542.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/git/tracking_and_nontracking_branch/index.html_gzip_2c54337df277108ec6f5f77025beeeb4c9b41ffed1996950bcefb9df9d93042c" +path = "static-publisher/static-content/file3542.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/htop/index.html_bcd74cd0b4fac7d51709913260ecb8d4dad2b19f624c444c524b4f2c693b9cfa" +path = "../build/minified/site/sv/gemstones/htop/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/htop/index.html_br_e64c46f1e5243050c8f9c772b2255b0821be5e79a5e6cd5a78c654394bfe3b7d" +path = "static-publisher/static-content/file3543.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/htop/index.html_gzip_f564c2a7ea5e00f135b95da652f4fd8b880f4c67d613bb5ad94d1d293281e88b" +path = "static-publisher/static-content/file3543.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/https_rsa_keygen/index.html_7dfe47797aeba886f9b8cf85ba9250f90e301d0ba9aa65a28fc181afa5fa6ae6" +path = "../build/minified/site/sv/gemstones/https_rsa_keygen/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/https_rsa_keygen/index.html_br_b3aa34ce178cfa2d11d9e9f677fb30f22ce73caa42df143ef73e14823b2802b0" +path = "static-publisher/static-content/file3544.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/https_rsa_keygen/index.html_gzip_f36d940838af762af964fc750c922ca1c79e3f3c331e7931ff674ec42e62a41a" +path = "static-publisher/static-content/file3544.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/index.html_836d054d8df12ceec0464e8f043dde6d323d1c77a2b2aeb27e0b7bd56744c384" +path = "../build/minified/site/sv/gemstones/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/index.html_br_2c1d5d303adc1a14ab18957acf65d377f30ab78c2d2fd7d0be38cf11817adeb7" +path = "static-publisher/static-content/file3545.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/index.html_gzip_32335386f993bdaef45c0c49867578632a6f2751e6405d990c7361be3af4615f" +path = "static-publisher/static-content/file3545.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/markdown-demo-v2/index.html_239efe9e813d87e66eae4392475692864e824e8c58c5851b9341d7d12b50f79a" +path = "../build/minified/site/sv/gemstones/markdown-demo-v2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/markdown-demo-v2/index.html_br_af9460af24045d9772f88b6ca646d14dd39cdc970002b42a139a4e50db36d5f7" +path = "static-publisher/static-content/file3546.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/markdown-demo-v2/index.html_gzip_695dee2379860a4404cad24cb88e3295396317faef48316e161f17a5ba4c0384" +path = "static-publisher/static-content/file3546.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/network/RL9_network_manager/index.html_beb2f9046ccb0fb327d112c38f54ee38f9d65943a03d754f521fb8c177cb80a5" +path = "../build/minified/site/sv/gemstones/network/RL9_network_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/network/RL9_network_manager/index.html_br_422376d30e9475d4161e3a9ec4c3fa322fb045a11a9c017fa8a962c7f6c115dc" +path = "static-publisher/static-content/file3547.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/network/RL9_network_manager/index.html_gzip_d14e1b5f6d955156fb45c00b3002ba9aaf3f0980d80d58a48342efc6e7411d45" +path = "static-publisher/static-content/file3547.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/network/iftop/index.html_d2d61878a6bc35a9c753e14fd32b16156f25b08ca3687eeae298ab3303b972a7" +path = "../build/minified/site/sv/gemstones/network/iftop/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/network/iftop/index.html_br_8dc5b3d5ff688a3976aaeaaa60da11b7586b19b14502c03cffa07b7f9d4cd294" +path = "static-publisher/static-content/file3548.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/network/iftop/index.html_gzip_075dc77eea2d846b33239bcc26a69863633d77426cf0c0ef2f6cb0606e0834b6" +path = "static-publisher/static-content/file3548.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/network/mtr/index.html_438794d4a2d3ea0532781a5a13915a16beec5ba220b2a4747daa4ac465783466" +path = "../build/minified/site/sv/gemstones/network/mtr/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/network/mtr/index.html_br_9705063a785e9fc69e132780ccdf863b9060e34c85dd3550259ada65afe794f4" +path = "static-publisher/static-content/file3549.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/network/mtr/index.html_gzip_02c1435864b7124e63c53db52cc3c3ff8124b62c917f27279c8336e960a83c08" +path = "static-publisher/static-content/file3549.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/network/nload/index.html_b9bfb515061eed6e54c0680c139ba3caf63580febf1d094d80c6fb8b16933655" +path = "../build/minified/site/sv/gemstones/network/nload/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/network/nload/index.html_br_cd6936a220341f46820130550fbf4798d29685f5944d3a09918f96d32dbe4af8" +path = "static-publisher/static-content/file3550.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/network/nload/index.html_gzip_acf8dd2e48f7a78c1546c2c4da22e5209fc9bee79256bd4119327a62ae790a3d" +path = "static-publisher/static-content/file3550.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/network/nmcli/index.html_349bcd0038380d0f43f8f699d4a4205810aec0a9b039f8238671260836b2eb08" +path = "../build/minified/site/sv/gemstones/network/nmcli/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/network/nmcli/index.html_br_be61f1783ba92f4adb3449362cd6518d041195cd667373ec79b79e5670f94d86" +path = "static-publisher/static-content/file3551.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/network/nmcli/index.html_gzip_032654a3f9515c04120a0b2ad33b6de09b7442393440a34b02827c6d90cb7c91" +path = "static-publisher/static-content/file3551.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/network/nmtui/index.html_24e422dca61f76e00a1445b7d65d9433d1ddd25281d07ec54e64109cbb4c2acc" +path = "../build/minified/site/sv/gemstones/network/nmtui/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/network/nmtui/index.html_br_6b095f12d54ec0dfd780972dce0fb19ba6f203364c59ef642f9d5a080279bdb8" +path = "static-publisher/static-content/file3552.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/network/nmtui/index.html_gzip_3895ed85ce6108f305bf5620d792ccdebd69f59b3fdebb78167d1f3276d8725b" +path = "static-publisher/static-content/file3552.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/perl_search_replace/index.html_ad2b3960984250fae387116d613963a91b56c3d1ff5fbe1707ee644544f71043" +path = "../build/minified/site/sv/gemstones/perl_search_replace/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/perl_search_replace/index.html_br_01c4e059aee7c4d3204917a394f960e2a2225f6f9edb58a67d9c12dafe00af97" +path = "static-publisher/static-content/file3553.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/perl_search_replace/index.html_gzip_442ecfa70ee94b9efa2b751a4b0e06a6b0975d05cf5bdc5983f777b9172089e7" +path = "static-publisher/static-content/file3553.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/rpaste/index.html_9e82ed9405da1d160f49e5cb7bdf46ffc4df46fb15870240758176d68b39f00d" +path = "../build/minified/site/sv/gemstones/rpaste/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/rpaste/index.html_br_48d8e0fa7a925d01fd793ab0219eb196b6d96da63dc33c4c3cf9d147de083bd1" +path = "static-publisher/static-content/file3554.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/rpaste/index.html_gzip_c3ab99fad57afdafab2c0688fd5af3b049179296fd52e6e4c1f62c65a51dd00f" +path = "static-publisher/static-content/file3554.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/scripts/NoSleep/index.html_22d8f271921111033978b7d2602bb3df45600ee7afb7356dc29b53e5bcabb0c0" +path = "../build/minified/site/sv/gemstones/scripts/NoSleep/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/scripts/NoSleep/index.html_br_3b7e495eb940fcfdc3952b0755a2f8cfc95f7c5ed1c02b6ff0571e13eeec15e2" +path = "static-publisher/static-content/file3555.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/scripts/NoSleep/index.html_gzip_9994ca314d5bef8396e85b975ec7ff6d092a82db8a7860cb9a91465cae755a61" +path = "static-publisher/static-content/file3555.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/scripts/bash_stub/index.html_76b3c696c3b329fc448ac4ced4b203cd9030c54a521a0278a0df5acc09e17b85" +path = "../build/minified/site/sv/gemstones/scripts/bash_stub/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/scripts/bash_stub/index.html_br_9aaff1e309a9d51e65a88dffc6f9f3c79196dbb5140c7a2ddcc8bdc89f13a744" +path = "static-publisher/static-content/file3556.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/scripts/bash_stub/index.html_gzip_10d7b43e067ecd06ecc58c39c614e2fd92c2096f05bd910d3aef44ccf44a92d8" +path = "static-publisher/static-content/file3556.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/sed_search_replace/index.html_6b4c16f7346ad3fde5721a96dfd39caf7d70f9050247350ee82509b34c6f69bd" +path = "../build/minified/site/sv/gemstones/sed_search_replace/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/sed_search_replace/index.html_br_30734dfcf0ff0cc5191c6c496aea25d60caf6ff296231ba0e887a90df507782b" +path = "static-publisher/static-content/file3557.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/sed_search_replace/index.html_gzip_201850b924c0c96910606d674829682605fd14f0f22107dd540c35e780867afb" +path = "static-publisher/static-content/file3557.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/setup_local_repo/index.html_cdbfc265551bb49a89b73d687bde6487589f751e0457eec6425dc4823b3b4a39" +path = "../build/minified/site/sv/gemstones/setup_local_repo/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/setup_local_repo/index.html_br_8bad16553ccb957864b81489a1182732fc5df2e91b6f1b65a3664a1ace6eb7bf" +path = "static-publisher/static-content/file3558.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/setup_local_repo/index.html_gzip_f0e2766bd25fa7f23247697a903f99c8cccbbc47d487be57a42f449e259ee8d7" +path = "static-publisher/static-content/file3558.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/string_color/index.html_f16532dfd28c47edcc9e305437396c80a884d59515550e66f003ec428523e081" +path = "../build/minified/site/sv/gemstones/string_color/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/string_color/index.html_br_85152aac0e3cf4246a96241ab2d8a393cc182a409b9a55acfe5aead5c6dbcf17" +path = "static-publisher/static-content/file3559.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/string_color/index.html_gzip_d8acf2548f3b248ebe8270510f7aff7ccaa2e883ea1f3531e2be974dc26ab278" +path = "static-publisher/static-content/file3559.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/systemd_service_for_python_script/index.html_547fb674dfeacfa3aa67cc1d799f60d0b42d254fe083b4878c3f0c92d381a663" +path = "../build/minified/site/sv/gemstones/systemd_service_for_python_script/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/systemd_service_for_python_script/index.html_br_66b4066458966af55a18631657b073e74ba812a80ae5352cb08621f6f24b099e" +path = "static-publisher/static-content/file3560.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/systemd_service_for_python_script/index.html_gzip_0fa36de69745dabc6bfce6842cbcd328a18f017f83ab412a286e6282699b6dab" +path = "static-publisher/static-content/file3560.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/test_cpu_compat/index.html_3e77a42481b148fe96a1bff77305ee6efcb4c2be702ed02e57785d8cf62dd9c4" +path = "../build/minified/site/sv/gemstones/test_cpu_compat/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/test_cpu_compat/index.html_br_fca55ca6f32a35edb6c9fd33cf5d941925d8bba71ca24f95cfa91a39153dcfe6" +path = "static-publisher/static-content/file3561.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/test_cpu_compat/index.html_gzip_95ea629e2c2805de4d381c88f89e2f9091222d5805ad4a9d0fae2ad3f7606a30" +path = "static-publisher/static-content/file3561.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/torsocks/index.html_f2b43da586cd6acd0297ab471d798d3aeeafe03080814a7c44089a832edb930e" +path = "../build/minified/site/sv/gemstones/torsocks/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/torsocks/index.html_br_9f31044426f157dbcc24f7c1275f666042163c8d47d59b2cdf0f2e243a9f7ddc" +path = "static-publisher/static-content/file3562.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/gemstones/torsocks/index.html_gzip_01167e66b0135f0cc33ae1faa249d9384a4ef6d24ec8197e8a16626f9f986c59" +path = "static-publisher/static-content/file3562.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/8_6_installation/index.html_ba440932e1eabb33373771e4639d00d1a73dcc4cbc742327bb97d443354f7c81" +path = "../build/minified/site/sv/guides/8_6_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/8_6_installation/index.html_br_9ce81e4035d93009ac0f7f31eeb8ea0912f3983fd53e608ab006a9d830ccb97a" +path = "static-publisher/static-content/file3563.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/8_6_installation/index.html_gzip_9bbb58a3ad456370740feafe39d0d5e7c69ebe9a8ec6251a757e6b4705b0903c" +path = "static-publisher/static-content/file3563.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/automation/anacron/index.html_ea1c62d4d4b039b108576279318a594e589abb9cd4116fe2756724954122a0f4" +path = "../build/minified/site/sv/guides/automation/anacron/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/automation/anacron/index.html_br_168c35ad9c40c275d803e64cb904bcc8b6e4b9c89f84d69520e5a37b83f869a7" +path = "static-publisher/static-content/file3564.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/automation/anacron/index.html_gzip_77e71e93ec5adef164a452f16c0116f97ebcd79e522adb588f602ab873cdbb6f" +path = "static-publisher/static-content/file3564.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/automation/cron_jobs_howto/index.html_e1774fe08ed2981784686d7c174e4881457677ba6c897a95b177b7d016c21d19" +path = "../build/minified/site/sv/guides/automation/cron_jobs_howto/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/automation/cron_jobs_howto/index.html_br_5fc3b0f08226b534b48cc6f3fe38f2e9167988f935c12dff3d25f4caedde9a35" +path = "static-publisher/static-content/file3565.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/automation/cron_jobs_howto/index.html_gzip_49c2998758cc66474f84b4aa9a54403577e57bb43858ea59fb455adc6863f772" +path = "static-publisher/static-content/file3565.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/automation/cronie/index.html_82abe0ebab57e7b6fe7a753765ebeecebf57db3ac226d23930923c128dd52057" +path = "../build/minified/site/sv/guides/automation/cronie/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/automation/cronie/index.html_br_038a286fe401cb2431b8daaa6bc8447ce2d614baf826b9aca1bd00237b6363c8" +path = "static-publisher/static-content/file3566.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/automation/cronie/index.html_gzip_b3e8364959486b8517312a75748bb8e57eae60c637874a529c18d73f723b6928" +path = "static-publisher/static-content/file3566.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/automation/olivetin/index.html_08207f5dfd2aab08cd7dfe133f171f2b7780e436cdbcdb7efac4be915031079e" +path = "../build/minified/site/sv/guides/automation/olivetin/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/automation/olivetin/index.html_br_e48fe8501df6477bb11fcb1e72f768ed2c5239eec5b80a51d5e7f2c4b1570bbc" +path = "static-publisher/static-content/file3567.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/automation/olivetin/index.html_gzip_5ddf2bf5653d990f581b03e85a224445099eb405eb08b1937050251253ad6829" +path = "static-publisher/static-content/file3567.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/automation/templates-automation-packer-vsphere/index.html_289c05f381a19fcad5e2c3bc811b6092141dc523f96d0200505d9b98e7b42521" +path = "../build/minified/site/sv/guides/automation/templates-automation-packer-vsphere/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/automation/templates-automation-packer-vsphere/index.html_br_b1cd3debef1f743a9078793ce5cf7465eb3a63e12ab94471d6490f206a88827f" +path = "static-publisher/static-content/file3568.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/automation/templates-automation-packer-vsphere/index.html_gzip_41a048292e063fc9a8edd7b55d194faa530d4e9980d80286505fd2a7aa0a2b95" +path = "static-publisher/static-content/file3568.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/backup/mirroring_lsyncd/index.html_233877c5f46b05fdfbdbdab7c5b0e54f9f109e6e45739ef7bc5914b419dee428" +path = "../build/minified/site/sv/guides/backup/mirroring_lsyncd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/backup/mirroring_lsyncd/index.html_br_e339caca1a9d11092bffd0d83a1da7b98ecd130a213e1524ae86991c4e90baf2" +path = "static-publisher/static-content/file3569.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/backup/mirroring_lsyncd/index.html_gzip_121c83e5a1e9bce7058366ea8f639ed6446e3dc8dfdece1b3db5882d89a83f3f" +path = "static-publisher/static-content/file3569.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/backup/rsnapshot_backup/index.html_e8ad395b95e9dd06cdf9852a7bbf3b33ee91357982186cd254767b81ee4c3099" +path = "../build/minified/site/sv/guides/backup/rsnapshot_backup/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/backup/rsnapshot_backup/index.html_br_c220d1b11a9e2d60ccafd466b6187f51373270a4f2999333391eb1d086505041" +path = "static-publisher/static-content/file3570.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/backup/rsnapshot_backup/index.html_gzip_3467738f9dce434550fd5484b5815c618e38f046319121a2fb8f631140879cd5" +path = "static-publisher/static-content/file3570.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/backup/rsync_ssh/index.html_87bc753ca89a43ef9f332ef86b80d1760fe861ec7b2fb71cd1f96ec79ece6e0a" +path = "../build/minified/site/sv/guides/backup/rsync_ssh/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/backup/rsync_ssh/index.html_br_192ac82fc7da6b7eac9d9fd908dad5aa14afba9807422a14f84eb80add153b97" +path = "static-publisher/static-content/file3571.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/backup/rsync_ssh/index.html_gzip_49bc7363f9c832a87ba6076a16f48c07ce85cfccc2407861dfcb19a5549d4308" +path = "static-publisher/static-content/file3571.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/cms/cloud_server_using_nextcloud/index.html_faf434a3714f0ddcce64a10208e5d159c5b815901d3b4eab82cf2f4eac108120" +path = "../build/minified/site/sv/guides/cms/cloud_server_using_nextcloud/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/cms/cloud_server_using_nextcloud/index.html_br_5c3f1169ca43e90cac66fabc85e2009af4b0916ffcf5bb73c32ee619bc15591a" +path = "static-publisher/static-content/file3572.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/cms/cloud_server_using_nextcloud/index.html_gzip_4a1e1edef463591165ddb056505b28fc5c91176d9e49ec891208f7f16b7bf06c" +path = "static-publisher/static-content/file3572.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/cms/dokuwiki_server/index.html_730a83a73df5c056330b9811e32bf833ae2841b449395d71f9d992c2d17538e4" +path = "../build/minified/site/sv/guides/cms/dokuwiki_server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/cms/dokuwiki_server/index.html_br_ad49a00daecc83c51046d49bc2742d5bd8e97173670c25851a4b23294b9a9699" +path = "static-publisher/static-content/file3573.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/cms/dokuwiki_server/index.html_gzip_a102853b7924711d958db9cd4bbbf8429b4d58efb5ecea799fce65fea42e1c6d" +path = "static-publisher/static-content/file3573.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/communications/asterisk_installation/index.html_8c288e23af767c0a525ead3a8ad51e1354796e3cec78b8c56fcf4d30ded31348" +path = "../build/minified/site/sv/guides/communications/asterisk_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/communications/asterisk_installation/index.html_br_222931b6735c20ddb2414b4934589812019c8070160fa791cc0b890166d53b2d" +path = "static-publisher/static-content/file3574.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/communications/asterisk_installation/index.html_gzip_25cdd7d413498c49a05dc7899aa3177e8948456b1be8e6da94f74f4013195ffb" +path = "static-publisher/static-content/file3574.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/containers/lxd_web_servers/index.html_6f92cff27fc8d3c58cf2de24e31ee185930640ba0ca5a1da9f566c7bf134fcf2" +path = "../build/minified/site/sv/guides/containers/lxd_web_servers/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/containers/lxd_web_servers/index.html_br_feea22dadbb55cc7b8467e6488254fbef4a159f9d509fdfbd68613b50a7fe902" +path = "static-publisher/static-content/file3575.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/containers/lxd_web_servers/index.html_gzip_5c47a34ea91fba4a2d0ca1fe9e157d2a274de589e5df1e9d996e440bfc58ac37" +path = "static-publisher/static-content/file3575.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/containers/podman-nextcloud/index.html_5cc4dd2785bd85c324bc373290b2ab14bca5071043e77fd1d94cfbfa43064c13" +path = "../build/minified/site/sv/guides/containers/podman-nextcloud/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/containers/podman-nextcloud/index.html_br_0805830d3265c46498fcc5d5a0644ebc787e0f0bb51d300f3820520e5bb645eb" +path = "static-publisher/static-content/file3576.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/containers/podman-nextcloud/index.html_gzip_ebc0f9511bfefa7ba09b0a604c895077a0a61edfa6c32cac5c289d14cbffdcd9" +path = "static-publisher/static-content/file3576.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/containers/rancher_and_kubernetes/index.html_79d44251dba8df1c7a7916a809dcb576f6944861c6dfeda63da30cb54518878f" +path = "../build/minified/site/sv/guides/containers/rancher_and_kubernetes/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/containers/rancher_and_kubernetes/index.html_br_41b8c740c4f2c9d8c489acf9a30208ce3e98fb11ebb02b9e10273951b9518174" +path = "static-publisher/static-content/file3577.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/containers/rancher_and_kubernetes/index.html_gzip_b8f5506288e0ab05c8e1daef79b68312468865415fe7421f30e6d470c47269e3" +path = "static-publisher/static-content/file3577.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/contribute/beginners/index.html_3508add17d6c2d5714fa60976f079554eb57bd4ced8432403ff8801f6928b320" +path = "../build/minified/site/sv/guides/contribute/beginners/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/contribute/beginners/index.html_br_30b9cb52da73d46439322c51d999228e66dc0a906d7bc1a919135a7ca8e52263" +path = "static-publisher/static-content/file3578.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/contribute/beginners/index.html_gzip_27f243d67a5c7d66c74a08568d09d4f2f968395eb218abb9af69bd9ddd887ef1" +path = "static-publisher/static-content/file3578.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/contribute/createnew/index.html_91702da2219a17b5e18ddfae122f55057ac508321c65fbbefdefd9b26ebb92d6" +path = "../build/minified/site/sv/guides/contribute/createnew/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/contribute/createnew/index.html_br_6d03af6e3522f4f1fe6fd92a3ab404c66430bea7eb4917a0ae4bc0496a8f7230" +path = "static-publisher/static-content/file3579.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/contribute/createnew/index.html_gzip_553c35ae87ea8bedc588ce14173177e1f486a87c18af3d38c054abe67089d539" +path = "static-publisher/static-content/file3579.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/contribute/index.html_c94292bd200e70c9f9bdbd7338c82edc504c84caabac02a7209d17a0d6abea0b" +path = "../build/minified/site/sv/guides/contribute/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/contribute/index.html_br_ef90026edd739f56fd91e85deb8c6e89bf51078bc9eebf06f8ce5796aedaaa70" +path = "static-publisher/static-content/file3580.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/contribute/index.html_gzip_d8fb4217a4cbbb80f56c202bdad16a11400499080f8e6e38a3afc0d0fa0425ff" +path = "static-publisher/static-content/file3580.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/contribute/localdocs/index.html_1cf385e56dd03ffb13cd9e0be684ff6f858907d048b21ede21bdc252413121a6" +path = "../build/minified/site/sv/guides/contribute/localdocs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/contribute/localdocs/index.html_br_497c7e77644e85b887f2ce304baf7eaa401cb66e033e04f93961027869040b33" +path = "static-publisher/static-content/file3581.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/contribute/localdocs/index.html_gzip_a5678941fc102de676d9bafd3ff5b1a7862bbcbec33da6e0034595df6232a1c6" +path = "static-publisher/static-content/file3581.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/contribute/localdocs/local_docs/index.html_394b8463a9fdce6bb41645e5d0fb0fcaf7e667c6484890b3a5490f4b23e5021b" +path = "../build/minified/site/sv/guides/contribute/localdocs/local_docs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/contribute/localdocs/local_docs/index.html_br_3a1c950f8e12fa75588a4db3c51c37267473a479e7d0aa615f460debd1e3a223" +path = "static-publisher/static-content/file3582.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/contribute/localdocs/local_docs/index.html_gzip_19d4e4624cf6a4ff79770565ce02b569bcabcdf8847db5396b9bb71bdf7d87d1" +path = "static-publisher/static-content/file3582.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/contribute/localdocs/mkdocs_lsyncd/index.html_1928644882fa12a965feee0d78508fb0dcbd981d684d04449266c378bc52774e" +path = "../build/minified/site/sv/guides/contribute/localdocs/mkdocs_lsyncd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/contribute/localdocs/mkdocs_lsyncd/index.html_br_92b71b4719ad6a92ad5826789dd4f36286b63b98d1c6674465177f3ba8d3b6f4" +path = "static-publisher/static-content/file3583.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/contribute/localdocs/mkdocs_lsyncd/index.html_gzip_7b63eca53fe2ee1c12b0fef35c2923fcfbb76b0323dda8819701b7a1563e80bc" +path = "static-publisher/static-content/file3583.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/contribute/localdocs/mkdocs_venv/index.html_e4c1cf3b022c7e7e73d65927d5f397aa65a30a9581fa35a510d8fe749244ce5a" +path = "../build/minified/site/sv/guides/contribute/localdocs/mkdocs_venv/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/contribute/localdocs/mkdocs_venv/index.html_br_767509a3aaf0690c1ba2709e18542a4f4393d5fa6f74036e41f143c29aa0003b" +path = "static-publisher/static-content/file3584.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/contribute/localdocs/mkdocs_venv/index.html_gzip_68118c8c93c5388925fcfd2abfa420871a04376b42b2503bf8f8e283bf5c3aff" +path = "static-publisher/static-content/file3584.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/contribute/localdocs/rockydocs_web_dev/index.html_b674588d289d905c3fcfc667fe3e91c04094cb0e811f8263d53b1cfa13885bf6" +path = "../build/minified/site/sv/guides/contribute/localdocs/rockydocs_web_dev/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/contribute/localdocs/rockydocs_web_dev/index.html_br_bbb9e9496fd0909bfab7ec5bce62cc9d58a27ed3e6aa7a0877957b96a707a606" +path = "static-publisher/static-content/file3585.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/contribute/localdocs/rockydocs_web_dev/index.html_gzip_af0c1ddf430d6085d35a651811683e7de2ed5e18db3e196e30e1bf485357d42b" +path = "static-publisher/static-content/file3585.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/contribute/localdocs/rockydocs_webdev_v2/index.html_50b21ac53898b2897d5d646fdb151c5b19af8cf4a2bb71e0222b0d1df4f6b467" +path = "../build/minified/site/sv/guides/contribute/localdocs/rockydocs_webdev_v2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/contribute/localdocs/rockydocs_webdev_v2/index.html_br_c32e416ffbe39ae870949149d4431299ac3f1b06201756047fcaed211c453f0d" +path = "static-publisher/static-content/file3586.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/contribute/localdocs/rockydocs_webdev_v2/index.html_gzip_df625855c176aa273490ae499c3bbe673ff6a235f6d3a18829e19ffbfc909a21" +path = "static-publisher/static-content/file3586.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/contribute/navigation/index.html_4157a0b3ae2d1ad9f414bc0e974c915651c51c6ce23276d9f37c74850513a30f" +path = "../build/minified/site/sv/guides/contribute/navigation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/contribute/navigation/index.html_br_0d7ac140e0ff2478e3ae5c26f4b4da99640de060b87573737d279e72b6fd8ab0" +path = "static-publisher/static-content/file3587.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/contribute/navigation/index.html_gzip_f7762992c9f34803077d106708250eb7c60449030f0d99a08721de2e0c03a1c2" +path = "static-publisher/static-content/file3587.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/contribute/rockydocs_formatting/index.html_e58e699ae356bbaae97d8c46004ae8662d335607049e72e65e04bbc8feb5d7d2" +path = "../build/minified/site/sv/guides/contribute/rockydocs_formatting/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/contribute/rockydocs_formatting/index.html_br_3334e1d31ad6b050d6ca37ff7920fddaf0b796f8f95c439428b79abff1c29402" +path = "static-publisher/static-content/file3588.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/contribute/rockydocs_formatting/index.html_gzip_01744768d0955a674ea5c9d85c55ef9b2d614457ece97e8537273c1df05401de" +path = "static-publisher/static-content/file3588.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/contribute/style_guide/index.html_701c07085696a311b632048ee4765f59f8e45cd925ac5e478ca3cf5485ea0b84" +path = "../build/minified/site/sv/guides/contribute/style_guide/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/contribute/style_guide/index.html_br_bdd6b5de6a96ded2c3ba05f1d77a7e36984dd9be13e9a3212b1df5ce48682247" +path = "static-publisher/static-content/file3589.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/contribute/style_guide/index.html_gzip_dacbba5bbcc149bf54d06a34addfb1c8153ffd91c1d462ccbd5aef50414954e5" +path = "static-publisher/static-content/file3589.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/custom-linux-kernel/index.html_0e790d94a3673d5669410634f1f2d97065745a957aaf5fbd09520e4fdf3203c9" +path = "../build/minified/site/sv/guides/custom-linux-kernel/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/custom-linux-kernel/index.html_br_70af81b9adac51cf273703bc4f9a7051464c6810adc0bc35e24a1af68c3e1f31" +path = "static-publisher/static-content/file3590.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/custom-linux-kernel/index.html_gzip_c5e9d420a2c7fe9161005ace4239b9c6e9086ee1fc46dcda495025825d0bc5bd" +path = "static-publisher/static-content/file3590.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/database/database_mariadb-server/index.html_8793e6e9736e8c0b22c941c3ceabe3393124811eed1b89f7da13237c19863e98" +path = "../build/minified/site/sv/guides/database/database_mariadb-server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/database/database_mariadb-server/index.html_br_809ab7ed410c78e4ee11034c2d89cf7a3486b3eb41a1cac2245032b432c07cca" +path = "static-publisher/static-content/file3591.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/database/database_mariadb-server/index.html_gzip_9d931958a9c6a0c3a836026a7bc8566f574559db11ed5403decd11dc2678276b" +path = "static-publisher/static-content/file3591.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/desktop/kde_installation/index.html_c4044736d16c9b1d8f80def298f9e4b9f3945db39b84f846e85b7a2d07d6b8c9" +path = "../build/minified/site/sv/guides/desktop/kde_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/desktop/kde_installation/index.html_br_f93336982c1c82ade901b88c57f7442e75919d62da277225e31e96bafe3a23d4" +path = "static-publisher/static-content/file3592.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/desktop/kde_installation/index.html_gzip_5510c65a96357c2ed98addd787ced31dc7e01a0419175cda39a42ac182d44912" +path = "static-publisher/static-content/file3592.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/desktop/mate_installation/index.html_4889acea078c9bcef533861d922daae72be538a4411eac1de3bb76b83d55febe" +path = "../build/minified/site/sv/guides/desktop/mate_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/desktop/mate_installation/index.html_br_ff81d60a557b0f23f210b1256ec080fbd01b1e7b9ddccf3712a8d52ac8eb0c66" +path = "static-publisher/static-content/file3593.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/desktop/mate_installation/index.html_gzip_d3a5266d10c7f3f1b345102023f8b76968b4491e4d764824b658afd9ecb06488" +path = "static-publisher/static-content/file3593.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/desktop/xfce_installation/index.html_22c5852678d4e57c11a03d7b3b54d5b7af2b32f8b2aa5df0582a3cb9ad853b31" +path = "../build/minified/site/sv/guides/desktop/xfce_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/desktop/xfce_installation/index.html_br_eb91ac76b9d73a000b1e3120cc2f46d12dad59818d748bf908a3a1df020636bb" +path = "static-publisher/static-content/file3594.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/desktop/xfce_installation/index.html_gzip_081d25be8f0659efcd7d70d7bf95010f0c63793235f95daf59d93f26e27fdc05" +path = "static-publisher/static-content/file3594.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/dns/private_dns_server_using_bind/index.html_ba1c28b66b0dd36dd7644910693f70b51538f1b0fe6f31af1e973192a9bcb67b" +path = "../build/minified/site/sv/guides/dns/private_dns_server_using_bind/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/dns/private_dns_server_using_bind/index.html_br_856acce7b540bfde51bf742dacf3b04825355262abd350eeb9a03db2891c2735" +path = "static-publisher/static-content/file3595.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/dns/private_dns_server_using_bind/index.html_gzip_66f1f622cd8808325aeac7ee5cae3c11ff907be099bfb79ac6a03c2b5fa5a831" +path = "static-publisher/static-content/file3595.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/editors/micro/index.html_28d7a754f0e293eab57c44ff7a4b8accf14eb81aa5f41f7a4c923b57f6600e67" +path = "../build/minified/site/sv/guides/editors/micro/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/editors/micro/index.html_br_678be82f2b9122b3ee81c14030ad35b0b2e32a1a93825eec94d2885e510c5301" +path = "static-publisher/static-content/file3596.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/editors/micro/index.html_gzip_c2150361b0cfde190091d6bb995f37ea0df5bc959d8cab8418d86b4bc28b728a" +path = "static-publisher/static-content/file3596.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/email/01-email-system/index.html_1878c6ed34fe64888089ebd37ee811b1332a66d548a5ad9b42a25f4d970aa516" +path = "../build/minified/site/sv/guides/email/01-email-system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/email/01-email-system/index.html_br_91e7784af95700c4cb3d4836b8a04e018e98e8c6aebdeb4a3720ede5f071dac6" +path = "static-publisher/static-content/file3597.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/email/01-email-system/index.html_gzip_d6c25143f5bd1fafdcb0cb92bbc63138912f4b7bf2dd57083207782ee9a75223" +path = "static-publisher/static-content/file3597.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/email/02-basic-email-system/index.html_7b73164d5bd50c63d0c65d090f54a3527fb0640ad68b547f128ac10fea7e5d76" +path = "../build/minified/site/sv/guides/email/02-basic-email-system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/email/02-basic-email-system/index.html_br_846331c5a5c62345e978b3421581b7d95d528249d56b6571fbdb5806e52a242c" +path = "static-publisher/static-content/file3598.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/email/02-basic-email-system/index.html_gzip_aa950bd22cf10938e933eff31616933a26ec58e1cbf797c77c01d6578c1c2064" +path = "static-publisher/static-content/file3598.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/email/postfix_reporting/index.html_29d751b50b2e4c23769a96d3b90b35575a0923766a3c051a2933b49db917c636" +path = "../build/minified/site/sv/guides/email/postfix_reporting/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/email/postfix_reporting/index.html_br_1a38b29d7291fd7153204c8903e1a2c7de116e58be16c964ffbf39b6d98eddad" +path = "static-publisher/static-content/file3599.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/email/postfix_reporting/index.html_gzip_60f459044269e1f57a8af7ee15a3de0e242dc7c24b72556eece57a5cc24f58b0" +path = "static-publisher/static-content/file3599.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/file_sharing/glusterfs/index.html_85b20d07c4ff24ddad82d72bd0cc3ba367e06eb5bad0da7bba7e4a6de1b9f3f5" +path = "../build/minified/site/sv/guides/file_sharing/glusterfs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/file_sharing/glusterfs/index.html_br_ff8e2038c5cc122e40bf29d3ec3af292c89e36d1057e8fcdc49fbab2631d0e71" +path = "static-publisher/static-content/file3600.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/file_sharing/glusterfs/index.html_gzip_fd161872a7c93fe92c2111afcd1d110bdbd6893150cceeb218af947ad91e1527" +path = "static-publisher/static-content/file3600.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/file_sharing/nfsserver/index.html_219b9b407592acd8bca592c66e5524b91e6c0d38316261d1829631118c03bca5" +path = "../build/minified/site/sv/guides/file_sharing/nfsserver/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/file_sharing/nfsserver/index.html_br_fb4104e2fd627cea4a33a356c3ebda9ddb1a9cea307df2c035611f96d54303c6" +path = "static-publisher/static-content/file3601.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/file_sharing/nfsserver/index.html_gzip_3ed6070e4988c2e7114bf8428f0a45be5a7057259ee55d36d9e5d83223453fae" +path = "static-publisher/static-content/file3601.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/file_sharing/secure_ftp_server_vsftpd/index.html_4b02bb8b7688828c5d0fbcbbadee2ec9b9edcc878bf2fa2cf5bc5032996503f1" +path = "../build/minified/site/sv/guides/file_sharing/secure_ftp_server_vsftpd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/file_sharing/secure_ftp_server_vsftpd/index.html_br_49dcf5e9b623b67cd0128cc79616febb0c586bbecce77717a6e95f6d97350f3f" +path = "static-publisher/static-content/file3602.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/file_sharing/secure_ftp_server_vsftpd/index.html_gzip_1ecc2a5008cf5e6c9ab44e8b5d9a3a875df99c3816ce80267d8a8cee85c2e21c" +path = "static-publisher/static-content/file3602.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/file_sharing/sftp/index.html_fa44fb39fb3c8f005d2a2c72d725dae61e113418b141f6203f0e5d035c38f639" +path = "../build/minified/site/sv/guides/file_sharing/sftp/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/file_sharing/sftp/index.html_br_730b7add4aae115fd53a98dada9a15b99682a7d7e84ea7b61b39ea5eac7b9238" +path = "static-publisher/static-content/file3603.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/file_sharing/sftp/index.html_gzip_15aa596e769c22a2be4b315ded3b8b32eeb563422af0dc84629eb06dcff61a54" +path = "static-publisher/static-content/file3603.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/index.html_dbdadede21356eaaa951c364ad6c5c569139eed8adddea71d6b490db5e860a5c" +path = "../build/minified/site/sv/guides/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/index.html_br_e4b82bca7c373fb1db56b2749fb86d6216ef89ef376fab481af05ff21f1f0516" +path = "static-publisher/static-content/file3604.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/index.html_gzip_e6b3250f93f3619332af346a68eff76ffe16ec86a9def595e2144bd25429f574" +path = "static-publisher/static-content/file3604.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/installation/index.html_ad646bca47fb166ad09d4e434bfadc87949243560c777992fa97503cd6e8b8f4" +path = "../build/minified/site/sv/guides/installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/installation/index.html_br_781c802f4d8695a174194d7834a54dc7a0590c0478a614623bee156f6a0088b9" +path = "static-publisher/static-content/file3605.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/installation/index.html_gzip_78f172053cda390673963ee7e3bcffd24d94a4e2357b0d0acce529a1d356846c" +path = "static-publisher/static-content/file3605.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/interoperability/import_rocky_to_wsl/index.html_63a891565e0c2d20f03dd8fb29719bb034a12cc072e5bafbca1dd6f4aa72ee6e" +path = "../build/minified/site/sv/guides/interoperability/import_rocky_to_wsl/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/interoperability/import_rocky_to_wsl/index.html_br_0bd60e2d418a73ff0fbd5ca649b19997fb6fe4058360638407b988d98a93dede" +path = "static-publisher/static-content/file3606.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/interoperability/import_rocky_to_wsl/index.html_gzip_75e2af8db54c7639637b94abb87975b2d9b6764335b8b5d406c60f1b08e5f37b" +path = "static-publisher/static-content/file3606.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/migrate2rocky/index.html_966c7fd886f8afa7d9c8b1486784938b7441cafb625992afd63420a6d462f021" +path = "../build/minified/site/sv/guides/migrate2rocky/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/migrate2rocky/index.html_br_464ed32f98232f812ef857b1bb0a5b2028c41bb6742faaa87f5e2c76e04407ac" +path = "static-publisher/static-content/file3607.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/migrate2rocky/index.html_gzip_6f273dad93c42ec11934791f4dc6829b3d031cb460bacd43b437a8b1cb9dcd31" +path = "static-publisher/static-content/file3607.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/mirror_management/add_mirror_manager/index.html_7cca8177ac9e8b41bd4bf1cd4a59d2f78f4a0b14de72dfc7d82494586cb07005" +path = "../build/minified/site/sv/guides/mirror_management/add_mirror_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/mirror_management/add_mirror_manager/index.html_br_cedeea7886ad124079fefe5388fa6b57bd8b0a934272a34554b3c0b79d943a94" +path = "static-publisher/static-content/file3608.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/mirror_management/add_mirror_manager/index.html_gzip_ea9913f88a5a038721e46b8b5891a788e9e958823fd3aceb322515ff676c2381" +path = "static-publisher/static-content/file3608.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/network/basic_network_configuration/index.html_a9b75ecf3200926437a43bab355b94e738be66b2da66deeda7348e52eec510d1" +path = "../build/minified/site/sv/guides/network/basic_network_configuration/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/network/basic_network_configuration/index.html_br_eca0af055a184081555c7a1b43bd2649a2960651b9876d984d6efeeebc7b165d" +path = "static-publisher/static-content/file3609.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/network/basic_network_configuration/index.html_gzip_3a051744da8d708d5f97720ca753de2fc2907b85a13ca6dde95332ca44bdc9fb" +path = "static-publisher/static-content/file3609.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/network/librenms_monitoring_server/index.html_b32a871f55fbf8e61978e19116faa430caf9634066c67c89ecfb8dfb437e81f4" +path = "../build/minified/site/sv/guides/network/librenms_monitoring_server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/network/librenms_monitoring_server/index.html_br_60e88137173e54ffa895f3c02369bc334fa726c2c8838712b2c1d06698044c3d" +path = "static-publisher/static-content/file3610.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/network/librenms_monitoring_server/index.html_gzip_68332071ae5ece3b09417b8f4f6bc9b8af773a8a0e3f02bd9b4d522a149a4613" +path = "static-publisher/static-content/file3610.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/package_management/dnf_package_manager/index.html_c2b1d9169431ace0c8a7fe3a758e7c58cb09b1b14ae5659aa32a44b35bb5f58e" +path = "../build/minified/site/sv/guides/package_management/dnf_package_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/package_management/dnf_package_manager/index.html_br_4a362d0d2e351d0e9ba4dd65c66d21386c4f28a749295641b26b9a6e29af72f0" +path = "static-publisher/static-content/file3611.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/package_management/dnf_package_manager/index.html_gzip_a89e581030fa446eb091105acc035f48f42a806ac218fc521b82c68228579069" +path = "static-publisher/static-content/file3611.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/package_management/index.html_c0cce2cecfa853d5b16cd74581af2145432f3f86fd356551f8293e1c0d39b52b" +path = "../build/minified/site/sv/guides/package_management/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/package_management/index.html_br_69f51f7dbcfdea80d9ccc625b91b8043fbae535f43e2154e5204c10392a5e00b" +path = "static-publisher/static-content/file3612.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/package_management/index.html_gzip_ee839027b7127df765c2b2eebbb7d593a34d12bf7486bffd99ef365ce1927620" +path = "static-publisher/static-content/file3612.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/package_management/package_build_troubleshooting/index.html_525e3ff559c4411f0e92dcf29b9bd17766ef5e137544855cf140869af31dec55" +path = "../build/minified/site/sv/guides/package_management/package_build_troubleshooting/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/package_management/package_build_troubleshooting/index.html_br_200b99b466d930b06826932a5f51268efccd53a9aa71f7e6ae00cf45a0b9bcf6" +path = "static-publisher/static-content/file3613.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/package_management/package_build_troubleshooting/index.html_gzip_50fa792b073ac5a5acc96a702e0b31b6148b44a8ef23d9e32ef378e08b63d1d3" +path = "static-publisher/static-content/file3613.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/package_management/package_debranding/index.html_c491cbcf6abd8720dd79aa0449304e92c159a9262aeac057c74d4e3521c2f290" +path = "../build/minified/site/sv/guides/package_management/package_debranding/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/package_management/package_debranding/index.html_br_a8095a3b8d417ec4bd8a7de46ba24a92f5ebaab1b53e90d05ee4129fdff7db24" +path = "static-publisher/static-content/file3614.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/package_management/package_debranding/index.html_gzip_16d948da52d148ff207efee235512c51dda66e59dd2bf9cdd21c682e55e86121" +path = "static-publisher/static-content/file3614.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/package_management/package_dev_start/index.html_3bf8a99d31a20f2848c7af90bbbb7e84b369101d1220e9255a8004ef890bfdd9" +path = "../build/minified/site/sv/guides/package_management/package_dev_start/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/package_management/package_dev_start/index.html_br_4fa7c91f5fc576b75163a975125cf4598525ac584da86434acbfa1862c03aed7" +path = "static-publisher/static-content/file3615.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/package_management/package_dev_start/index.html_gzip_af8b8beb59628c3dd1b8ca1669d0137e656dfcd272cb60dc57b6cc8a6a42999b" +path = "static-publisher/static-content/file3615.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/package_management/package_signing/index.html_4af57257d3f7e52cddf264a43ff3250c3bb6188c23797db758a601c3304a3c8d" +path = "../build/minified/site/sv/guides/package_management/package_signing/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/package_management/package_signing/index.html_br_496ca377471a7b7cf87aecd2ddb6189ba5fff3123a3cff89a41c3ce0ccab9223" +path = "static-publisher/static-content/file3616.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/package_management/package_signing/index.html_gzip_32f8934551df57306dd5cddd89bc57654ec70ce50a7debbe1d54a13854ade4d5" +path = "static-publisher/static-content/file3616.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/proxies/haproxy_apache_lxd/index.html_4aaaefc9aecd0fd5016d9ee63719c631e3cf148ac5f141c6f0e3973c00874584" +path = "../build/minified/site/sv/guides/proxies/haproxy_apache_lxd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/proxies/haproxy_apache_lxd/index.html_br_91b02d3a58fa00681b8d946aa70c2ccb183dd364fd876aa03beeee5818260c65" +path = "static-publisher/static-content/file3617.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/proxies/haproxy_apache_lxd/index.html_gzip_f31c18841e4bbf4214844f284ebdfcc16250e7a742b6423a43da937dc68d220b" +path = "static-publisher/static-content/file3617.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/proxies/pound/index.html_e3c7a2fbdd2a9a3f96892497b5310934b1d46b2aa42ea0934b2eb142ac9d72ee" +path = "../build/minified/site/sv/guides/proxies/pound/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/proxies/pound/index.html_br_bb4f991d95cd8537df0baebd90bee84735baf98e7f05cd11ee36974ec6347820" +path = "static-publisher/static-content/file3618.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/proxies/pound/index.html_gzip_97ec05436afb2c1fd3cf7846553c1e8ed419fc1d8e88457b1b2bc6e72f9940e1" +path = "static-publisher/static-content/file3618.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/proxies/tor_relay/index.html_8a28a283dc9cad87b11dce96d73b84cbf0ff9caf9819030d4bc7e6f86be8af01" +path = "../build/minified/site/sv/guides/proxies/tor_relay/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/proxies/tor_relay/index.html_br_fd3b060c97bdca46f266395bf42da9fcb12c12d864371d7f1058795b7fa85f10" +path = "static-publisher/static-content/file3619.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/proxies/tor_relay/index.html_gzip_32c67723d52e95acda4812b7fee51fef27b21207444b67abc9a531aceb952815" +path = "static-publisher/static-content/file3619.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/security/authentication/active_directory_authentication/index.html_54c8a01f7144bf15b952b916b132fad9b77870f79291b922ee042de628618a7b" +path = "../build/minified/site/sv/guides/security/authentication/active_directory_authentication/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/security/authentication/active_directory_authentication/index.html_br_ea4f996e637255ce7f5d86187df020e3a998930f78d1c86cbf3192407431d537" +path = "static-publisher/static-content/file3620.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/security/authentication/active_directory_authentication/index.html_gzip_05a5721c113ac006b48df6e655af4a67a7661e6db128a6fd6d880ead7b71370d" +path = "static-publisher/static-content/file3620.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/security/dnf_automatic/index.html_7696cbb8722d84bf54a5a02c208fd4e6afa2c7cb13407f734e08bb2684beb275" +path = "../build/minified/site/sv/guides/security/dnf_automatic/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/security/dnf_automatic/index.html_br_938aa2df648a37fbc5635867a4f417d93233dddfcfeacfb9d4c96c121a559d72" +path = "static-publisher/static-content/file3621.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/security/dnf_automatic/index.html_gzip_8d7edee72b5272d273af211c5d47de6d6ecbbdb157ae54db4adc0129ef8d3ace" +path = "static-publisher/static-content/file3621.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/security/enabling_iptables_firewall/index.html_0048eacec0fdec79498a7ead977c87f9ea8bf32af585c4035ccef135d66f1f1b" +path = "../build/minified/site/sv/guides/security/enabling_iptables_firewall/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/security/enabling_iptables_firewall/index.html_br_3aa680586bdb2bf4535cd76edb7c8e929c929342e13f43b6e6af23c282e39088" +path = "static-publisher/static-content/file3622.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/security/enabling_iptables_firewall/index.html_gzip_b5d895d3c1b78d48acb0529c5e3759883d007235423088f6eec10026aa296621" +path = "static-publisher/static-content/file3622.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/security/firewalld/index.html_39c6fa69b1c98a027a5cbc16b9878601b9d3412d6852ebf912c03e3c87c5ecca" +path = "../build/minified/site/sv/guides/security/firewalld/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/security/firewalld/index.html_br_747525335391fd9aa5968dec61cb141b99b3ff064c5d9e6974e49c6d6beb83ef" +path = "static-publisher/static-content/file3623.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/security/firewalld/index.html_gzip_eb0ecb794d0c7a03e15354cfeb35a90ce2ad494080dcaab48e17e84e280aacc4" +path = "static-publisher/static-content/file3623.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/security/firewalld-beginners/index.html_8583e60d8d4990b090b393e0f9d9666ecf5cb835e102d5f35d6924a8d02b86a1" +path = "../build/minified/site/sv/guides/security/firewalld-beginners/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/security/firewalld-beginners/index.html_br_710f0cecf9524719e052620debee8024c472db4b65574204d04ca53f49891362" +path = "static-publisher/static-content/file3624.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/security/firewalld-beginners/index.html_gzip_826ffeb27343922d1cb681ea1df48694a86906cdad62198bb086509c84af2920" +path = "static-publisher/static-content/file3624.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/security/generating_ssl_keys_lets_encrypt/index.html_d982a6b786e18236c00e2ddd9a1d334e5548bdfe6fb3717b4e3b5172cb7108c4" +path = "../build/minified/site/sv/guides/security/generating_ssl_keys_lets_encrypt/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/security/generating_ssl_keys_lets_encrypt/index.html_br_a29c9bb2d6e0d7ebcad012a71b9eb1591c99f60f3778ad5b3da57d4c94d70ef8" +path = "static-publisher/static-content/file3625.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/security/generating_ssl_keys_lets_encrypt/index.html_gzip_34f8785c984d940e004601087e71233b901a3c3e175dee111398b55d1d4f2eb6" +path = "static-publisher/static-content/file3625.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/security/learning_selinux/index.html_07881ca0ca9816e57fd8d96d2fc8dc055465835acf7e5d8cf12b04b61437bf53" +path = "../build/minified/site/sv/guides/security/learning_selinux/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/security/learning_selinux/index.html_br_029681132baaac7fb12a4074bbddc55b0fe9b39109ec868adb00c5ff4178ffc8" +path = "static-publisher/static-content/file3626.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/security/learning_selinux/index.html_gzip_812420c3e99f10ffd71bf1a3effa73f557c89cf73af9e082945662d45dddd2bc" +path = "static-publisher/static-content/file3626.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/security/pam/index.html_96301a0a8289ee797d864e8b412c394de570da9ba987005c5a433fcb98be7bd5" +path = "../build/minified/site/sv/guides/security/pam/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/security/pam/index.html_br_39f9a877bed161e5081972070ea4f64702943ba00d304b5ffae6dcc2bb679ba3" +path = "static-publisher/static-content/file3627.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/security/pam/index.html_gzip_2faca3c9c16fb9d472a37e420e5742e7a87f425cabeeecbd645d29a4dbcce1d4" +path = "static-publisher/static-content/file3627.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/security/ssh_public_private_keys/index.html_238a689bcfb17242b105211c48d8560f3ed682a72354529c9804abc947e509b2" +path = "../build/minified/site/sv/guides/security/ssh_public_private_keys/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/security/ssh_public_private_keys/index.html_br_8b06cbf984588c32dea7696f414828e737d66a669d384b8bd4f6669f2d7d2952" +path = "static-publisher/static-content/file3628.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/security/ssh_public_private_keys/index.html_gzip_8dc1b2531584ff18a96495798cc5dbd04a8debb51bb597378508de8b2e91cb13" +path = "static-publisher/static-content/file3628.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/security/ssl_keys_https/index.html_f00ed930c1affef182de5afbf33758eea4eaf581fd6c29406aa00202f9493198" +path = "../build/minified/site/sv/guides/security/ssl_keys_https/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/security/ssl_keys_https/index.html_br_de261b25c0f7205cc11f3014795c44ec35682c27734dba23227b3f1b433dc090" +path = "static-publisher/static-content/file3629.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/security/ssl_keys_https/index.html_gzip_ea8173555f918a6019a402b3c7eccfbcb1015879bad91133d32cb92eecfb09d9" +path = "static-publisher/static-content/file3629.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/security/tailscale_vpn/index.html_8683d85d38298129b522f28b35acc9475dea555ae4260032c6397cc25907b664" +path = "../build/minified/site/sv/guides/security/tailscale_vpn/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/security/tailscale_vpn/index.html_br_393d34ea942d7c2bc85998f47be64629edbd90b85bfd00b0d20be7589fab4e24" +path = "static-publisher/static-content/file3630.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/security/tailscale_vpn/index.html_gzip_228516689e287424aed89367d013f0f193f1dee5278d8dc9459e2fa8923fa9e4" +path = "static-publisher/static-content/file3630.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/virtualization/cockpit-machines/index.html_cdaee71f99c8f5693802d74dcd01e64df26844de37c1964acfb7ac1735ac87ce" +path = "../build/minified/site/sv/guides/virtualization/cockpit-machines/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/virtualization/cockpit-machines/index.html_br_7e00ee8ccbe9258b4e7172a56c3d1a8a9c3a38b7da495b17e07c466476eac973" +path = "static-publisher/static-content/file3631.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/virtualization/cockpit-machines/index.html_gzip_5e21a1f8952be4afb51d356e1e7de38fd041bb7457a59c0a9f356712730dc2ad" +path = "static-publisher/static-content/file3631.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/virtualization/vbox-rocky/index.html_346b4355a3697f74659b05d5b7c78907d0821ba098f54c4bbef1f26df6959eae" +path = "../build/minified/site/sv/guides/virtualization/vbox-rocky/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/virtualization/vbox-rocky/index.html_br_1464e8ee8adeed31e832c7e4f12fde18a4739fe9a4053da861c9d754eef9fce1" +path = "static-publisher/static-content/file3632.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/virtualization/vbox-rocky/index.html_gzip_d71258b954515e6970a048d4c4fe1020b3e546eb0c3878d6a7de8aa1649f786f" +path = "static-publisher/static-content/file3632.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/virtualization/vmware_tools/index.html_26504223626536a962ea846ff380bcb6af1b68ea81eb0c1093aac8244938f2c9" +path = "../build/minified/site/sv/guides/virtualization/vmware_tools/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/virtualization/vmware_tools/index.html_br_eaf1bdd23536447bcd27d2fc4d08b09435af57cc053723a047db4ec48ab25035" +path = "static-publisher/static-content/file3633.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/virtualization/vmware_tools/index.html_gzip_97ee635757818e815606c1447934149216165213efe2c087f23e3ed9ff3b0e7f" +path = "static-publisher/static-content/file3633.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/web/apache-sites-enabled/index.html_4d7d07ccec4a0572890428edb0550620c27d14975d785df017196c8c3ba20db9" +path = "../build/minified/site/sv/guides/web/apache-sites-enabled/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/web/apache-sites-enabled/index.html_br_195052fea097317802281007a02a95e9eca6063318110b7d6446c5eb0762b9eb" +path = "static-publisher/static-content/file3634.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/web/apache-sites-enabled/index.html_gzip_8bcedde586dce841b5e2c7d21cb305ed9f7ffce31c7c36cc3d57ca5b8fdce64f" +path = "static-publisher/static-content/file3634.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/web/apache_hardened_webserver/index.html_117114eb2c1b530a0c25621436813be821f568dcad3f0208028e4a498761debc" +path = "../build/minified/site/sv/guides/web/apache_hardened_webserver/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/web/apache_hardened_webserver/index.html_br_76845872ad3a649037ce171317138cda0070df81ff0804a39972c2addaa8f099" +path = "static-publisher/static-content/file3635.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/web/apache_hardened_webserver/index.html_gzip_a2d6dcd65c2b143fda89a757f56efec8eff395285f325e5ae0979d0d0a2cf6d4" +path = "static-publisher/static-content/file3635.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/web/apache_hardened_webserver/modsecurity/index.html_5441e052a4aad35571b099d748ab1ac16fdcb3a924ce725d915218c8e50ef330" +path = "../build/minified/site/sv/guides/web/apache_hardened_webserver/modsecurity/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/web/apache_hardened_webserver/modsecurity/index.html_br_5f377ae6e3af12b1bbbabf3d34c2848dd06554d0f033fe34b18c83660b96be00" +path = "static-publisher/static-content/file3636.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/web/apache_hardened_webserver/modsecurity/index.html_gzip_b118cd7407df8e3f673508a6d7ff66d99f1a21f6a9e7d0b79569243b02a1b7fd" +path = "static-publisher/static-content/file3636.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/web/apache_hardened_webserver/ossec-hids/index.html_379c5d99a33ce8f5d954f5ef83d7e363e3beb938b48fff538f667de2d680c047" +path = "../build/minified/site/sv/guides/web/apache_hardened_webserver/ossec-hids/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/web/apache_hardened_webserver/ossec-hids/index.html_br_22c7fa19011f248bed2a5bf3b53b3c211500a811ea6f36a9955e8066d3bf1c81" +path = "static-publisher/static-content/file3637.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/web/apache_hardened_webserver/ossec-hids/index.html_gzip_f2ec5d6c7073b7b9b6fba45db1594320e90d8c93da66229ab9fdfe16d0e926e3" +path = "static-publisher/static-content/file3637.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/web/apache_hardened_webserver/rkhunter/index.html_91d718be205733d370d9002f332bf74cc81bfc43e97b9280fb325fc3c4373bdf" +path = "../build/minified/site/sv/guides/web/apache_hardened_webserver/rkhunter/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/web/apache_hardened_webserver/rkhunter/index.html_br_95340edff02663c7b7c6f60d3a8b75447eb3d825345cc5120551c7e5159d4247" +path = "static-publisher/static-content/file3638.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/web/apache_hardened_webserver/rkhunter/index.html_gzip_13c24c295e94a3fd8900a28b983c3d51b14928744ce98fa9483315b15768f710" +path = "static-publisher/static-content/file3638.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/web/caddy/index.html_a9ccfb3958b310b328ac33d747ea2f0a533e152a9a7e0d566ecb9b98f3b7badf" +path = "../build/minified/site/sv/guides/web/caddy/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/web/caddy/index.html_br_6c727d7b7fd007019b6992880ec4bdc38e40a16f76154fb40a48224b12a67138" +path = "static-publisher/static-content/file3639.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/web/caddy/index.html_gzip_b87f006c640f229a5c2171bc9a46e03290f8b949282ecb3fd7bf5a15c963ac31" +path = "static-publisher/static-content/file3639.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/web/mod_SSL_apache/index.html_23e1fa405b37a893c7f0bfbb3d4f95eb30a153a6bdc0e5d975b06b57c2af2e9c" +path = "../build/minified/site/sv/guides/web/mod_SSL_apache/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/web/mod_SSL_apache/index.html_br_04230cb1feec15b8a1a09a551cf294791eacf21ace4f38301df981af690b221a" +path = "static-publisher/static-content/file3640.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/web/mod_SSL_apache/index.html_gzip_904fdcf3b52f5cba728b9ebc48c25672ae17fef1fd7209f045c26b7eed5d8d70" +path = "static-publisher/static-content/file3640.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/web/nginx-mainline/index.html_5433059aae9d53a6f7f30c7f5b7eed772eec51074b915582eb17196a76d2976b" +path = "../build/minified/site/sv/guides/web/nginx-mainline/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/web/nginx-mainline/index.html_br_005808395ea7c149653133dde08e9b8c032d413a748cf5dcb3dff2697b3289fc" +path = "static-publisher/static-content/file3641.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/web/nginx-mainline/index.html_gzip_a495dcc803222e160003cde9a1abfde037851e34cbb5c891a9b9257defb47e12" +path = "static-publisher/static-content/file3641.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/web/nginx-multisite/index.html_f6ac8fb3b6d9808140e7f1d8720720d3a1ff3a7dc7c9010361416d08551ac095" +path = "../build/minified/site/sv/guides/web/nginx-multisite/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/web/nginx-multisite/index.html_br_6e9c99c7f371d5a4932a28a866a334350851537564a241160b457d0f97fada90" +path = "static-publisher/static-content/file3642.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/web/nginx-multisite/index.html_gzip_85d9ac72cff392b0d5022323fa10804147d15837a7af01d124723a0baf9d0835" +path = "static-publisher/static-content/file3642.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/web/php/index.html_be3268a79dde9d6ec58e7dd6a183219322a3e6bc5692f759e9d4ac6fee798fd8" +path = "../build/minified/site/sv/guides/web/php/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/web/php/index.html_br_4d117c9a0b47d1f777c7dfcc3f6aff5cdacd1faea59cf59a0dcb37212bacb448" +path = "static-publisher/static-content/file3643.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/web/php/index.html_gzip_edd4dc8147cb0fbdfe90edab91e2646303dd45de5f017b4ffb98b910f9590e7d" +path = "static-publisher/static-content/file3643.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/web/tor_onion_service/index.html_89d77d17612b1a0e866ee50573cf86449b4b83020e687bf9d70c8b6e6ccac39e" +path = "../build/minified/site/sv/guides/web/tor_onion_service/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/web/tor_onion_service/index.html_br_2b4fe73ee21e73b36673815d8ae00eea8784933c7069003132b2d7cc7b1597c6" +path = "static-publisher/static-content/file3644.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/guides/web/tor_onion_service/index.html_gzip_0e750af8ec9dde5713179c4681f018d9951e6f080384d5174d9fe7393fc8fba3" +path = "static-publisher/static-content/file3644.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/index.html_da2ed73c27ba6b83d94bf93c440138719c8e256bc34cff75da8f795d7b03fcd9" +path = "../build/minified/site/sv/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/index.html_br_0693e4c7b668a41ae76c0a82b938ff1b338b6fe870ec8fd3a3772e7958056246" +path = "static-publisher/static-content/file3645.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/index.html_gzip_40f949e1b52006c1e0f448c9f7b39f765ab9dda17137c6b7e933bb1c1a95fbd3" +path = "static-publisher/static-content/file3645.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/labs/index.html_c1b652277d1a28a6a2e46594b8cf17435422baf8199ddda35eb33eb2791f4a52" +path = "../build/minified/site/sv/labs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/labs/index.html_br_f2e35f4f75ab1d2a814bcfdb984093570cc733650f335bb1a2d74f88d4ea42a5" +path = "static-publisher/static-content/file3646.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/labs/index.html_gzip_e5e25686d75fea3213e12d1011dd37b95c6344e5b07c38353d7e757b2b51ace3" +path = "static-publisher/static-content/file3646.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/labs/networking/lab5-nfs/index.html_2e65ce519ded7b57b069971c01f841e54b45592691f6826a61c3a4d6b6e9d3c2" +path = "../build/minified/site/sv/labs/networking/lab5-nfs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/labs/networking/lab5-nfs/index.html_br_1f163fba9f052befe7a1111c1cbebb34c5733c709c2e741b8f36d99c375f78d7" +path = "static-publisher/static-content/file3647.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/labs/networking/lab5-nfs/index.html_gzip_c1bab3d24733852be6a16f72a492081c56154c11c1d077ed6d86a82dfbd2928d" +path = "static-publisher/static-content/file3647.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/labs/security/index.html_c4da12279cdc3ea86f252a4631d6ec53c64e4fc0a4d16a89884b547f4c7c0460" +path = "../build/minified/site/sv/labs/security/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/labs/security/index.html_br_b6fab182cf58990f466eeb5558ad35c2dcbe8a0209c239c79d4d8d3d3dad6aff" +path = "static-publisher/static-content/file3648.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/labs/security/index.html_gzip_0da3e116c61357055ea7196cb431c0bb3c6556e4815cbc69d83eb77bd10f67b0" +path = "static-publisher/static-content/file3648.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/labs/security/introduction/index.html_f78890b14886f13ff36ed313b73d6ac42c7b52ea1ff53f034027a5a2a5984515" +path = "../build/minified/site/sv/labs/security/introduction/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/labs/security/introduction/index.html_br_8b2485228d83c7cd2575a6147dde86fbdf7c7a007072a1fb9dfff35f72f05023" +path = "static-publisher/static-content/file3649.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/labs/security/introduction/index.html_gzip_4c785576e27e95f1bb1b92b2d7ef6f805d302f8e42d6b59776834f4fe877beb5" +path = "static-publisher/static-content/file3649.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/labs/security/lab3-auditing_the_system/index.html_609a3ddbb23d3666e88643caa0c1e16a05e73541839bf004c20be7dda0e8343b" +path = "../build/minified/site/sv/labs/security/lab3-auditing_the_system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/labs/security/lab3-auditing_the_system/index.html_br_b0ed8abd267d9880971f566f2aeb90d9d6fb0e648ec0dd6fd457931a42777ebb" +path = "static-publisher/static-content/file3650.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/labs/security/lab3-auditing_the_system/index.html_gzip_3ed101476516852c72bd7928525b3416bd0baf75834d4d2b8ae437ad401b39c3" +path = "static-publisher/static-content/file3650.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/labs/security/lab8-iptables/index.html_f32fe3dc554065c052a1a55a9fee918e333e7f4033c6103abba4e29537fe822f" +path = "../build/minified/site/sv/labs/security/lab8-iptables/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/labs/security/lab8-iptables/index.html_br_c57edea7a4015ea3e06bf88a4bff90ac0cb76116de25a0466bb57d4ec7e6c360" +path = "static-publisher/static-content/file3651.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/labs/security/lab8-iptables/index.html_gzip_e0efa7f3755ad39c80500f89a55e0baf068d693b90c19fa73ee0f85372aebb01" +path = "static-publisher/static-content/file3651.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/labs/security/lab9-cryptography/index.html_d38592f21111e8b8a340e9779a31760d247f4bf8538a98a62c5b566757c73c90" +path = "../build/minified/site/sv/labs/security/lab9-cryptography/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/labs/security/lab9-cryptography/index.html_br_ff3fc5dbe1406fdc2c9b5bdd5a0bce8d78a02acd7c204c2646ece4f5ba5e4479" +path = "static-publisher/static-content/file3652.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/labs/security/lab9-cryptography/index.html_gzip_4be7bf078d08d80f7c5043b03a6aae404217159ffbec9d53096d6608b6b8b6bc" +path = "static-publisher/static-content/file3652.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/labs/systems_administration_I/lab3-system_utilities/index.html_77f4a8bea447e5dc845f307343a6b53e496481fca585da3bcc93aaa6ef9d03ef" +path = "../build/minified/site/sv/labs/systems_administration_I/lab3-system_utilities/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/labs/systems_administration_I/lab3-system_utilities/index.html_br_880d924ee1c5d95c606a9f7dcd1172f97e98b74298a0aeb1662a814b2806cd8f" +path = "static-publisher/static-content/file3653.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/labs/systems_administration_I/lab3-system_utilities/index.html_gzip_45b66f7b0bce4a09ea960e0111993f0723f4c3c950e2548a78cd219e5ed4b868" +path = "static-publisher/static-content/file3653.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/labs/systems_administration_I/lab5-networking/index.html_945af4c8e853e55224066b0b3bad61214beb7168c1e2bd281b57f8d61e7d5dbb" +path = "../build/minified/site/sv/labs/systems_administration_I/lab5-networking/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/labs/systems_administration_I/lab5-networking/index.html_br_bf4521dc0ddf3055996feb92d967da0e6fd509e29cb7850c3a23632233884aff" +path = "static-publisher/static-content/file3654.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/labs/systems_administration_I/lab5-networking/index.html_gzip_f6a96f396a9057015fed2c80fbdf4c59f5aad930fe8381016bb8894704bb60a9" +path = "static-publisher/static-content/file3654.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/labs/systems_administration_I/lab6-user_and_group_management/index.html_34f6b5a00d8b622ab979b31e297f872b675d08cb3c59f5adb79cd032e77a81b4" +path = "../build/minified/site/sv/labs/systems_administration_I/lab6-user_and_group_management/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/labs/systems_administration_I/lab6-user_and_group_management/index.html_br_d8ce50cdb9d9e7cf2deeebdc0d496d4bb5d6152f2f4a5119b0f49387db3eafe9" +path = "static-publisher/static-content/file3655.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/labs/systems_administration_I/lab6-user_and_group_management/index.html_gzip_87cbbb0a825a9f4dd7f4228c6be762096c3129dcd9736ce1eb5579bb6a7fa1cf" +path = "static-publisher/static-content/file3655.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/labs/systems_administration_I/lab7-software_management/index.html_aedd60c7217c19db2abc3f7cfb60593875960077c057d68183f397f1b82e8803" +path = "../build/minified/site/sv/labs/systems_administration_I/lab7-software_management/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/labs/systems_administration_I/lab7-software_management/index.html_br_048df1f459fc9afb31da9882c88be9d0e26de0f828aef22d9b30197fc58564ef" +path = "static-publisher/static-content/file3656.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/labs/systems_administration_I/lab7-software_management/index.html_gzip_6f5f1783dd2b28f702e5f5607f1d6f916dd3e79b4ea80c856824bdfb27726cea" +path = "static-publisher/static-content/file3656.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html_f4eb70c7408455d371c46c1284371ec888050b5e14ccc757631137f467328a77" +path = "../build/minified/site/sv/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html_br_61078acb7739b351ebde711e232fceeb9bba9d2be99a4eefe32c5308dd1e1e3a" +path = "static-publisher/static-content/file3657.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html_gzip_f146b72a3f0154502649ead01e3bfb9dc93adb377f7bf24398cf970c7ab405da" +path = "static-publisher/static-content/file3657.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/labs/systems_administration_II/lab3-bootup_and_startup/index.html_ae464d85e4dad10d1d0b53d215a48a7adac52174f3a4f311582acfeb5a3ab6b3" +path = "../build/minified/site/sv/labs/systems_administration_II/lab3-bootup_and_startup/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/labs/systems_administration_II/lab3-bootup_and_startup/index.html_br_4f430e0a4741f228808ad94435bab770635fd7ad5fb08df86bf65d71d482925a" +path = "static-publisher/static-content/file3658.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/labs/systems_administration_II/lab3-bootup_and_startup/index.html_gzip_f381159a377a8428dd1ccd846fa283d2a7e0321d770f2d10fc41b6ada0c9a6c4" +path = "static-publisher/static-content/file3658.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html_e5eeb99c60d08b938179294bfed7e214b24805a359560ae25a1951a5eda75b26" +path = "../build/minified/site/sv/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html_br_f6ffe1e89571d54f9e044967d914c3e9ad7ac9f65c19ca3abe24c86c3d0bbc14" +path = "static-publisher/static-content/file3659.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html_gzip_6201b5711abffdf4d8ccf95beaaa50fca7b4afb9b7e15c1708685cd67c903720" +path = "static-publisher/static-content/file3659.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/labs/systems_administration_II/lab6-the_file_system/index.html_d522356c87f8b15591e0db9bea47e092c08c90515f9eb7cbd4d28ac43fb08a27" +path = "../build/minified/site/sv/labs/systems_administration_II/lab6-the_file_system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/labs/systems_administration_II/lab6-the_file_system/index.html_br_4a99654d7e42829c87df59ecd6e92e6e5c670c5561b8ef1601bea48cfb7fea6c" +path = "static-publisher/static-content/file3660.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/labs/systems_administration_II/lab6-the_file_system/index.html_gzip_38237d61ec4bcdc406aba88461106a1ecdd4fe238603325426ebbdf18225318b" +path = "static-publisher/static-content/file3660.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/labs/systems_administration_II/lab7-the_linux_kernel/index.html_5a60a60d9d275a125adfde9a083ea4c0b760ac1632129a59c8187685fc2dbf76" +path = "../build/minified/site/sv/labs/systems_administration_II/lab7-the_linux_kernel/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/labs/systems_administration_II/lab7-the_linux_kernel/index.html_br_dadbc67f339a0a9630224f70f476bef7efecab1fb7bfe039c099db307ac9b9b1" +path = "static-publisher/static-content/file3661.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/labs/systems_administration_II/lab7-the_linux_kernel/index.html_gzip_b86035bcec5c32bf780de82706fed73ba2a75598ed4acda1886dc1a029c82380" +path = "static-publisher/static-content/file3661.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/release_notes/8-changelog/index.html_ac4192eba64696bbf72222420a31608f8635d98aac49e68d2511717bbf41e645" +path = "../build/minified/site/sv/release_notes/8-changelog/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/release_notes/8-changelog/index.html_br_ca337708475a115371e6eb9e8c346a881bc908adbc2d4dddbed87e399c463a8f" +path = "static-publisher/static-content/file3662.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/release_notes/8-changelog/index.html_gzip_2708596892adfef0c27ce1b512892672fc8e7c88464d749c3c074caf212f036c" +path = "static-publisher/static-content/file3662.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/release_notes/8_4/index.html_3e11314534821592e70ecf50bd1ccbea4a0116488e5f5f9d837afb3a94a7f9de" +path = "../build/minified/site/sv/release_notes/8_4/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/release_notes/8_4/index.html_br_962d88d7b8abac85f5c2b3eaafb0a1c273b8b4c939f17b99953ac95c95cf9171" +path = "static-publisher/static-content/file3663.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/release_notes/8_4/index.html_gzip_598b308022ce47a8c19d1ed396581e04bebbc151e63b9cca79d5b6e00daaa5d5" +path = "static-publisher/static-content/file3663.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/release_notes/8_5/index.html_6b92adedf6ff0a203d4f2582f5d43de8499dfe3a719da03cd9b007f7521dab16" +path = "../build/minified/site/sv/release_notes/8_5/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/release_notes/8_5/index.html_br_ed9c299b853860327de8c4df9613bec0295cd895f784155898d0ba768ff61b15" +path = "static-publisher/static-content/file3664.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/release_notes/8_5/index.html_gzip_ef4ab50f526a60c81fe24c50daa2480e8ee72d4284878a331f7023230d072ee1" +path = "static-publisher/static-content/file3664.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/release_notes/8_6/index.html_fe3181c5343d401141a4e4ab0f3c6b8cc8d5bff2930d0d3a30860d77d2fb3239" +path = "../build/minified/site/sv/release_notes/8_6/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/release_notes/8_6/index.html_br_482f41dff0b035f7a07d903eed221ed8952bd4c485adebfbcbc258706fc0f67a" +path = "static-publisher/static-content/file3665.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/release_notes/8_6/index.html_gzip_130d90c94cb04023233fa6d0de0daf5446b7ba8780cde62d134414512f3d5cb5" +path = "static-publisher/static-content/file3665.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/release_notes/8_7/index.html_11925960445c7c20b7e9357a1e248dcb69dc290d90c3cd8081264cc12fc00c4a" +path = "../build/minified/site/sv/release_notes/8_7/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/release_notes/8_7/index.html_br_029bdd7cd1291907a284ce171caec1dfc911fb5e6bc4a8f689becac99edb9578" +path = "static-publisher/static-content/file3666.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/release_notes/8_7/index.html_gzip_626ccab1e6cab7d877c13f05aab14beb6d204ce281553a2e35f7a3a86b37a58c" +path = "static-publisher/static-content/file3666.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/release_notes/8_8/index.html_1f8766d7c2541b474cfb60ced2f20a18b9bea3938092be1c7c7b72244f21551c" +path = "../build/minified/site/sv/release_notes/8_8/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/release_notes/8_8/index.html_br_ed5271cde4dfc1cfcad0857a6c7c88f6ac310d7b5c95bb502ba8ff0730557bed" +path = "static-publisher/static-content/file3667.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/release_notes/8_8/index.html_gzip_30069f6e856c69928c494749742a621e439c0473344bde88b9939382ccf2052c" +path = "static-publisher/static-content/file3667.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/release_notes/8_9/index.html_283f5fa59c67a8605987e2147c058551b812953641fd0faae61a7d980817d0be" +path = "../build/minified/site/sv/release_notes/8_9/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/release_notes/8_9/index.html_br_9f9013ec7fb8c082079696e45e3403de048ea6d9df13bac9a4360f1a60bbbf90" +path = "static-publisher/static-content/file3668.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/release_notes/8_9/index.html_gzip_93f65858a519690e59ced13faab6df8a36cbb2fc7f306077a72b9e8e77663202" +path = "static-publisher/static-content/file3668.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/release_notes/9_0/index.html_cd19230571020c652ea89b69c857e357fd65c88d533910b5072b932783b3be5f" +path = "../build/minified/site/sv/release_notes/9_0/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/release_notes/9_0/index.html_br_9d3db1f1b230b41a694ba58e1288274f0252c348b6c47ffaad72a6960129d7f7" +path = "static-publisher/static-content/file3669.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/release_notes/9_0/index.html_gzip_8dbb9e3e4bec0c119e42e31bf196d8f6580c0b3c41916a5a2dfab41780d70179" +path = "static-publisher/static-content/file3669.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/release_notes/9_1/index.html_fc42e46c4a504813a5d0f04935b2f69c0d5395e4015fbd0ae6f2d102071ea5a6" +path = "../build/minified/site/sv/release_notes/9_1/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/release_notes/9_1/index.html_br_3641878ceede85151dddc9be88818bb9359d5999b5f35e179f743c8bc9b375f9" +path = "static-publisher/static-content/file3670.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/release_notes/9_1/index.html_gzip_a5b7b1d58584153920775834be230efe7eb8b6010b374f55270a954ddfa2584e" +path = "static-publisher/static-content/file3670.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/release_notes/9_2/index.html_fe9f8b53ace9e6208366cbc3e679afa89cf4ba7727320b12ff6d1d3fef00e1c5" +path = "../build/minified/site/sv/release_notes/9_2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/release_notes/9_2/index.html_br_0a7071207bfbe424db69a5ed1971b811a80c5bb4581d8e4a3e1a650da77d05d1" +path = "static-publisher/static-content/file3671.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/release_notes/9_2/index.html_gzip_ca986a6b6cb51cd0143f11044f612e70e4b6588cb22ae8259d648c88cec5267b" +path = "static-publisher/static-content/file3671.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/release_notes/9_3/index.html_7166ecffd944b60e118c14bdeb7090cb0f98ecf52c3a6a24343ccfc9b0d32be4" +path = "../build/minified/site/sv/release_notes/9_3/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/release_notes/9_3/index.html_br_a76e6bd401ed6ea0a270e09672d269c50b72035317a3184628e06a21345617ea" +path = "static-publisher/static-content/file3672.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/release_notes/9_3/index.html_gzip_8b8ac703eddc2c9d0a9097357617b9f7701370af11ab891094188435fea739f2" +path = "static-publisher/static-content/file3672.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/release_notes/index.html_0baa15c44e27ce048c09bd863378b4589abe260b0bff461f6334c066931169cd" +path = "../build/minified/site/sv/release_notes/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/release_notes/index.html_br_c689d5747a81e155b8604c8b1c98fc795aa8c1106163af3d3b7f7fb1d61666b3" +path = "static-publisher/static-content/file3673.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/sv/release_notes/index.html_gzip_a96adac50f6fba6939b538b2e7586108d11e416035d09d79ec6b48cbb01f6c8e" +path = "static-publisher/static-content/file3673.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tags.json_2b6adb6253c1c5c711fefe2dc69eaf15400f67c0a1e36973d8083b152c1a60ba" +path = "../build/minified/site/tags.json" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tags.json_br_fcb6218e34000dd022d98df43a9025de66f91782dbac07919eb9285116327578" +path = "static-publisher/static-content/file3674.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tags.json_gzip_f86dff4f76384efceb766d5839f93c4a48ea47899f28527c368c9cbb0cdb020a" +path = "static-publisher/static-content/file3674.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/admin_guide/00-toc/index.html_0d8ad4612f29e84762eaa985066edfd7dbecefe3de2d688a36a66dc3fcdfddcb" +path = "../build/minified/site/tr/books/admin_guide/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/admin_guide/00-toc/index.html_br_bc902aafa381a72a3d5603b99cfc3a7882da18725b61d43154b68bc53fd6984b" +path = "static-publisher/static-content/file3675.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/admin_guide/00-toc/index.html_gzip_6f5cf1f2fa6b57f2bcf869a743de914f4639ee99316a4c16c04784571b5752c2" +path = "static-publisher/static-content/file3675.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/admin_guide/01-presentation/index.html_cc0e365c40c85ce8daf00f972bac252f81752ff02bdbd3b0c2db4ce9ec4977fe" +path = "../build/minified/site/tr/books/admin_guide/01-presentation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/admin_guide/01-presentation/index.html_br_84c12e0d220d8bbc60cf53dcdc6d83c94e08f23c036b282552f780273ba19a39" +path = "static-publisher/static-content/file3676.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/admin_guide/01-presentation/index.html_gzip_d7cd2f9377f49f3c3bbcdc7ef38e1cca7cb21d52e43e2014a28aae10ce2edfd6" +path = "static-publisher/static-content/file3676.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/admin_guide/03-commands/index.html_8ccde1b06a45480314d04d18b3331f5610f2b38519f0356a684ccc6cb302195f" +path = "../build/minified/site/tr/books/admin_guide/03-commands/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/admin_guide/03-commands/index.html_br_01126838c342cb1b42c12b468dfa1f462df80567c8c5f0e041d8389d5b657e07" +path = "static-publisher/static-content/file3677.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/admin_guide/03-commands/index.html_gzip_d00acc880a9c595eaeaa7ff1b3155a0e2ec8cfbb2391ac5ef68990134aba6951" +path = "static-publisher/static-content/file3677.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/admin_guide/04-advanced-commands/index.html_0773459ff23dc1ec5693e645b4bad2f9bae0f342bd3225cde655d40a73a67960" +path = "../build/minified/site/tr/books/admin_guide/04-advanced-commands/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/admin_guide/04-advanced-commands/index.html_br_c9d4eb112b202362dc07451dd6be1828cab696ab4685fa107eafc7bca8b7ad98" +path = "static-publisher/static-content/file3678.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/admin_guide/04-advanced-commands/index.html_gzip_0599ea941b0d18e9bfb9b6772b81e9b4bba5f5a20a8fcf05946204ce17cfae3f" +path = "static-publisher/static-content/file3678.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/admin_guide/05-vi/index.html_189c87339102da1cdd581634af65b782613b9873ea22b4a258f3932664ab6d66" +path = "../build/minified/site/tr/books/admin_guide/05-vi/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/admin_guide/05-vi/index.html_br_6bcc67a2268de36f4343bf2ef8f2d8fa5fe3717c1daa07f6af781247bc6cb2e8" +path = "static-publisher/static-content/file3679.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/admin_guide/05-vi/index.html_gzip_21b7bd97563afb100b83b87832b471ccc4cef680683edae2c6d77f079a8af44e" +path = "static-publisher/static-content/file3679.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/admin_guide/06-users/index.html_a22b28f252b7ec1540df35e3b70efb09c48be1220ff96350d1e50fb8bcc1b29c" +path = "../build/minified/site/tr/books/admin_guide/06-users/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/admin_guide/06-users/index.html_br_98825f89b2bbd24c1e8333fa0b4e5df081ca57e24971271f95155830126b0d3c" +path = "static-publisher/static-content/file3680.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/admin_guide/06-users/index.html_gzip_b5bbf49dc4708e1585dc9d2095e157f96463d90137b5b9a975becacf23c85f41" +path = "static-publisher/static-content/file3680.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/admin_guide/07-file-systems/index.html_cbf8de0e12d20cec4dfcb74136be80e75d3e3d75b5dee2bf49b5b92229956292" +path = "../build/minified/site/tr/books/admin_guide/07-file-systems/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/admin_guide/07-file-systems/index.html_br_b2202961e2aeb090821692af54e60e40f76acb060a38179a52ab55e9b0d0c4bf" +path = "static-publisher/static-content/file3681.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/admin_guide/07-file-systems/index.html_gzip_07ef526be7f5d7ee0e48f3c024a10d67016d32962a38cd0715c9e1098dc141a5" +path = "static-publisher/static-content/file3681.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/admin_guide/08-process/index.html_1420ca5b5e5b76b34ea7aeafd1a15a5b52fce9b72e4d7a29af84f656148a636c" +path = "../build/minified/site/tr/books/admin_guide/08-process/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/admin_guide/08-process/index.html_br_48db69b16296541dcf3dedd08667742b34ec60023d67a5798ded14628d163dfd" +path = "static-publisher/static-content/file3682.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/admin_guide/08-process/index.html_gzip_5d54132afe3017a97af6d995bbda842d538d791658f26e1994c8b3628a5feab3" +path = "static-publisher/static-content/file3682.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/admin_guide/09-backups/index.html_afbd083b1f082ccc2650befcfd1887b1f55a15ec148f299b26b5a1bcd1d9c4ab" +path = "../build/minified/site/tr/books/admin_guide/09-backups/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/admin_guide/09-backups/index.html_br_b12567ed19daf0b54608250518b6c5f092c8c9e238ca0f4577fcb7ee9c71b38c" +path = "static-publisher/static-content/file3683.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/admin_guide/09-backups/index.html_gzip_14cad4bb127f64ed0089d593d226a6e008d7c1143fb1facae2b459e93211399a" +path = "static-publisher/static-content/file3683.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/admin_guide/10-boot/index.html_3682c89a16273a71092be1eae982386b186c9c76cd55c27e2e03a08a8c08c767" +path = "../build/minified/site/tr/books/admin_guide/10-boot/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/admin_guide/10-boot/index.html_br_1499b8d01cf6e123c6e35fc0904fc2585a12e17814eb6de63db6dc1c2f22804f" +path = "static-publisher/static-content/file3684.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/admin_guide/10-boot/index.html_gzip_959123a104ffcbb2984d922f7225c9558a06966672af030c9d5908d2bf6ef4f2" +path = "static-publisher/static-content/file3684.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/admin_guide/11-tasks/index.html_b9f8b5faeeb9db6abfb535433317749583392213369b2d988e8eb944fc1a1367" +path = "../build/minified/site/tr/books/admin_guide/11-tasks/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/admin_guide/11-tasks/index.html_br_8639ba478c106acd154fc98b7fba1a3c1efc731e4955fb716e676f7083699b7f" +path = "static-publisher/static-content/file3685.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/admin_guide/11-tasks/index.html_gzip_6fc6a494e3f6ebbf506472b9118e5d7392faf33b68deeabcef97fbce7814e082" +path = "static-publisher/static-content/file3685.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/admin_guide/12-network/index.html_f06fb276a9fe5e2a8fbcc3bc0466c0de82cb3b07c54d9b5691e130592e14b7c7" +path = "../build/minified/site/tr/books/admin_guide/12-network/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/admin_guide/12-network/index.html_br_61cd28f6f3b03c4ead34dbf6befeba9a05c28e9f061fb6b6324d56029588fb1a" +path = "static-publisher/static-content/file3686.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/admin_guide/12-network/index.html_gzip_62052dea9ab42e50aeb0244257af9e67ba7c640e0fbc016b53adbe965d3a2d64" +path = "static-publisher/static-content/file3686.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/admin_guide/13-softwares/index.html_c7de540b65f0c5bf543aa43e7a189679735d88285d306b6b0a9ba6ba18c2cc29" +path = "../build/minified/site/tr/books/admin_guide/13-softwares/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/admin_guide/13-softwares/index.html_br_0b4a4bf1cc5a32af50ce060dbd51efd4eb17b71065f842331490ed03f7a41b74" +path = "static-publisher/static-content/file3687.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/admin_guide/13-softwares/index.html_gzip_5601309bd7583ba59ab17c03d913e02da47d25309723b21530f1a59faa6c6a18" +path = "static-publisher/static-content/file3687.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/admin_guide/14-special-authority/index.html_f4710b142ac2967dc62a4407174f08a54d3f08d2d5ab2ee76952b7452e453c0f" +path = "../build/minified/site/tr/books/admin_guide/14-special-authority/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/admin_guide/14-special-authority/index.html_br_8224da1ad1909573e681974d18d2015be8f695b567c844e9cd0ce35e9903648a" +path = "static-publisher/static-content/file3688.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/admin_guide/14-special-authority/index.html_gzip_5e9333950c3680bdb50e61e0a6445f3884edf8b736952fb22a52249973393fe3" +path = "static-publisher/static-content/file3688.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/admin_guide/16-about-sytemd/index.html_c816e0f72122693e06d85cb5c0a272547da3ff2b3449b28b7723f4ec77a3a02d" +path = "../build/minified/site/tr/books/admin_guide/16-about-sytemd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/admin_guide/16-about-sytemd/index.html_br_a5f6249bc6cfe9669d2cbb7e241a870d899c7c4ea4f89b3ee06ae11ecefb8e99" +path = "static-publisher/static-content/file3689.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/admin_guide/16-about-sytemd/index.html_gzip_1317958f7fd1485d3e3bc9f283bd991ebc796378395ac8a2bbec3cf412b65ffe" +path = "static-publisher/static-content/file3689.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/bash_programming/01-Shell-overview/index.html_c48cd380eec098ddf8901b9a17b6319045f128b9b288f5c467bfe3508400adfc" +path = "../build/minified/site/tr/books/bash_programming/01-Shell-overview/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/bash_programming/01-Shell-overview/index.html_br_6f0667b348e04f51b609a8e606750aa721ab0b6ffb2cf8b77069c0df1f343037" +path = "static-publisher/static-content/file3690.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/bash_programming/01-Shell-overview/index.html_gzip_f221cd9ce1bb6b177b81822f6f9b195724ca9c6f563e78493a96f89693390b5d" +path = "static-publisher/static-content/file3690.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/disa_stig/disa_stig_part1/index.html_c57627bfc5d78d12cdd871663a04271619ae222ada7df3575ce7ba5208d98bbd" +path = "../build/minified/site/tr/books/disa_stig/disa_stig_part1/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/disa_stig/disa_stig_part1/index.html_br_5cf3d5ac3eeefbdabdade1f5bdf7e43c7310e8b1bb7f6608efcf9169387b7bde" +path = "static-publisher/static-content/file3691.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/disa_stig/disa_stig_part1/index.html_gzip_df697e3ce50b89122531fe4742507c300581fb22f282950e4b3eb0fa53882cd7" +path = "static-publisher/static-content/file3691.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/disa_stig/disa_stig_part2/index.html_da4ba4304ad8129a55ec10067aee7c016ac24f04ea328dc65da7bd05d2f201b0" +path = "../build/minified/site/tr/books/disa_stig/disa_stig_part2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/disa_stig/disa_stig_part2/index.html_br_10893f81b8ac3745626ce12d4e8e81ec6f672b10c7a27ca2f0a6f087116bbc76" +path = "static-publisher/static-content/file3692.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/disa_stig/disa_stig_part2/index.html_gzip_5c60b9702be4ca9476fc704fe6586f3f28208c5a98e009cff1dd16919ba30793" +path = "static-publisher/static-content/file3692.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/disa_stig/disa_stig_part3/index.html_814993f0ba3a72a4e226a0bf46c1ab2658fbe2b889efac1892e4ba690b85a64b" +path = "../build/minified/site/tr/books/disa_stig/disa_stig_part3/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/disa_stig/disa_stig_part3/index.html_br_5802c17bd1920a4439566f22288cd66c0ca33ed423b42548d7020ff618538e09" +path = "static-publisher/static-content/file3693.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/disa_stig/disa_stig_part3/index.html_gzip_00c9a0bd5bcb7cac20038653922dca64d50f460040666cf67e1a2ed5247ca6f1" +path = "static-publisher/static-content/file3693.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/index.html_c2e848725eadab79a7ca6bfbf466278fd6758914271afe68540b1f2ab814e513" +path = "../build/minified/site/tr/books/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/index.html_br_31a042aec7de1afd46cc194795a1a3a2b615f4f24d4aecf273bfce716e89c669" +path = "static-publisher/static-content/file3694.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/index.html_gzip_e46cdd650a0c9d3c17f58592f5eab62b10d8948a36be36a4903578aa678650ac" +path = "static-publisher/static-content/file3694.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_ansible/00-toc/index.html_d965dcaade843efa6ed6076ad60b3bfd4707344ec871010843a3081b55c16e97" +path = "../build/minified/site/tr/books/learning_ansible/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_ansible/00-toc/index.html_br_2227c3b0fa2414f36d2f03f1829d21c7d1692d3dd1cf9c0f8eb4e19f94a9be89" +path = "static-publisher/static-content/file3695.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_ansible/00-toc/index.html_gzip_a9995b3907742c80b64068927a5be9caf49518c5ed80bf2760f5096f7b89b71f" +path = "static-publisher/static-content/file3695.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_ansible/01-basic/index.html_1b9628098d64e1e187dc9d7bcfbb6a5404b33c2571c2fcdf21b98e158b463c39" +path = "../build/minified/site/tr/books/learning_ansible/01-basic/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_ansible/01-basic/index.html_br_8cb9f1697acdbc0da86e8ba54b17d1f0bade73cd22529d60ca60a11183e250da" +path = "static-publisher/static-content/file3696.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_ansible/01-basic/index.html_gzip_81c0d93d2b5cd1c6fd7d76494410af8b2bf8299f154f4b487ef3b5bb5ab69d5d" +path = "static-publisher/static-content/file3696.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_ansible/02-advanced/index.html_428c9bed8dbaaeb844ef80b0eb9f67805051a42e938e51179713ce875a9d46fb" +path = "../build/minified/site/tr/books/learning_ansible/02-advanced/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_ansible/02-advanced/index.html_br_acde13d1349bd56957343a37590c1605d6a7947bfadf7376ee28ee800555afda" +path = "static-publisher/static-content/file3697.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_ansible/02-advanced/index.html_gzip_da8ffe3d4bb9b81b3910a148df8a55bf98d31e2d31b546d319baeecd9462e6ae" +path = "static-publisher/static-content/file3697.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_ansible/03-working-with-files/index.html_4d7acd5dc18a343b5987059828ea475a4e7329f5af34a8b609dd94e7926ab247" +path = "../build/minified/site/tr/books/learning_ansible/03-working-with-files/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_ansible/03-working-with-files/index.html_br_d9f132b4281d84abbb2e72589c387809d053866ad2b96df15ae9c3e07a07ee77" +path = "static-publisher/static-content/file3698.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_ansible/03-working-with-files/index.html_gzip_ab74449d8852260cfcdf2131406dc9c64dfd1573549643acebf2b142219476e7" +path = "static-publisher/static-content/file3698.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_ansible/04-ansible-galaxy/index.html_df951cdea508e4f717faa96617fd92020e8e35c8f69d9a185910fe4f89dc24fc" +path = "../build/minified/site/tr/books/learning_ansible/04-ansible-galaxy/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_ansible/04-ansible-galaxy/index.html_br_5e0c15f3963def5f190ca23522c51e58187ce88d1a31df9df90c141531a867cd" +path = "static-publisher/static-content/file3699.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_ansible/04-ansible-galaxy/index.html_gzip_cc4cf0fa61f855a35fdcb63050872a31c094fb332b20aa89241b45200c87560a" +path = "static-publisher/static-content/file3699.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_ansible/05-deployments/index.html_a37d22f1fe3b591404dbdde50c86c78d04c4d6ca774dd6533093e7aef7d390bd" +path = "../build/minified/site/tr/books/learning_ansible/05-deployments/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_ansible/05-deployments/index.html_br_6b054d4dcb3f1cf7e5a39fe6392e624df12653e723dfefb6b546407f203ac83e" +path = "static-publisher/static-content/file3700.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_ansible/05-deployments/index.html_gzip_23bebc566849e064a112a4b93fb327410a421e6138276504364ff14caf7f3e2d" +path = "static-publisher/static-content/file3700.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_ansible/06-large-scale-infrastructure/index.html_011da49b5139007f40ff859594884a587883a33572a0c976f8d5442a8cfa7994" +path = "../build/minified/site/tr/books/learning_ansible/06-large-scale-infrastructure/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_ansible/06-large-scale-infrastructure/index.html_br_47006df8f067fd9571bcaa9a17c1a29a8a5bfdd26937954fc58150ce1615d0a1" +path = "static-publisher/static-content/file3701.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_ansible/06-large-scale-infrastructure/index.html_gzip_bcdf0668e86bfffe11c74a64ce40646cb7b56097b2b09cff1aae9a2c81043524" +path = "static-publisher/static-content/file3701.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_ansible/07-working-with-filters/index.html_7946255f602a9b0e7823b8954d77d004bb0b5f722997f199d17211f5981a79b9" +path = "../build/minified/site/tr/books/learning_ansible/07-working-with-filters/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_ansible/07-working-with-filters/index.html_br_7ee180c44f11e055919599f3bdb5e3cc2937701fbd616449a678ee94f980fa11" +path = "static-publisher/static-content/file3702.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_ansible/07-working-with-filters/index.html_gzip_01a1a4b132c265702c6982a6d0750369d14bcb137a52b7a50f8060a0e670617b" +path = "static-publisher/static-content/file3702.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_ansible/08-management-server-optimizations/index.html_7424aa68096084782bc29c12a9562deeb57aa81f0b99e36659764de3fb383c00" +path = "../build/minified/site/tr/books/learning_ansible/08-management-server-optimizations/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_ansible/08-management-server-optimizations/index.html_br_9743ea3653d7a24ec6c76fdd1885dfd205abd8234d39b1b6b43c8e840873413a" +path = "static-publisher/static-content/file3703.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_ansible/08-management-server-optimizations/index.html_gzip_e8047d6d490ba4b1903f010e066494fb2d79d22dc9e25ce5fc46bb227546fa22" +path = "static-publisher/static-content/file3703.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_bash/00-toc/index.html_e54ae38fac14b7c68a07feec4d109c49debe912e169a35c95d205710de128c39" +path = "../build/minified/site/tr/books/learning_bash/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_bash/00-toc/index.html_br_f73abe7ca1e78f471caa63d45854afabba8a1c30910d5f4843cbf423535cf1f4" +path = "static-publisher/static-content/file3704.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_bash/00-toc/index.html_gzip_0b703f3cd3e55e08a0578ddb2e0fa186b1f8d28f63969e317089f3a3d9b5a50b" +path = "static-publisher/static-content/file3704.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_bash/01-first-script/index.html_036d4a8ab1a64d100afe11d0e7bb0b63a14c537cc67bc7ee866e6c78b606449d" +path = "../build/minified/site/tr/books/learning_bash/01-first-script/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_bash/01-first-script/index.html_br_5f1f229663efb4c0fe2abc32472cb5b819262de896a92bc760ea46133c556470" +path = "static-publisher/static-content/file3705.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_bash/01-first-script/index.html_gzip_39fd8df91fac4caee136e7f5df5bbba01d71f221285eb8d4eb647c1de61ad7e0" +path = "static-publisher/static-content/file3705.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_bash/02-using-variables/index.html_3488026a780c5b03b9ebcc5c00a2ca1f978a98c4c260f3a52ee8bbb6549b73d4" +path = "../build/minified/site/tr/books/learning_bash/02-using-variables/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_bash/02-using-variables/index.html_br_228049e7fbe5d4ea09dda413190748cd27319811dd2ccdb71c245872a41b4dc0" +path = "static-publisher/static-content/file3706.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_bash/02-using-variables/index.html_gzip_5c9754364fdade4a91565b92de00c93c5d925f4ade1a457ace728df7529d17ff" +path = "static-publisher/static-content/file3706.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_bash/03-data-entry-and-manipulations/index.html_22b4248f5ff2acc4b6f04225bf682029f58c98afde167127219cdab29cbd6a16" +path = "../build/minified/site/tr/books/learning_bash/03-data-entry-and-manipulations/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_bash/03-data-entry-and-manipulations/index.html_br_3dc2258e74ec4162bf16af953a33f3a7536d240a2e8f4ea306996315e2d0a452" +path = "static-publisher/static-content/file3707.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_bash/03-data-entry-and-manipulations/index.html_gzip_a0209d08e87151162d6f333f2ecd11b8811efda9acf57e436e3c032f57dd76c1" +path = "static-publisher/static-content/file3707.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_bash/04-check-your-knowledge/index.html_e9629bc75b9727ba2f84da10384ef9e275c113c0cb3936366bb75d52c267caba" +path = "../build/minified/site/tr/books/learning_bash/04-check-your-knowledge/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_bash/04-check-your-knowledge/index.html_br_8a6dce256e2d652d80c82cdb64a1e0119001a1c7b059eb2b0ff74758d22425df" +path = "static-publisher/static-content/file3708.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_bash/04-check-your-knowledge/index.html_gzip_07fd919a2020062d5378921ff0742b3c665d4d3b63d09f9a9e9a1d215ab0ba6d" +path = "static-publisher/static-content/file3708.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_bash/05-tests/index.html_a940d8a5440167f931f8fe0aa3572056db44de893087a071083da51a99c150f9" +path = "../build/minified/site/tr/books/learning_bash/05-tests/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_bash/05-tests/index.html_br_f4a283850dd1aeb96096d64a912395d1dafe72645fe8970a09ceab4e543f4142" +path = "static-publisher/static-content/file3709.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_bash/05-tests/index.html_gzip_0b9320cd4674fac42f31e6071b787b6c94732a565719b0d5336e9454ee677b95" +path = "static-publisher/static-content/file3709.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_bash/06-conditional-structures/index.html_7095e463355d5edd158e7ec7fbd1cfac55d052b728d184ddd02d47e7903df26f" +path = "../build/minified/site/tr/books/learning_bash/06-conditional-structures/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_bash/06-conditional-structures/index.html_br_9809b275f8047263ba1f3225c21dcefe0770a7f672cc49f2e5ae25831489b214" +path = "static-publisher/static-content/file3710.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_bash/06-conditional-structures/index.html_gzip_235c915f9bb503896b8787658c81f343d9fb27e7c313b9446d877c2ffe5a63e5" +path = "static-publisher/static-content/file3710.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_bash/07-loops/index.html_dc130ca66a3ff56b7227a6cefc042494aab317cb792d020d42c0f0b0f8584a8e" +path = "../build/minified/site/tr/books/learning_bash/07-loops/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_bash/07-loops/index.html_br_e65f561b34d397e9c849a2dcfbf0d1c5223ae6330e84282cb58252322883fb4d" +path = "static-publisher/static-content/file3711.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_bash/07-loops/index.html_gzip_c9266d4f19a0c48efc3b3295e61bec0ed4b2c3f352378d25ec33a002b3c0258e" +path = "static-publisher/static-content/file3711.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_bash/08-check-your-knowledge/index.html_7924f28ebb67e8531f3ff50b90be9b4608813c2e0446c49ce4e2990abb36b743" +path = "../build/minified/site/tr/books/learning_bash/08-check-your-knowledge/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_bash/08-check-your-knowledge/index.html_br_5a917b9bead687f7f493ef6dcc2f261b86049e8c4b4722416eb453ec08119d3a" +path = "static-publisher/static-content/file3712.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_bash/08-check-your-knowledge/index.html_gzip_bf9e12d1b41bb9906b945748f3d1c6fb9dc12ad0b4f3c6dfa099a76c6d91a921" +path = "static-publisher/static-content/file3712.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_bash/appendix/02-variables-logs/index.html_0e798d7edb0cb6dc06b23d8e66f55c7550574caa803a1de4ced84fc11024f83c" +path = "../build/minified/site/tr/books/learning_bash/appendix/02-variables-logs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_bash/appendix/02-variables-logs/index.html_br_4dd97140a2f52cb70981cee8268b301aa235dfdfbf9384ed8b511880241649a0" +path = "static-publisher/static-content/file3713.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_bash/appendix/02-variables-logs/index.html_gzip_9a8adf5e99ab4b612722fb4698806716821a39cdb93e63b1dd9185d4a047cc94" +path = "static-publisher/static-content/file3713.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_rsync/01_rsync_overview/index.html_e5820a8f488040a93b7c903b63c969f3c236fdb8dd60e0f6fe1b877766d44c6e" +path = "../build/minified/site/tr/books/learning_rsync/01_rsync_overview/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_rsync/01_rsync_overview/index.html_br_e4ada8d0589ceed36a4dd799452ba7215c669a31c0951eca6227040a60d6f01a" +path = "static-publisher/static-content/file3714.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_rsync/01_rsync_overview/index.html_gzip_abaf803ac63b0210118c0cfa583777ad759f82ff5caccce6521eb930cd74f5c1" +path = "static-publisher/static-content/file3714.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_rsync/02_rsync_demo01/index.html_54b78d26580650254af8717e51345b2efd5dc0fddab64b0165b7d769d176d0c5" +path = "../build/minified/site/tr/books/learning_rsync/02_rsync_demo01/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_rsync/02_rsync_demo01/index.html_br_c3ea7948e6358616b22e000a66466f99b45057b26a8bdb50745be7074e92319d" +path = "static-publisher/static-content/file3715.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_rsync/02_rsync_demo01/index.html_gzip_c9de07307f26fd3b704cfae304559241c489760feacab0c2f35326a0a1996672" +path = "static-publisher/static-content/file3715.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_rsync/03_rsync_demo02/index.html_17327f3a4b02e4f11b4c602414908dfa7d39a42274629ab10213d48f7e018a72" +path = "../build/minified/site/tr/books/learning_rsync/03_rsync_demo02/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_rsync/03_rsync_demo02/index.html_br_d129d3824e3fd512e5c8a46958eabb437d47fd66ccb7a1b18fc8b9b2b1fe0e96" +path = "static-publisher/static-content/file3716.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_rsync/03_rsync_demo02/index.html_gzip_4605400a70234b28decf813ebc6d7a5c9ad3bd69943e03d5d169e6a52e44c1b6" +path = "static-publisher/static-content/file3716.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_rsync/04_rsync_configure/index.html_70a7043af176227c9eeadc708154b0478194046f8be27fc7e1fdb952d6207b83" +path = "../build/minified/site/tr/books/learning_rsync/04_rsync_configure/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_rsync/04_rsync_configure/index.html_br_845798ed32749f5986fd43fa1f929066b6474f039e214279e840a27eeb47f98f" +path = "static-publisher/static-content/file3717.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_rsync/04_rsync_configure/index.html_gzip_9128a97fee06d728a98f946e413d32125cd5273b8de0595c7ebb28a43e7aeece" +path = "static-publisher/static-content/file3717.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_rsync/05_rsync_authentication-free_login/index.html_6118cc32aed6062725f46f4521361514263430f7381299dacec2dfdbef606791" +path = "../build/minified/site/tr/books/learning_rsync/05_rsync_authentication-free_login/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_rsync/05_rsync_authentication-free_login/index.html_br_cd473eb0398ef602de8826bb2fbd3a8c433024d2d021665fc9df07bce1026629" +path = "static-publisher/static-content/file3718.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_rsync/05_rsync_authentication-free_login/index.html_gzip_5da43109f7508fc5207dd32d56821d273685a0979cba4b24c7500222ebce391a" +path = "static-publisher/static-content/file3718.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_rsync/06_rsync_inotify/index.html_eea1ac8772da35721924136dae881e634525999ad68246428229e27df5dfe997" +path = "../build/minified/site/tr/books/learning_rsync/06_rsync_inotify/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_rsync/06_rsync_inotify/index.html_br_ef950bd8672376ef003aab1d55013048398c947ad4e2145365095219b4b828b2" +path = "static-publisher/static-content/file3719.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_rsync/06_rsync_inotify/index.html_gzip_06c44af59dd4ec388b37bffab241e386186debf712b72241be31864fc8ff184c" +path = "static-publisher/static-content/file3719.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_rsync/07_rsync_unison_use/index.html_5cb8e4b652bd7349796ad22cdbe6db8fccdb57c971d70cfc16d26b3a18dc384f" +path = "../build/minified/site/tr/books/learning_rsync/07_rsync_unison_use/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_rsync/07_rsync_unison_use/index.html_br_b3657552b2d926573b205624fbbbeae45708937e125849d73fd5157349fc2eb1" +path = "static-publisher/static-content/file3720.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/learning_rsync/07_rsync_unison_use/index.html_gzip_f61349be2e0bacc5dfb22cfc871dbf6f11f7a4443fec39383b011419518f5ad5" +path = "static-publisher/static-content/file3720.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/licence/index.html_c7336822285084eb2c3515327d8cef9feadc6cab83519abe034e74ce3973b672" +path = "../build/minified/site/tr/books/licence/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/licence/index.html_br_cf7c8d1b6941d558781094892d4f7429995c0cb66f9d5c97e74fc261197b1581" +path = "static-publisher/static-content/file3721.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/licence/index.html_gzip_d53dbfb8659c9df03bf0280e04804f00ae771c75687b820b06cb3a6eddbf404c" +path = "static-publisher/static-content/file3721.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/lxd_server/00-toc/index.html_e1f2b5d819164fd3bd20310d0778fa1bf3ddabf3e590b3807da7d7fbaf2f810e" +path = "../build/minified/site/tr/books/lxd_server/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/lxd_server/00-toc/index.html_br_9cac4b2e6d18089c34ea43357579fa7d26d006b21c83ca5d7c59767dac4ff646" +path = "static-publisher/static-content/file3722.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/lxd_server/00-toc/index.html_gzip_053c391ef4315e9a4ef2d9f765dadeafb013fb1d12b53d6feeff3139a415dcbb" +path = "static-publisher/static-content/file3722.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/lxd_server/01-install/index.html_cd8852c97845097169fa520d7e9b6d779fbcd9632d70363e8d10d0b01f8da138" +path = "../build/minified/site/tr/books/lxd_server/01-install/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/lxd_server/01-install/index.html_br_9b4b553b653a091466cfaf211b5511068112250aef53df529c6d053c8aeec182" +path = "static-publisher/static-content/file3723.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/lxd_server/01-install/index.html_gzip_5b382a99c0050ab390eb53ca82bf1b4c21d1831bb3a336e6638e1c34c0a0814e" +path = "static-publisher/static-content/file3723.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/lxd_server/02-zfs_setup/index.html_f5c7f27c7d8d0cd1faccb599f002490dedab2d25b00004a09c1490fb4e5195c1" +path = "../build/minified/site/tr/books/lxd_server/02-zfs_setup/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/lxd_server/02-zfs_setup/index.html_br_14d9883a459b254069cc306555724ba72c47b6b57649c31667c089edd364f4ed" +path = "static-publisher/static-content/file3724.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/lxd_server/02-zfs_setup/index.html_gzip_2f79c6f3417256cea04fff2fbb2ef351fbe9686d415908611f3dce55810fd6c3" +path = "static-publisher/static-content/file3724.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/lxd_server/03-lxdinit/index.html_7effd53383898e2d4878611693f5fb5f5236d856fdbaed9ec950745e2ad4f531" +path = "../build/minified/site/tr/books/lxd_server/03-lxdinit/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/lxd_server/03-lxdinit/index.html_br_bedb7acfd744b7f9fa08b7a265f755ca47eed7dd771d4a4f362e3a3cef418a0e" +path = "static-publisher/static-content/file3725.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/lxd_server/03-lxdinit/index.html_gzip_638b800e1a5f73927f8e619da86011bd0d3957772f8c8e9f88eded8d03bcafd3" +path = "static-publisher/static-content/file3725.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/lxd_server/04-firewall/index.html_ad9c6786e6b17fc02afba41c16cc072cb368dd423a0ffbcb34fff8a615671cc2" +path = "../build/minified/site/tr/books/lxd_server/04-firewall/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/lxd_server/04-firewall/index.html_br_3938db70d247ff44aa53f0945d60c282cb8c75a484bec161935aa413bd678eb8" +path = "static-publisher/static-content/file3726.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/lxd_server/04-firewall/index.html_gzip_8a3b52a29145f02d8004e2892a39a164595a517106464c5563c2f38e20f1940f" +path = "static-publisher/static-content/file3726.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/lxd_server/05-lxd_images/index.html_7da4b2660c5f6334a2d0fbc338086f9f9f2c4ee36d2a363e2c3aa047c409f431" +path = "../build/minified/site/tr/books/lxd_server/05-lxd_images/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/lxd_server/05-lxd_images/index.html_br_95e931acbebb9c6482be544a01f0b65235b542e29d5d019cbddd9269f334b8ac" +path = "static-publisher/static-content/file3727.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/lxd_server/05-lxd_images/index.html_gzip_e3b899298c05ff8c4fb962df208f8f696798d55c068126be2b081699fd000d5c" +path = "static-publisher/static-content/file3727.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/lxd_server/06-profiles/index.html_eec5b6ec296c7726d9aeb27f6c37aa20ebdb555e93ecf0600791b35c154f4f94" +path = "../build/minified/site/tr/books/lxd_server/06-profiles/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/lxd_server/06-profiles/index.html_br_d1c0bb32035d45727077d9b9b3151f537444dddd756f2dbe431dfb34e83fe203" +path = "static-publisher/static-content/file3728.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/lxd_server/06-profiles/index.html_gzip_63318da2381993b269c4d24d7a29da6e9f767e78817edc1e75cceb6332b25bb3" +path = "static-publisher/static-content/file3728.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/lxd_server/07-configurations/index.html_c954f5e9f4428f05aae02e280d14be9bb498ca44595cd9873783bc43befef6a2" +path = "../build/minified/site/tr/books/lxd_server/07-configurations/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/lxd_server/07-configurations/index.html_br_f684178c69285bf7666293ef0399d70ddfc9ec14f75ce9b9662ca20525313ba3" +path = "static-publisher/static-content/file3729.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/lxd_server/07-configurations/index.html_gzip_1fe5329af61e01bd8a23744343dd7f06435a41ac2f5cbe36154614d91e92830a" +path = "static-publisher/static-content/file3729.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/lxd_server/08-snapshots/index.html_046adbbea6b422ce71d5ea255bc7eff7ed04cd123b65e322c6d4037a39315b41" +path = "../build/minified/site/tr/books/lxd_server/08-snapshots/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/lxd_server/08-snapshots/index.html_br_fb074c9e6ac19f3f6ced466bbe9c6d5fc7e3a2ad8f6908bdbbfe3c497d756fe7" +path = "static-publisher/static-content/file3730.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/lxd_server/08-snapshots/index.html_gzip_6ddc72a251b0ce790342977612d9e2b40692060ac18187a4d284a30fd29ba98b" +path = "static-publisher/static-content/file3730.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/lxd_server/09-snapshot_server/index.html_19ca67c875a0a1c0797419b79addbd965c24829aa0d175f02e5a8e2eec42fd67" +path = "../build/minified/site/tr/books/lxd_server/09-snapshot_server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/lxd_server/09-snapshot_server/index.html_br_a59801b94bbb8d202d26a8aed25bcb1a37af8ab018b1c9f7c165cf0ad2f691f8" +path = "static-publisher/static-content/file3731.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/lxd_server/09-snapshot_server/index.html_gzip_7877db51e49bfeaeb9090077fdf7c5bda396e36e636d45d53e71c32d9eafb83e" +path = "static-publisher/static-content/file3731.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/lxd_server/10-automating/index.html_1e44ee552efa21823f80b798f15b3b2283ea20da845478e457b67c76e93bdbb4" +path = "../build/minified/site/tr/books/lxd_server/10-automating/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/lxd_server/10-automating/index.html_br_f21c0b5f6a964f86263af0ddb419f1b630fd76f99c80b8befe5f160cb2b6c226" +path = "static-publisher/static-content/file3732.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/lxd_server/10-automating/index.html_gzip_37e345ed79209451c94010ec74f0f213d5ccbad7b67cab330234c75a4df0cdda" +path = "static-publisher/static-content/file3732.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/lxd_server/30-appendix_a/index.html_9c7ed20db9bc951cebabe27a19e54991166b85b37151dfc39b932d6a55822086" +path = "../build/minified/site/tr/books/lxd_server/30-appendix_a/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/lxd_server/30-appendix_a/index.html_br_e80dea9161e1cf3d582ffb96d8e417a84ee618343356274ebfe0dfed86e5d219" +path = "static-publisher/static-content/file3733.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/lxd_server/30-appendix_a/index.html_gzip_125d1d68d6ef74cec42299e4e97ba017840b15f69fa1d5ebe94cc2c2c63b6900" +path = "static-publisher/static-content/file3733.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/nvchad/additional_software/index.html_cf4d428969e90b3cd11c852200f397299530bf4fe4d086fa2bc39912c93a81a6" +path = "../build/minified/site/tr/books/nvchad/additional_software/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/nvchad/additional_software/index.html_br_984d0e82fd9b0f5ad0eec03d073b4d8e1b39315bf0ca449725182dfb1dc5179c" +path = "static-publisher/static-content/file3734.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/nvchad/additional_software/index.html_gzip_0d967508140cb097193269491ee1e0ea665e30bf05b6648bd01036a6baf177d8" +path = "static-publisher/static-content/file3734.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/nvchad/index.html_f8cd1a9d352fe61908f07edbc00d7c7ec081bb00315dc50320ca2a8bd68d22d8" +path = "../build/minified/site/tr/books/nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/nvchad/index.html_br_fe6ab39063f4c169ec856199217ba2e6a6da021a18cd76a9f19f2b40272e7d46" +path = "static-publisher/static-content/file3735.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/nvchad/index.html_gzip_e3b85ddd5f4da2770475d217884c4f892a1712d699b7e7e6cea64f6ddfe85209" +path = "static-publisher/static-content/file3735.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/nvchad/install_nvchad/index.html_8f0b51d0ba4ae589385183144beb4b6688cde73069fb9c35ba72b6e1f2ccbffb" +path = "../build/minified/site/tr/books/nvchad/install_nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/nvchad/install_nvchad/index.html_br_e665c2190529e76f7bfd5d7c26831f61358533bba268a118b9cf6724369a58a2" +path = "static-publisher/static-content/file3736.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/nvchad/install_nvchad/index.html_gzip_0bbfcd7097884af4941741b9e18f4793e91e4d78b19b6518687bbb60502c74a7" +path = "static-publisher/static-content/file3736.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/nvchad/install_nvim/index.html_06822fe00151919d0f5e0051cb4336bf34b357ce586435e178da2487fe2aa4b1" +path = "../build/minified/site/tr/books/nvchad/install_nvim/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/nvchad/install_nvim/index.html_br_3c14115b1ee740c005db73f0f052e492099047ab4fefa57bd5f9892da04bfc15" +path = "static-publisher/static-content/file3737.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/nvchad/install_nvim/index.html_gzip_b22937529de85b6e250e664c40184e4f56f86ce619320129148aac0cde41ec19" +path = "static-publisher/static-content/file3737.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/nvchad/marksman/index.html_c74768c4102cacdc0764d46fc09b95839c8079a0bb8b3700481c78c224b01b56" +path = "../build/minified/site/tr/books/nvchad/marksman/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/nvchad/marksman/index.html_br_13cc6df3c4c4203fce2c758c73590b439ac98a093d4484383490104584d3c256" +path = "static-publisher/static-content/file3738.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/nvchad/marksman/index.html_gzip_510b4f027a0689d50115a29de5a92b1224ff958d37cefe28ef89c7d6e69e8a09" +path = "static-publisher/static-content/file3738.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/nvchad/nerd_fonts/index.html_e1f46d5a0a3e5ba3ab54e6e634f487656a398ac55d1d7ec31282be88558fbd87" +path = "../build/minified/site/tr/books/nvchad/nerd_fonts/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/nvchad/nerd_fonts/index.html_br_b061479567baf776fb8e05ee1929f07ea7575a2e490a5d7af4bdbe39f113e67d" +path = "static-publisher/static-content/file3739.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/nvchad/nerd_fonts/index.html_gzip_c515d28eb29e4194dfd27b82485b9f2a35ec95685ad1bf3550ba5e9c36d19128" +path = "static-publisher/static-content/file3739.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/nvchad/nvchad_ui/builtin_plugins/index.html_b27220d547cd92ed7fdbe15f480ce17b5bc3b8b1c85ad642187183f9340fe644" +path = "../build/minified/site/tr/books/nvchad/nvchad_ui/builtin_plugins/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/nvchad/nvchad_ui/builtin_plugins/index.html_br_5ea2c7dc32afe3137b96720d0078d07d0477ced82815ff26fec0e8666fbb36bc" +path = "static-publisher/static-content/file3740.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/nvchad/nvchad_ui/builtin_plugins/index.html_gzip_fc24399f95863774bdacca8d1ae477fbcfa03902fbd031fe9ebd49ab9eee717b" +path = "static-publisher/static-content/file3740.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/nvchad/nvchad_ui/nvchad_ui/index.html_2d3a69b0712138c1ce8b606b3c054f97a6907c00ed22e18498712662c2c21187" +path = "../build/minified/site/tr/books/nvchad/nvchad_ui/nvchad_ui/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/nvchad/nvchad_ui/nvchad_ui/index.html_br_725447e0735c07c56941fe814977cbaaf5f2fac18585543a814b435d4f83622a" +path = "static-publisher/static-content/file3741.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/nvchad/nvchad_ui/nvchad_ui/index.html_gzip_e4462446ab6bd6b9aeca0d35649fb43e509affd560fdd2bebc07074bc8f4e483" +path = "static-publisher/static-content/file3741.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/nvchad/nvchad_ui/nvimtree/index.html_a267ec470c3eaaec8769420edc63e16eab8acf6bd7127341ab806bbd51349a94" +path = "../build/minified/site/tr/books/nvchad/nvchad_ui/nvimtree/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/nvchad/nvchad_ui/nvimtree/index.html_br_83d3146d8c04ba69baf2a057a8a467cf68322ddaf4c77df7dd10469c0ca76beb" +path = "static-publisher/static-content/file3742.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/nvchad/nvchad_ui/nvimtree/index.html_gzip_add7204d06a8c77ef1852823060b3f6f96c421cda4aa70d683d5e7e82e5ff693" +path = "static-publisher/static-content/file3742.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/nvchad/nvchad_ui/plugins_manager/index.html_569c515cf291b09f5a165f93b87eebfc83116e951acbb62c2dedfbc2768b2554" +path = "../build/minified/site/tr/books/nvchad/nvchad_ui/plugins_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/nvchad/nvchad_ui/plugins_manager/index.html_br_ec394759e10913b87b4a8fdb46c562716110f6f96ec950f5b9b3425613fa3de5" +path = "static-publisher/static-content/file3743.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/nvchad/nvchad_ui/plugins_manager/index.html_gzip_d707eb2ccb53e39ee43073a76a84c27f20f31727d6d3e1da1d9a8c4f49c3ea63" +path = "static-publisher/static-content/file3743.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/nvchad/nvchad_ui/using_nvchad/index.html_3f43119e1530b33ebbec6084bf91b5b684ea9c09ecbb11aa08eb3fb540224fef" +path = "../build/minified/site/tr/books/nvchad/nvchad_ui/using_nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/nvchad/nvchad_ui/using_nvchad/index.html_br_8e333c87c354f7e9c324e0b796440362d83acfa20de2cf0df131a6c7f19d6701" +path = "static-publisher/static-content/file3744.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/nvchad/nvchad_ui/using_nvchad/index.html_gzip_824525ab7a2ad8cc4271922082819674ecd4e9efe9a3bb11b1dfea26846c8620" +path = "static-publisher/static-content/file3744.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/nvchad/plugins/index.html_a5f2a07c2a71a1716b7e0087c828043393d4e96f38a18c41478e51ee72857784" +path = "../build/minified/site/tr/books/nvchad/plugins/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/nvchad/plugins/index.html_br_5a7dc107a604bf0dfae6b260995e2a2680638ee949687f301350fac9ec1d6281" +path = "static-publisher/static-content/file3745.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/nvchad/plugins/index.html_gzip_40c2008aa134e7cd68d20fe0fef92501a23fb4a3758e7af4bef8dcb0dd061475" +path = "static-publisher/static-content/file3745.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/nvchad/plugins/md_preview/index.html_db87954ae26acec448db904b9cc282a2ae30180faff174a3c67e7a48b5d79791" +path = "../build/minified/site/tr/books/nvchad/plugins/md_preview/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/nvchad/plugins/md_preview/index.html_br_965c2eb310b25c071d6b3afa7c762ce9c24ff375fb160f8655aee0241b35de2e" +path = "static-publisher/static-content/file3746.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/nvchad/plugins/md_preview/index.html_gzip_be2e2ac10b0e77123d27016c1788f040c231e6814059b9ad5c5d3c8549e12984" +path = "static-publisher/static-content/file3746.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/nvchad/plugins/projectmgr/index.html_7ad3db1f6236ca28dc738b3b2ee0a153096dce84811285c1a17bae5ac9a09fa4" +path = "../build/minified/site/tr/books/nvchad/plugins/projectmgr/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/nvchad/plugins/projectmgr/index.html_br_15e75f1dcf7891cf2bca6b87673ffbe8cd7f5b43c954844c21a538713ef275ee" +path = "static-publisher/static-content/file3747.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/nvchad/plugins/projectmgr/index.html_gzip_df0abf05fec3137769e83cf6ed983b9587b2f4e7a0959b883e78e22171634c56" +path = "static-publisher/static-content/file3747.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/nvchad/template_chadrc/index.html_3f4f6e2f4e35bcb2ffd02067b9ded6c203b264805bedd5a0470b2b7c3bbdffe3" +path = "../build/minified/site/tr/books/nvchad/template_chadrc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/nvchad/template_chadrc/index.html_br_4ecbbec439a4840483059199f897a220782d2f62df666a6fcef95cba86ea547f" +path = "static-publisher/static-content/file3748.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/nvchad/template_chadrc/index.html_gzip_4dc5fbdfa627576d127dffc52968b04ed07ec2fe5738a5d80b9218a7de747f28" +path = "static-publisher/static-content/file3748.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/nvchad/vale_nvchad/index.html_b7186752c1ae44567f9f9744e4c69ff74d05506fe046156126ac39db2ba6a305" +path = "../build/minified/site/tr/books/nvchad/vale_nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/nvchad/vale_nvchad/index.html_br_941bf8ad2bea769129ebe5cde61ecbe5d6d422e2a06e1f505fc864152c4a3d0b" +path = "static-publisher/static-content/file3749.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/nvchad/vale_nvchad/index.html_gzip_23e664538ff829bab25b15afce2a0ca64d7794a138826871d59281e2abbcebea" +path = "static-publisher/static-content/file3749.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html_be19c15f53b9096f4bffd75deb97bc794c29a1214d7e2be0562ab61133ecbc95" +path = "../build/minified/site/tr/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html_br_3afaf48c794b97b96eebeb1eaa6994ce746033be04b9a5b7dd942046c834fc00" +path = "static-publisher/static-content/file3750.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html_gzip_9476b45e7a821554b8b1821227bc57e49828eba8a69b43d0d27ac8335e6e738c" +path = "static-publisher/static-content/file3750.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/sed_awk_grep/2_grep_command/index.html_9d726080ced7a41c6123a9ef1a617529b3c89a0000a852775424360820264cc3" +path = "../build/minified/site/tr/books/sed_awk_grep/2_grep_command/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/sed_awk_grep/2_grep_command/index.html_br_a3b0aa17450811b0f39833dcc3f01458e50e95217f784adea1a66073ab856f51" +path = "static-publisher/static-content/file3751.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/sed_awk_grep/2_grep_command/index.html_gzip_8df1c4da4ee66af49efca0542bc3de9eea91d68d8a01be79d711a6a2803d7cb7" +path = "static-publisher/static-content/file3751.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/sed_awk_grep/3_sed_command/index.html_d4c7748acad28e92d0d38eb06bcc8a2b4c598d57f5066d43e7344297ea6b47f4" +path = "../build/minified/site/tr/books/sed_awk_grep/3_sed_command/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/sed_awk_grep/3_sed_command/index.html_br_8bf8674e6709489690eceeb829fc70714366409c3e39276a75b72881ed80097a" +path = "static-publisher/static-content/file3752.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/sed_awk_grep/3_sed_command/index.html_gzip_ced3be514cfcfb632df9d646551a0cfb6b1e2e48459505eab70bc378b19c8e50" +path = "static-publisher/static-content/file3752.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/sed_awk_grep/4_awk_command/index.html_411bf8f1a90a9ffb2d470cecc942fb261cc1a3bd13e71f23301dc34101828218" +path = "../build/minified/site/tr/books/sed_awk_grep/4_awk_command/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/sed_awk_grep/4_awk_command/index.html_br_a8c68b9dafaebdbfa8186e4b6445c117fadabc548376efbc238ca001dfebd2f4" +path = "static-publisher/static-content/file3753.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/sed_awk_grep/4_awk_command/index.html_gzip_1f284d5bf61b7c7e142cec472a9d245db4873dd89e960827f4bb1d2f88dfdf82" +path = "static-publisher/static-content/file3753.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/sed_awk_grep/index.html_801f58be828b4a9073d1b4f74ae76d1cfd85ad0b4b02e3817677d0674977266c" +path = "../build/minified/site/tr/books/sed_awk_grep/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/sed_awk_grep/index.html_br_d880f09da48d204419a64694f51f9b14c6586dffd3158f6ce721a4c294cd7847" +path = "static-publisher/static-content/file3754.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/books/sed_awk_grep/index.html_gzip_771794cef51d617cadf8c473b80f952c9979c8f3594d1986110cfa1868769c8f" +path = "static-publisher/static-content/file3754.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/containers/docker/index.html_499c9121b0cb68e9f100ea77561d2f769523699677acb93babce334a62fc63cf" +path = "../build/minified/site/tr/gemstones/containers/docker/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/containers/docker/index.html_br_98151245384ab91118d1e15530c50d777eabd876f97906b905a8acfb87847d26" +path = "static-publisher/static-content/file3755.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/containers/docker/index.html_gzip_928551dce46a91fb8c9498174bc8ad5bd2eb00f0b844756f1165bf1de4ba94aa" +path = "static-publisher/static-content/file3755.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/containers/podman/index.html_5c903815fe57f42f20fdeaf522f86c04f288c2194784c01ecef67b738b7f2ac7" +path = "../build/minified/site/tr/gemstones/containers/podman/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/containers/podman/index.html_br_75fea6e358007615c1599229e653959aece3a5ec6558c57ff1a00ee588ce2136" +path = "static-publisher/static-content/file3756.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/containers/podman/index.html_gzip_845cb1fa554120af33133567acbcf45294ec1f5d6d09812626394572e48224c0" +path = "static-publisher/static-content/file3756.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/core/view_kernel_conf/index.html_6d176bc8ede8efa00c825c5da719cba6c43de9813c3ad356e2f5724cff6482ab" +path = "../build/minified/site/tr/gemstones/core/view_kernel_conf/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/core/view_kernel_conf/index.html_br_82abef259de1632ca70d969302681848499a27797a4b3ac8423e0d0002cbc305" +path = "static-publisher/static-content/file3757.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/core/view_kernel_conf/index.html_gzip_9abcabd85d1e96e7fb58fd5af6b8524ed42eb75ed366e070746df0a3a1a8126d" +path = "static-publisher/static-content/file3757.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/dnf-swap/index.html_87242283eddcf3ab1cb72cf175e1bd779006fbcff69487fa599e7c4d06cb34bc" +path = "../build/minified/site/tr/gemstones/dnf-swap/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/dnf-swap/index.html_br_c24f75f8ce3cff1ae65a330aa6e77313ec36bd0bdc7436ba113751018eb2e6bc" +path = "static-publisher/static-content/file3758.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/dnf-swap/index.html_gzip_2273859d12e511767791df1dd9f976a5d0fa116a62e29e25913ea04cc176675d" +path = "static-publisher/static-content/file3758.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/gemstone_template/index.html_7b1997171a0f02518dc97636ecb940ba4cb2c21f30c25780371d46fd68ba190a" +path = "../build/minified/site/tr/gemstones/gemstone_template/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/gemstone_template/index.html_br_37009c22ee0afe4f93bd7fc0f14901f56f16cf59225c17da5d9b88be67dcc3bd" +path = "static-publisher/static-content/file3759.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/gemstone_template/index.html_gzip_f378453f6cbfd72b3ec2a9674f5a86afffd6bbfa57258f2e3f38956dc9f146db" +path = "static-publisher/static-content/file3759.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/git/00-gh_cli_installation/index.html_c358114c14680251640dc79a38fe063d8b2f81044988ecd6105cbaea4643d54c" +path = "../build/minified/site/tr/gemstones/git/00-gh_cli_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/git/00-gh_cli_installation/index.html_br_e6521262f1c412a2b62108c6db182e6e2f2f1340d370bec7cc369af4bcd90537" +path = "static-publisher/static-content/file3760.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/git/00-gh_cli_installation/index.html_gzip_e2a4570d7fafdba209312662e1e1dd55abf1c3dc135df4e18c6dcd77017de23e" +path = "static-publisher/static-content/file3760.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/git/01-gh_cli_1st_pr/index.html_81b39e5da6d8d288d826d1e25994438722659e5c9fbcf6301f20b0ee71a56f1e" +path = "../build/minified/site/tr/gemstones/git/01-gh_cli_1st_pr/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/git/01-gh_cli_1st_pr/index.html_br_5cc49209e1881c04d773029bf56325ba742b567188b52e1532cfacb870869a69" +path = "static-publisher/static-content/file3761.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/git/01-gh_cli_1st_pr/index.html_gzip_04530a6d489f290aa98ff0c405d7477fa461f82af7c5fd0aca6af5307f848f99" +path = "static-publisher/static-content/file3761.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/git/02-gh_cli_edit_pr_title/index.html_10b453cf2c88c59087452796519a82fd68a523bc4ea6670af91ad6836091f580" +path = "../build/minified/site/tr/gemstones/git/02-gh_cli_edit_pr_title/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/git/02-gh_cli_edit_pr_title/index.html_br_9ac34c96b3a116386f08c7f09841bc8c5cfb60f63e46ec01f09fd686b78128c7" +path = "static-publisher/static-content/file3762.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/git/02-gh_cli_edit_pr_title/index.html_gzip_068749128567e26e00d9284812e35c90f268353d12a04056195da27394181b77" +path = "static-publisher/static-content/file3762.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/git/02_github_web_edit_pr_title/index.html_077948cb12efef976e2450af939720bc274d628697b66043ecbbb55fc412dc9a" +path = "../build/minified/site/tr/gemstones/git/02_github_web_edit_pr_title/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/git/02_github_web_edit_pr_title/index.html_br_82f3397de6d6ace6880153d21d69de1465c35186535378fc6de431b29b2d8772" +path = "static-publisher/static-content/file3763.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/git/02_github_web_edit_pr_title/index.html_gzip_9c35e157ee618e0791a055bfb8d4b1270aa130ee52f7ae169428eff30d366297" +path = "static-publisher/static-content/file3763.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/git/feature_branch_workflow/index.html_091e01b388e63f2292499c88b45cab618a7abd8488ee9c2716c324b6adc5acb0" +path = "../build/minified/site/tr/gemstones/git/feature_branch_workflow/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/git/feature_branch_workflow/index.html_br_092354722385a0ae56c2c0392a703137adb2bcec758393d2eb7ddac86710e216" +path = "static-publisher/static-content/file3764.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/git/feature_branch_workflow/index.html_gzip_8aaae6c8a7ffbc0753afa2d3265c192d64d0a3d328183b666e5094423282c7c8" +path = "static-publisher/static-content/file3764.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/git/fork_and_branch_workflow/index.html_187f913db7f9cdca1ffcb45c2d399616847c347edb3b863560b2ebfd8ec7a0d0" +path = "../build/minified/site/tr/gemstones/git/fork_and_branch_workflow/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/git/fork_and_branch_workflow/index.html_br_96fffea62faf6cba24df4086308f3d19da7821c8c864eef410513a847e5af7d7" +path = "static-publisher/static-content/file3765.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/git/fork_and_branch_workflow/index.html_gzip_e8f9dc780ada2a8c265b7858918e1a7f5e68ae0a9a18c2820e0badb6d4e464df" +path = "static-publisher/static-content/file3765.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/git/git_pull_vs_git_fetch/index.html_c3398166797ea8abc66b7e4f706f66e816a3bdb63f477e46320d62b878d00849" +path = "../build/minified/site/tr/gemstones/git/git_pull_vs_git_fetch/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/git/git_pull_vs_git_fetch/index.html_br_d44c5219064fecdbb45928d6cea0c40604abe0d40930b46c7434bafc14168f9a" +path = "static-publisher/static-content/file3766.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/git/git_pull_vs_git_fetch/index.html_gzip_ae09291fd6e5914b2eae47160af03ce56fabb6409fe35a96341baa36c54e97dd" +path = "static-publisher/static-content/file3766.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/git/git_remote_add/index.html_3be07cc62c9a1f09c7e710bf02f9bba8e0e3ee18ebef154842f18430cbae5863" +path = "../build/minified/site/tr/gemstones/git/git_remote_add/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/git/git_remote_add/index.html_br_c5dfc67763e343ca2afedd07aea9122710f687294f60434f179aacf0fdb71aca" +path = "static-publisher/static-content/file3767.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/git/git_remote_add/index.html_gzip_8547815e6b184868b1d1119fb8d7327b309e142832915f56ec1b42e4a17bd055" +path = "static-publisher/static-content/file3767.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/git/tracking_and_nontracking_branch/index.html_3ddba3f899008e1afc37f09229d0303efe53633ed7a3402b99cdfb1c9ba35de7" +path = "../build/minified/site/tr/gemstones/git/tracking_and_nontracking_branch/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/git/tracking_and_nontracking_branch/index.html_br_3a63a275a8135b5b0578da5fa5d992d4854b2141868a06d693515b38d5026952" +path = "static-publisher/static-content/file3768.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/git/tracking_and_nontracking_branch/index.html_gzip_e994ac0508b82119e9c24e7d8c992a3bd25457e7e35f6919367080f9b3f264ee" +path = "static-publisher/static-content/file3768.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/htop/index.html_f957d6688d09a87357f10101559237fc8aa3146c117189406bb6f6610f33579f" +path = "../build/minified/site/tr/gemstones/htop/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/htop/index.html_br_3fe5f4d01bc63f06107ba785f69ec5dca36c16e7eaa81c3909e28a955386b6db" +path = "static-publisher/static-content/file3769.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/htop/index.html_gzip_516e20cedc5802f6d98e39772c0ebd30995c44c213e35fa0b95c945e790970c4" +path = "static-publisher/static-content/file3769.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/https_rsa_keygen/index.html_527c22ace58b25c9197c5d010bb1d930442a7cae93f2a088b14d0101b720af6c" +path = "../build/minified/site/tr/gemstones/https_rsa_keygen/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/https_rsa_keygen/index.html_br_a8c904cf0103fec130e7d11b12e728812bb323f9ab820db5c19ad83137fdd060" +path = "static-publisher/static-content/file3770.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/https_rsa_keygen/index.html_gzip_e673dc2f99f1d60dee0190235850ccc31c3f4bee99057a73fe1f5d555ad41b95" +path = "static-publisher/static-content/file3770.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/index.html_9261ee3366c372f14760ae231aefa975e55e4dd1ea3ddb95bc4d9b952f0fbff5" +path = "../build/minified/site/tr/gemstones/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/index.html_br_713f4dc944d43fea2e1444ad21f638ae65d94603b79435bd400f7d301c3f44df" +path = "static-publisher/static-content/file3771.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/index.html_gzip_d9bfba5a2410bfc6ef5b5f0b628d4bfe51d8c6a7f1b34fa65237f0afeb1bf5d4" +path = "static-publisher/static-content/file3771.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/markdown-demo-v2/index.html_e584a1f7634db31aee3e007054f6264012c6ef1335674c165b621b0a35d3e474" +path = "../build/minified/site/tr/gemstones/markdown-demo-v2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/markdown-demo-v2/index.html_br_4018643fd903aa2869fb53b604620a7cb958e18603a1ed4b9f14a3e7bd3ec368" +path = "static-publisher/static-content/file3772.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/markdown-demo-v2/index.html_gzip_59b356167c950330c7120248725f957777b89e676147419403e9f256af8b021a" +path = "static-publisher/static-content/file3772.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/network/RL9_network_manager/index.html_c02354bab0be04968a69c50d2d648e64b66d8337353dfcf6ea0155bb4f68022e" +path = "../build/minified/site/tr/gemstones/network/RL9_network_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/network/RL9_network_manager/index.html_br_bc290932d6865e45be53b8618c7719e67db1b3b62c73a7c451a1b1664bd9ef26" +path = "static-publisher/static-content/file3773.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/network/RL9_network_manager/index.html_gzip_e9c0e3e7ec16c77dd32e31fae0d66137b3e2ba316a0d63b10c2b65f1e8372bcf" +path = "static-publisher/static-content/file3773.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/network/iftop/index.html_e068d501317955ce2ae04b6925a26fad276f0360f6e3f661e2d3c24e5a497193" +path = "../build/minified/site/tr/gemstones/network/iftop/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/network/iftop/index.html_br_76b8a48df79abdbe8bd5674ec3d9b0c0685f35e6697148582f01d8ad46a33e3b" +path = "static-publisher/static-content/file3774.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/network/iftop/index.html_gzip_dca81e50b833ce30f06232f99cb029d3c63e8d562f7ddf2c3b8d74fcb8e4bbb2" +path = "static-publisher/static-content/file3774.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/network/mtr/index.html_db36fef453b5fcf811e4c627cea4a23e0de0ccca01dbc9b80a9be7357d92a8d0" +path = "../build/minified/site/tr/gemstones/network/mtr/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/network/mtr/index.html_br_431a81240ab76333ca1616bf3854f6661f5c6d8fa1c7318646f56edf511be667" +path = "static-publisher/static-content/file3775.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/network/mtr/index.html_gzip_077d6746c5dad6c381cc3f5d503295af80be2ab317dc79b93d9df5afe9c5a363" +path = "static-publisher/static-content/file3775.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/network/nload/index.html_e15407023e0b336a9f5d3658673c5c20e6685d373488081dd3cfc9ad6bb911ef" +path = "../build/minified/site/tr/gemstones/network/nload/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/network/nload/index.html_br_0347c53ae1c68b5ffd965163bdf21403e70bf32ec4bf23141721b25c28be5158" +path = "static-publisher/static-content/file3776.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/network/nload/index.html_gzip_ff3f7ad7dbf976c8ee2bd7805dc9e09bc25da1a3f797a66d300c77e6378095fb" +path = "static-publisher/static-content/file3776.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/network/nmcli/index.html_900361eaf4c01f9b41f72c9daa49b535e11540172f1984edcacf8e776b39abf1" +path = "../build/minified/site/tr/gemstones/network/nmcli/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/network/nmcli/index.html_br_3b3157f832e5cfd9739be63187dab43185849d8ed5906dbd9b60005533ca3221" +path = "static-publisher/static-content/file3777.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/network/nmcli/index.html_gzip_e0cf79726cf419e6e2831453343ab9bb9382262558d4f063ac8bde12179f85d0" +path = "static-publisher/static-content/file3777.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/network/nmtui/index.html_0449b65ed2c5aa6f5e0876014c50b0dcbc1c81e67f060c0227f68d93f736001e" +path = "../build/minified/site/tr/gemstones/network/nmtui/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/network/nmtui/index.html_br_fe9f00d4f0d9e06975e7c2b1793e6a079f752ccf4f924f4b72c4b5fd6a3eec57" +path = "static-publisher/static-content/file3778.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/network/nmtui/index.html_gzip_f81ef894ee94d9ad17ccb19ae2e7bd4cd158abcaccdad66b62449a302a8985aa" +path = "static-publisher/static-content/file3778.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/perl_search_replace/index.html_f57ff52c31d4b7d7a7af2ecc8838efd74fd89d264b916c8fcd0262b8da94d826" +path = "../build/minified/site/tr/gemstones/perl_search_replace/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/perl_search_replace/index.html_br_4252a69328d051a000d07c96c6e84ed064c3d2911b8b44064597f1d0b94e0c85" +path = "static-publisher/static-content/file3779.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/perl_search_replace/index.html_gzip_19c3d93ca964289f5e48b39b03dbf894347760a92f77d9f47ab8632e5db51f12" +path = "static-publisher/static-content/file3779.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/rpaste/index.html_e1cb951779ba09c7227736505a945eeae434e26aa0669be2b4ba0f1adac50601" +path = "../build/minified/site/tr/gemstones/rpaste/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/rpaste/index.html_br_9bfa528d336c814cc41785622a997b151d1946f0acb1668017c200dd0b035195" +path = "static-publisher/static-content/file3780.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/rpaste/index.html_gzip_f881f84011a6dfc96a415debbb303b67269b5600839bb7e1a48281c09bb961e3" +path = "static-publisher/static-content/file3780.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/scripts/NoSleep/index.html_850e69f9262d7ce9dd866ac91ced71d2f8d32be0bbd34f3cb3b6e6da53f09852" +path = "../build/minified/site/tr/gemstones/scripts/NoSleep/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/scripts/NoSleep/index.html_br_3929e0668e2e32db784f4fd7bf83b729a5261a590d927f4f3a533225cf6336d9" +path = "static-publisher/static-content/file3781.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/scripts/NoSleep/index.html_gzip_5f68d595150c361f9eef5bb29dd932a4230d58de35b4ab3efed70708d6cd023f" +path = "static-publisher/static-content/file3781.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/scripts/bash_stub/index.html_a6c0aaff796c119c27c3ea5cfba3331f8b0e9cf08279747dafd6b6706daad3bb" +path = "../build/minified/site/tr/gemstones/scripts/bash_stub/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/scripts/bash_stub/index.html_br_88171abcdb0993f93af63a82056e8e9cc4410f79ab21988e3be71b19c9ea26d7" +path = "static-publisher/static-content/file3782.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/scripts/bash_stub/index.html_gzip_88735db09cacd3c84e0453f00a2c2ebd0e1ecec0978bcd76a955b6617c220fa8" +path = "static-publisher/static-content/file3782.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/sed_search_replace/index.html_21b48ecf58a111177fdcd7b68dc40d7d223a43a579f70b172ba0415b5ad51065" +path = "../build/minified/site/tr/gemstones/sed_search_replace/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/sed_search_replace/index.html_br_1edc8f70e6fa0e2d5575beca9b01612a1117c6ccf7a9030d86aaca3be966edd6" +path = "static-publisher/static-content/file3783.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/sed_search_replace/index.html_gzip_38554ef7168ab8915e2313ab884cd1e835e28764ecb1e37bcfafb8b066928b04" +path = "static-publisher/static-content/file3783.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/setup_local_repo/index.html_d42dc2f9c5764db700a6d0a1042dbeddfe0364fbe32452317ad624ffa3907ae2" +path = "../build/minified/site/tr/gemstones/setup_local_repo/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/setup_local_repo/index.html_br_05a2d28aa4f86f00fed5429cd33061ab0f2955e8447bb40b96346a160a2e92f6" +path = "static-publisher/static-content/file3784.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/setup_local_repo/index.html_gzip_c32b2508af50c2ef588992fa5f4f4296f77b0ec4bd442471cb8730b87605f2da" +path = "static-publisher/static-content/file3784.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/string_color/index.html_678ca08f32044a26b62f1aec4fc520fa274face269d6155f272b0b94dae33858" +path = "../build/minified/site/tr/gemstones/string_color/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/string_color/index.html_br_5449ff615c16f34d1aa49e2173cf116ca562b6de55203ef8d7356a843ac3ec93" +path = "static-publisher/static-content/file3785.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/string_color/index.html_gzip_63697aa27b75b11106a21018fbad1fafb340f99f7436d96bbd48075e161c87a3" +path = "static-publisher/static-content/file3785.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/systemd_service_for_python_script/index.html_a15109495ae46043836ff883881f0e9c2dca8584bdcdb21fd5fe223cce1f0c7d" +path = "../build/minified/site/tr/gemstones/systemd_service_for_python_script/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/systemd_service_for_python_script/index.html_br_2851ff4c16588f2780655cbd02378b05751269b850a562b63285e18976c9ce6e" +path = "static-publisher/static-content/file3786.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/systemd_service_for_python_script/index.html_gzip_a62a2cc09ea3ead12b6f6ba9da7e2b922309c64e9e1889fe81c1c25fa1c59d8c" +path = "static-publisher/static-content/file3786.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/test_cpu_compat/index.html_fde236f469e56307805b8886b16071040c0b344441e1ca8e41c46fa59e486dd6" +path = "../build/minified/site/tr/gemstones/test_cpu_compat/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/test_cpu_compat/index.html_br_fbe63656e63790a695dfd50f0f7f743892e0a456cfb83c05d0b0149956cb1e39" +path = "static-publisher/static-content/file3787.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/test_cpu_compat/index.html_gzip_cc325cad526c727ca14cd4ddef61915e1e1924127a44c8d2d4ffaf4bcda20b47" +path = "static-publisher/static-content/file3787.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/torsocks/index.html_650b69648041d2aefe7139c197839cae5853b99edd26bc3a5ec53a5f3b04cc90" +path = "../build/minified/site/tr/gemstones/torsocks/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/torsocks/index.html_br_fa75d7791fc2646e99f8b703fa3f402eca820644a2438a579e112462adf93574" +path = "static-publisher/static-content/file3788.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/gemstones/torsocks/index.html_gzip_e53a8b3a99d577c3472ff79ddd59aa59668ffb1d1a0f55cabc352e02732c807b" +path = "static-publisher/static-content/file3788.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/8_6_installation/index.html_901030cb53f87c5af445064ba9276b63600ef94ae7bc78a62d5d8629b504123b" +path = "../build/minified/site/tr/guides/8_6_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/8_6_installation/index.html_br_64bfd2a3e4748103c66a123b837c477cb38b32cb1d0609002f32872de13f3e24" +path = "static-publisher/static-content/file3789.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/8_6_installation/index.html_gzip_57e55716bc368ee6520d858278765a09f19cf4233e97f063d1bd40fdbb52dec5" +path = "static-publisher/static-content/file3789.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/automation/anacron/index.html_19cd609338d6ebc372326f982af1a27a8fd5801a0ef8ff0f3ae926c0cba12ad5" +path = "../build/minified/site/tr/guides/automation/anacron/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/automation/anacron/index.html_br_7c0ec4f477416b7555a632fbc6ab36fa0199f0f556080cf941f69361afe1ef87" +path = "static-publisher/static-content/file3790.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/automation/anacron/index.html_gzip_450cd329907c11722eb0a1b59e3473da48c59d42ccfb1e01c9050cfcaeefa531" +path = "static-publisher/static-content/file3790.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/automation/cron_jobs_howto/index.html_3c1aa4e84ac2961b0d93cb64fa344c28ea0719fd91188e77bc997cddbf823726" +path = "../build/minified/site/tr/guides/automation/cron_jobs_howto/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/automation/cron_jobs_howto/index.html_br_647293856dd40c5557b56d088690e62d325cefcb0ad8fc523bcd3cc34667fc5d" +path = "static-publisher/static-content/file3791.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/automation/cron_jobs_howto/index.html_gzip_0358cff21f934d04a58d90e4309c7e700b0a0983bda9877d701959ee1105d973" +path = "static-publisher/static-content/file3791.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/automation/cronie/index.html_658e80c3fb0a5a7d2720fd4a9638a2e57771c6cebd1dbb78cca68b8ee72cf462" +path = "../build/minified/site/tr/guides/automation/cronie/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/automation/cronie/index.html_br_3bbe547f473c3558554e1ff39af8b9a213eb660c8a6da18e7c90cdceeee7627b" +path = "static-publisher/static-content/file3792.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/automation/cronie/index.html_gzip_4718b691ef5e1539a62904058d2b9cbb9928c3c0c510ac8b0ae3b55e246ddd30" +path = "static-publisher/static-content/file3792.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/automation/olivetin/index.html_31c30d89506ed63e668338045d46dc0580f1ead5cf9e1a7f2620a788d2f484a5" +path = "../build/minified/site/tr/guides/automation/olivetin/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/automation/olivetin/index.html_br_938ee5831c1946e3e40602f4846113814bc48973ea6575cae84baeecd72f0233" +path = "static-publisher/static-content/file3793.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/automation/olivetin/index.html_gzip_cda3d0e48d5abb1c43a2b715125301196302b25e158d363c85a4ba2754101a0b" +path = "static-publisher/static-content/file3793.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/automation/templates-automation-packer-vsphere/index.html_45e68d96c707bff1f42567eae3308628a26a5d54f1aafa362ea09329ffcd9db6" +path = "../build/minified/site/tr/guides/automation/templates-automation-packer-vsphere/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/automation/templates-automation-packer-vsphere/index.html_br_5504e69a8d13258e270e9d3e0b5b6fe60de128b30993ffe9c55f2340ce03c5fd" +path = "static-publisher/static-content/file3794.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/automation/templates-automation-packer-vsphere/index.html_gzip_e2b75ac589e1fbe038ae66af2a213d2c4d87892d7243d75faee49fef3a9600ee" +path = "static-publisher/static-content/file3794.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/backup/mirroring_lsyncd/index.html_3f6923f32f116f69bb42472c08345cabac99ed81012579a490d00567b136624a" +path = "../build/minified/site/tr/guides/backup/mirroring_lsyncd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/backup/mirroring_lsyncd/index.html_br_a048cc7a44131db3ce68d12e550db74a2d511429549e1284dfdb063279ac8458" +path = "static-publisher/static-content/file3795.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/backup/mirroring_lsyncd/index.html_gzip_d2c81838cf46d91725ecae4c5addce14882c6646def18649ec23d009c1b29e8e" +path = "static-publisher/static-content/file3795.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/backup/rsnapshot_backup/index.html_71394092ea1664ffad7a2eed61ee5ee80aef3637981a67a875934681a43e25bb" +path = "../build/minified/site/tr/guides/backup/rsnapshot_backup/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/backup/rsnapshot_backup/index.html_br_dfa1a9a5833801072692351b6626ab21912d0acc94bf3712716f8fbb01c3af90" +path = "static-publisher/static-content/file3796.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/backup/rsnapshot_backup/index.html_gzip_a90dfe672129f936c293af2978291414d39916b8beb4b54d759f387909bed546" +path = "static-publisher/static-content/file3796.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/backup/rsync_ssh/index.html_c6cd547c06b9e99015a4983d6794f1fd4bc38fe8442f70ae1424c6a6a99d0400" +path = "../build/minified/site/tr/guides/backup/rsync_ssh/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/backup/rsync_ssh/index.html_br_c406f8bd6560f7e65782e9ff82a0f880a5ea496f1141b3c0c369b7255bebc586" +path = "static-publisher/static-content/file3797.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/backup/rsync_ssh/index.html_gzip_6be5de83993045b0e0ebf2940ff29626ff1a6533c1df436cbaf87ace3eaacc99" +path = "static-publisher/static-content/file3797.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/cms/cloud_server_using_nextcloud/index.html_630497bbd74061aae6e4dbf751f7cfa0d924a6b8568d579163e0ff26ec508a61" +path = "../build/minified/site/tr/guides/cms/cloud_server_using_nextcloud/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/cms/cloud_server_using_nextcloud/index.html_br_950f17859eea9257b6cdc1abf976ebc1e1ebdf589a348db64e60bb4461fc9408" +path = "static-publisher/static-content/file3798.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/cms/cloud_server_using_nextcloud/index.html_gzip_36469fbeeca5ffbc2446b6bfae063b1e168219c89af2bdf79930dfc3b501eb27" +path = "static-publisher/static-content/file3798.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/cms/dokuwiki_server/index.html_2df390c3bfeb5e9c925c1cc7c23cd1c570d911613278ba99e44a8ab3f72d2bbc" +path = "../build/minified/site/tr/guides/cms/dokuwiki_server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/cms/dokuwiki_server/index.html_br_f130845637c9d7029bf3ee8975941a5c14942bc9a8e5bf5381f85abe315df5c8" +path = "static-publisher/static-content/file3799.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/cms/dokuwiki_server/index.html_gzip_d7a811a968d20558e69582cc12331a156962162505939f792d956a75eddc5735" +path = "static-publisher/static-content/file3799.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/communications/asterisk_installation/index.html_0e14dd860c2805d004b33d524b44924c2aaa02b35f1fc83234cd04267bb482ba" +path = "../build/minified/site/tr/guides/communications/asterisk_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/communications/asterisk_installation/index.html_br_edc77d3e34960e64ea18a644e8a9463dd16a28ea4c938cd9cbaf269ee64aa1e9" +path = "static-publisher/static-content/file3800.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/communications/asterisk_installation/index.html_gzip_49d57bba17e93a1ecadadea62c841312a3548ea4ba9d3b100cebd84fa4cc239a" +path = "static-publisher/static-content/file3800.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/containers/lxd_web_servers/index.html_920baffd7ae8b2f6377a1fd0352b102cb7b8636d22c2039aafdcf84215b6467a" +path = "../build/minified/site/tr/guides/containers/lxd_web_servers/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/containers/lxd_web_servers/index.html_br_1df708db982e616f2f04017eb55720e48fecbc1b6b590fba3c7b5ae1faac71fb" +path = "static-publisher/static-content/file3801.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/containers/lxd_web_servers/index.html_gzip_82805a4d347738a3a076e404319862da4e629e491134606627a60183eafe7482" +path = "static-publisher/static-content/file3801.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/containers/podman-nextcloud/index.html_9740b23fd3c064b62b7c54fc08da5907291fe521dfb3294ae37064a415698692" +path = "../build/minified/site/tr/guides/containers/podman-nextcloud/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/containers/podman-nextcloud/index.html_br_f64664e0b3263a057aa48224f7a73f0b942be2f0ccfaaf9f38ff017dcc16722c" +path = "static-publisher/static-content/file3802.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/containers/podman-nextcloud/index.html_gzip_c297fe41fa7a82a2b86aa2d52540615fa9c1be030dbb05c3a464c2173dfa6345" +path = "static-publisher/static-content/file3802.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/containers/rancher_and_kubernetes/index.html_c8e1558f9f163581f10a5a0495fbd4a175855ca9215dbd82d18e7f77269258f3" +path = "../build/minified/site/tr/guides/containers/rancher_and_kubernetes/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/containers/rancher_and_kubernetes/index.html_br_3a93d3df23571697f173573987ffad07d79b60735d00dfaa0c3a3769fe1a096c" +path = "static-publisher/static-content/file3803.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/containers/rancher_and_kubernetes/index.html_gzip_23305b98559e06635a745760e91d98b8d43d84e4cf291a5f7e6253bbe5d7e7df" +path = "static-publisher/static-content/file3803.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/contribute/beginners/index.html_194e5d5fa16fcbc35b99985e61120685a8b69b64318516037dec3b75e8b3dff7" +path = "../build/minified/site/tr/guides/contribute/beginners/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/contribute/beginners/index.html_br_950179b96629ef6ca798667bffc8f7c83d20aef0f194da72e214aba35750a4a1" +path = "static-publisher/static-content/file3804.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/contribute/beginners/index.html_gzip_143e569c861952f37c5da5e5af18bcf850558238ab06f5e9d8652727fd2fd1df" +path = "static-publisher/static-content/file3804.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/contribute/createnew/index.html_8adfea75db5bd5858d713912f28e8753e71c7a902eaf6cfcac3dd3dc763512d9" +path = "../build/minified/site/tr/guides/contribute/createnew/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/contribute/createnew/index.html_br_776cd9af560dd657312b553ee4aa9c14e99881734df00ff99456ab98323009cc" +path = "static-publisher/static-content/file3805.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/contribute/createnew/index.html_gzip_8dde6b361a93d68b6a2b1e0e0675affb119c5f75167435c315142bf1a9f4a63d" +path = "static-publisher/static-content/file3805.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/contribute/index.html_73aae57900b6cabc2d8f2c8c5df256dd872854bdb60a1fa9f0eebe9b48ee3fd4" +path = "../build/minified/site/tr/guides/contribute/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/contribute/index.html_br_f0e2e91cc04bc554bcc64bca4dc1b0c02e926c502a2dce6eaf7bded97f408026" +path = "static-publisher/static-content/file3806.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/contribute/index.html_gzip_245c8fc37e469e0ea432c42f4764c489b3369cd7c6b47af1ae1784ee7fd84c43" +path = "static-publisher/static-content/file3806.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/contribute/localdocs/index.html_303cc366a969ab9ad22dfcbc4eb149bf59e08cf8d0e079997b4186de28b65d47" +path = "../build/minified/site/tr/guides/contribute/localdocs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/contribute/localdocs/index.html_br_a4e0d59c7d87c77c960dd06faec5f9e79b4cd33be52ded0577ffa89ef9a15f0a" +path = "static-publisher/static-content/file3807.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/contribute/localdocs/index.html_gzip_5b0a7a5d85e87b2bfa59b4f1fe86a310369c3bd1b11ae41070ea56e6397c8033" +path = "static-publisher/static-content/file3807.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/contribute/localdocs/local_docs/index.html_db39f9a6445364fabe0fb8fb780fc98e700570cebc70945b28ccf6ee8db24bee" +path = "../build/minified/site/tr/guides/contribute/localdocs/local_docs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/contribute/localdocs/local_docs/index.html_br_a44248467b1e904f8902e8ab1e6a336ea8b24fa08fe5c92b0499ff31f17ed996" +path = "static-publisher/static-content/file3808.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/contribute/localdocs/local_docs/index.html_gzip_da101e41ff543f161b5acc0c4d81bc5e81c203190d6a3715f6b9230ab7354bf0" +path = "static-publisher/static-content/file3808.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/contribute/localdocs/mkdocs_lsyncd/index.html_68b67b71472dc3a3b9f15a9d9f37890700809dba371363f5c6b511f22bfb1031" +path = "../build/minified/site/tr/guides/contribute/localdocs/mkdocs_lsyncd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/contribute/localdocs/mkdocs_lsyncd/index.html_br_a1b03140e5e5ef04d1e0913bbb094d5dcd92fefa72fa3f5724cf742bdc67afe6" +path = "static-publisher/static-content/file3809.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/contribute/localdocs/mkdocs_lsyncd/index.html_gzip_205feb30c4d10e42a851598376e1fd1a42347a6b7de7716ca762cd74c389a36a" +path = "static-publisher/static-content/file3809.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/contribute/localdocs/mkdocs_venv/index.html_936363afd607045d5ddf7621bddabf0af0cd93f3974aefe188793576fa5ea016" +path = "../build/minified/site/tr/guides/contribute/localdocs/mkdocs_venv/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/contribute/localdocs/mkdocs_venv/index.html_br_cc1ffa51b488a17194415b011f0544aff61339ba8309031f323fea1952a6891b" +path = "static-publisher/static-content/file3810.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/contribute/localdocs/mkdocs_venv/index.html_gzip_6335a2fd1b451f43678fd8be465e23f66841c8de289b34febe485cdb675cdd1e" +path = "static-publisher/static-content/file3810.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/contribute/localdocs/rockydocs_web_dev/index.html_c8dc06f01dab5556f937a8d2666f75cad500f794d5e534be9ccdd4377cc7acbe" +path = "../build/minified/site/tr/guides/contribute/localdocs/rockydocs_web_dev/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/contribute/localdocs/rockydocs_web_dev/index.html_br_7af1ab07d55e06111b1dc0fcd3a1880bb588baaee7c65a81c89372eb4e3bb453" +path = "static-publisher/static-content/file3811.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/contribute/localdocs/rockydocs_web_dev/index.html_gzip_34d1bd6928ea971fa5ad59f07cb516feb2cf91d3b18dfd126ad39314c8e56be2" +path = "static-publisher/static-content/file3811.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/contribute/localdocs/rockydocs_webdev_v2/index.html_69dff993aa25597550469181e6b8f1f5f9b0e3542d942331e5e873fc5f39da6a" +path = "../build/minified/site/tr/guides/contribute/localdocs/rockydocs_webdev_v2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/contribute/localdocs/rockydocs_webdev_v2/index.html_br_b749468caf937b8d7506eace64a299db6084657d2869e9bc1953906b1a6a2ebd" +path = "static-publisher/static-content/file3812.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/contribute/localdocs/rockydocs_webdev_v2/index.html_gzip_cbe1b9be3921cdf3af734e26a6ed4b354f63f54cb859fb9d2f8403ba38be3f28" +path = "static-publisher/static-content/file3812.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/contribute/navigation/index.html_0a4c10e009e043a9d68d60096a622bf229268b17ddb7fe3a0984cbb903344367" +path = "../build/minified/site/tr/guides/contribute/navigation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/contribute/navigation/index.html_br_ca44225c4a0541a3c594cf1b315d3ee3e04be270fd6fc327dd4be07b3399e41f" +path = "static-publisher/static-content/file3813.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/contribute/navigation/index.html_gzip_7c1e02d7a4e13a951ff841e2d61378588b3507a9521002a31f54ab4820a48d76" +path = "static-publisher/static-content/file3813.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/contribute/rockydocs_formatting/index.html_49e13f4c8bd256c9d59768a06cd7f13d7840affc3918202d0459a0f878d35433" +path = "../build/minified/site/tr/guides/contribute/rockydocs_formatting/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/contribute/rockydocs_formatting/index.html_br_a3f24e61a72a0e31ae417474c8b883bd9c86ebebb841ae5abb9215dc705a16fb" +path = "static-publisher/static-content/file3814.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/contribute/rockydocs_formatting/index.html_gzip_b5da4fe940faa501c0a504cbac5617ec69779ad40a96ede71e986b4531de4f91" +path = "static-publisher/static-content/file3814.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/contribute/style_guide/index.html_0f3d6232a4834930cd00b413855ea282a588bd2f9d7424cb13f521489a16af64" +path = "../build/minified/site/tr/guides/contribute/style_guide/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/contribute/style_guide/index.html_br_16f6f7eb07f1ed0635c1bdd3e4cc1bd83f58b42fdeeabcb690b8051482dec4fb" +path = "static-publisher/static-content/file3815.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/contribute/style_guide/index.html_gzip_8d94013c1818cc3bae22ae2d89663618eaf6155a1e0a35a31dcbebe9bc635a07" +path = "static-publisher/static-content/file3815.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/custom-linux-kernel/index.html_94ee96c534c37accb6cf2a6bb2a29cdf2583da8322f7d87fb55c00cd125adbba" +path = "../build/minified/site/tr/guides/custom-linux-kernel/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/custom-linux-kernel/index.html_br_579c09e3aaa5160f53ca5dfd5d6c07ea93b1e586e949651f64664e1fdeeb327b" +path = "static-publisher/static-content/file3816.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/custom-linux-kernel/index.html_gzip_7234f52a51b30cecf513dd33eab7552b568cc6f96a3b247396911000f99ec31c" +path = "static-publisher/static-content/file3816.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/database/database_mariadb-server/index.html_8168ccb921e76d53bad7062c46a21689023a43f9fa49647a292b427bef3b7fd7" +path = "../build/minified/site/tr/guides/database/database_mariadb-server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/database/database_mariadb-server/index.html_br_2cf5749c897aa167ed943bee72c402bbb6c974a02a5a57204f18da3c168d94b7" +path = "static-publisher/static-content/file3817.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/database/database_mariadb-server/index.html_gzip_e7291fbd62dcf850f63ad5b2f7b09196a6143f8fb81c8475cee4c45e5c278893" +path = "static-publisher/static-content/file3817.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/desktop/kde_installation/index.html_d314cff9ebdd8288c11a899b6852c645551cd9e2fa19edf776719bac03203657" +path = "../build/minified/site/tr/guides/desktop/kde_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/desktop/kde_installation/index.html_br_7e9d24d99ca3db2f80401f177c6d6271803d0483c3a37058e395f2d10f5d5d7c" +path = "static-publisher/static-content/file3818.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/desktop/kde_installation/index.html_gzip_a55911425c72b4538f67654c342e07434622960d348597a9835cb331f84461d2" +path = "static-publisher/static-content/file3818.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/desktop/mate_installation/index.html_9b8613e0cadee3f72568c160e8c4c2f3b89646d829cadc8779554ac66159f653" +path = "../build/minified/site/tr/guides/desktop/mate_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/desktop/mate_installation/index.html_br_09cd25535ba2452deeda162dfc80daa6d95b85e9132ee77be18ad2d3e2440636" +path = "static-publisher/static-content/file3819.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/desktop/mate_installation/index.html_gzip_cafea6f4210c48f0096997651cee8d12d0d2d2260217bd57a8c0ed62be843ba2" +path = "static-publisher/static-content/file3819.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/desktop/xfce_installation/index.html_62519408265cb08b64cb756ff5c2219536174eab41a7ef2b0c8546a0d20472ee" +path = "../build/minified/site/tr/guides/desktop/xfce_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/desktop/xfce_installation/index.html_br_072c4c76e1bb606e11f50d372a818135f6c73f9f88d3eb2bdc0768fe2040b7bf" +path = "static-publisher/static-content/file3820.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/desktop/xfce_installation/index.html_gzip_9f6183a3fec6074e67f7b017715bf9b38601f1154a83a22f5016ae777066ec7c" +path = "static-publisher/static-content/file3820.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/dns/private_dns_server_using_bind/index.html_808a926cbc0879e156b03e7870e622ea9d8dcdc709622ffa5507c9dc85e65f4e" +path = "../build/minified/site/tr/guides/dns/private_dns_server_using_bind/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/dns/private_dns_server_using_bind/index.html_br_7c6b97cd114468f76982b044f37df0340051888bcc6da64f30142718ef8ce67a" +path = "static-publisher/static-content/file3821.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/dns/private_dns_server_using_bind/index.html_gzip_a0c3f0825f12337224ba59766de0b569c9eb0713163bedcc3cf8794a47ed2d38" +path = "static-publisher/static-content/file3821.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/editors/micro/index.html_9dea2edaa1362c817b532dd5ad586d796ad62553c20a48f99903f2efefa26068" +path = "../build/minified/site/tr/guides/editors/micro/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/editors/micro/index.html_br_959744bb34d1aad938c7d3d918412a6a6cdb27dfcf07c1aae9b32fabfb32686d" +path = "static-publisher/static-content/file3822.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/editors/micro/index.html_gzip_73473cda7e60bc402c72cda9088a0b0863236ba02397077c83bd104257248d5e" +path = "static-publisher/static-content/file3822.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/email/01-email-system/index.html_49fd5e884abd1d3ccbfe350095f75822a734b7329418c6deb78de278ba122fe8" +path = "../build/minified/site/tr/guides/email/01-email-system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/email/01-email-system/index.html_br_6bc5daf86e690cce82b7fb33db0f0ef160e378ecc2bec95ad13fbd0cfde6ff67" +path = "static-publisher/static-content/file3823.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/email/01-email-system/index.html_gzip_3a76d465d2fc614ce5841f44d8a3e93c74ad4e3348eba9ae290aa6a956de5a38" +path = "static-publisher/static-content/file3823.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/email/02-basic-email-system/index.html_ffe0bebaa986008547a4b3367281f7676c6dad6918109795b599a87dd23394b9" +path = "../build/minified/site/tr/guides/email/02-basic-email-system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/email/02-basic-email-system/index.html_br_0163a113ec85d0bd73478f755b63fa1ad96a4991c8af03bb5c45a37159a19701" +path = "static-publisher/static-content/file3824.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/email/02-basic-email-system/index.html_gzip_d9122a300015e87879175a02270d5346a205cfb45cffc98c3c18333f47361f5a" +path = "static-publisher/static-content/file3824.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/email/postfix_reporting/index.html_fa5ef5c5fcfb22d26ab346d839a42b995e7f22799122398ffb8d055ed8fc012a" +path = "../build/minified/site/tr/guides/email/postfix_reporting/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/email/postfix_reporting/index.html_br_d078878cc3f216ab010c542e6bf6a98428178ed5bc754bbd15d16d5277773441" +path = "static-publisher/static-content/file3825.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/email/postfix_reporting/index.html_gzip_d847a2e80c057c40fb5b72ed08df65a2ded19d632c724415d199e1baf81150f8" +path = "static-publisher/static-content/file3825.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/file_sharing/glusterfs/index.html_99f8a3c1697d79e04443231c76273c509f2580f2461d1413b7a1164ec6c5f38b" +path = "../build/minified/site/tr/guides/file_sharing/glusterfs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/file_sharing/glusterfs/index.html_br_dc8fd7f32cdcedf732c6ba4734152216c4e2e46169250f4a34bc55040e2cb823" +path = "static-publisher/static-content/file3826.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/file_sharing/glusterfs/index.html_gzip_965f2a3077b92634179983fce8c29bc45bd06e73369a716cef76a9e1cf160085" +path = "static-publisher/static-content/file3826.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/file_sharing/nfsserver/index.html_e9356e435c9d5c45a0ff660531090e7904d7fe3d01fc270aee59d768e3bf2502" +path = "../build/minified/site/tr/guides/file_sharing/nfsserver/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/file_sharing/nfsserver/index.html_br_f5851d752548b60d3d31ef73396db7badd5704cad09bd8971d2e1991df945ad7" +path = "static-publisher/static-content/file3827.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/file_sharing/nfsserver/index.html_gzip_4c84f861b26d8c72cad18470f85ae49fec3fd14056f5ca37c300afbb61de2da6" +path = "static-publisher/static-content/file3827.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/file_sharing/secure_ftp_server_vsftpd/index.html_5e4241896c9f37ed8e2d969be04756410b5fd8c3c83928ff6cd20c247ea3a7f6" +path = "../build/minified/site/tr/guides/file_sharing/secure_ftp_server_vsftpd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/file_sharing/secure_ftp_server_vsftpd/index.html_br_8206f82c56decd4193545f910061da29a28d1f0900d0829819ee0be351cc6c24" +path = "static-publisher/static-content/file3828.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/file_sharing/secure_ftp_server_vsftpd/index.html_gzip_31f08936a0eb1736ad05eeb7b303976af39a963d43d668b2d3f0863a64da196f" +path = "static-publisher/static-content/file3828.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/file_sharing/sftp/index.html_f3f8fe21321158db23cbc99b109aa497684868c5da21cba0527f06a9c41d5a35" +path = "../build/minified/site/tr/guides/file_sharing/sftp/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/file_sharing/sftp/index.html_br_43cec69cc42c17da3b6337463889a257db9a067156a56d96e2a0879e10451be1" +path = "static-publisher/static-content/file3829.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/file_sharing/sftp/index.html_gzip_056dc1b25e45151300e50942204774777229e619837d24bbaea8d522694dc617" +path = "static-publisher/static-content/file3829.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/index.html_6dc18ca0723f3902e7a6382594ef254e996767b68269d9131ee7753994b70bf2" +path = "../build/minified/site/tr/guides/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/index.html_br_c6a649f6f004a73a94c40e4d67951f768c003316c733ac11687c196bbc7db9a7" +path = "static-publisher/static-content/file3830.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/index.html_gzip_2afd2c9e1a6be0c10acd1d44506c7a83d1ee829df1c6ac1d8e20cbff9cb231d4" +path = "static-publisher/static-content/file3830.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/installation/index.html_5807477211f4b19c34705142e004a7ce6eb2a38e982da8ad2c1eda5e6ab1d691" +path = "../build/minified/site/tr/guides/installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/installation/index.html_br_09f378ef1650a8b9192045539a125d39ea561b4f9831709c51295ceb36ee04af" +path = "static-publisher/static-content/file3831.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/installation/index.html_gzip_b5a4aae096ece58f3112f5de97471cdfdd14acacca8b63972df6cb6f80fb847e" +path = "static-publisher/static-content/file3831.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/interoperability/import_rocky_to_wsl/index.html_91ddcc16fd20732d567f549a0df7b7038de55afb975624ff42a6cb5eb19be884" +path = "../build/minified/site/tr/guides/interoperability/import_rocky_to_wsl/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/interoperability/import_rocky_to_wsl/index.html_br_02546414f24ee295f79c9041503f8c84e519dcfee4f27ef0b5d45e773a56fcb1" +path = "static-publisher/static-content/file3832.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/interoperability/import_rocky_to_wsl/index.html_gzip_4dbadea47e54b29d6e7a49cd20b5dda52a8129ccfff35cdbef1b5957d2eaf39e" +path = "static-publisher/static-content/file3832.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/migrate2rocky/index.html_bfc3a56e0eb329f1385a711527c6b52bbf23f15622e0e23a57933235f9132d1c" +path = "../build/minified/site/tr/guides/migrate2rocky/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/migrate2rocky/index.html_br_a248275a2d85c36dd3712a6d5be88896c3f56613cec2ee0d60266b41c80f633c" +path = "static-publisher/static-content/file3833.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/migrate2rocky/index.html_gzip_bf4f4f41e5a8ac64b36b9463014cade3f457fc6ea78b5a0a0fc1a86e8e5dc338" +path = "static-publisher/static-content/file3833.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/mirror_management/add_mirror_manager/index.html_06e983fb48b7bfbb08b3f39c196244e75518e4e0cfaa1bcd42044aa145493f61" +path = "../build/minified/site/tr/guides/mirror_management/add_mirror_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/mirror_management/add_mirror_manager/index.html_br_f82c06c6c4ad977453c36acf637cc4463993c8bd648fad3e6960a9e6beb18a28" +path = "static-publisher/static-content/file3834.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/mirror_management/add_mirror_manager/index.html_gzip_a4a08ebcde9ac2c6845f7c09fa140879b7a3b45060a00f1d67f1e1f4dcad85ef" +path = "static-publisher/static-content/file3834.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/network/basic_network_configuration/index.html_c4f058b193870c7a5788d9006a58c6d1deef76434c1722c10e26077a698bb89d" +path = "../build/minified/site/tr/guides/network/basic_network_configuration/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/network/basic_network_configuration/index.html_br_23d4a61bd3fdb06ff118d6b41d80df99ba28254503ee7ed19644b509a165a3bf" +path = "static-publisher/static-content/file3835.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/network/basic_network_configuration/index.html_gzip_88877f52e437cc2e77d3e8bb0fae92602a7425c3cdbf1e377386c6058b76e9ff" +path = "static-publisher/static-content/file3835.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/network/librenms_monitoring_server/index.html_fed46ce28f752b0b94031b5cf685c569627c9ff6ad6954aeea88b05f490ae0aa" +path = "../build/minified/site/tr/guides/network/librenms_monitoring_server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/network/librenms_monitoring_server/index.html_br_9bb59f1805cf5fd42178a380ff5222a7464579f296f963b5bbf21aa9b5f6bce2" +path = "static-publisher/static-content/file3836.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/network/librenms_monitoring_server/index.html_gzip_76a6f3d24bafad4ccde9bcd4f313a6ef91a85aed7ff9b8e2a782128f7dfa5603" +path = "static-publisher/static-content/file3836.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/package_management/dnf_package_manager/index.html_06dfcfeecfc1139c0d9e0efcd21746d300d4c38022d17e2a2c56d1e34cbfae0b" +path = "../build/minified/site/tr/guides/package_management/dnf_package_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/package_management/dnf_package_manager/index.html_br_e46caf0d3d086d551b4c44d3b1e820905ef6e9436da1ef8b83e6efda14feca37" +path = "static-publisher/static-content/file3837.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/package_management/dnf_package_manager/index.html_gzip_4796b2805952da51eceb64e2bb0646977f8a9fc47c23cddd4cff5cf049010941" +path = "static-publisher/static-content/file3837.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/package_management/index.html_f266780bece9bb0f0a222fcb5d5deeffe0092296fde85671c2df785f690f81f6" +path = "../build/minified/site/tr/guides/package_management/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/package_management/index.html_br_82508a7dab155363f698e3bc1719670f174cd347bcd801ad332d005176be3a4b" +path = "static-publisher/static-content/file3838.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/package_management/index.html_gzip_c7d0080c8fa05e073c855c8e552f2d3dfdbe195644dbc04172d012fa292bf0db" +path = "static-publisher/static-content/file3838.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/package_management/package_build_troubleshooting/index.html_a3cbe17362822e932f03187a59362a382198ef312bad4bda6e2c03ee15573469" +path = "../build/minified/site/tr/guides/package_management/package_build_troubleshooting/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/package_management/package_build_troubleshooting/index.html_br_24e32a40fb8e7f90dea286d2ea55dc5119f06ad5c119940e053962766b1cbd15" +path = "static-publisher/static-content/file3839.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/package_management/package_build_troubleshooting/index.html_gzip_7c9c0c7e8fe1e128a1f3857bd2fd1349c9e804a14a0caf485d3d9f8215cb744a" +path = "static-publisher/static-content/file3839.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/package_management/package_debranding/index.html_5de01a81a002b03589cd9954ec6a182e910be37efe893a6c6aee6343c23beced" +path = "../build/minified/site/tr/guides/package_management/package_debranding/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/package_management/package_debranding/index.html_br_819d5a97ecf04b2edf69b17af7fc647136a326fd7d1bf6c06afb21e4808313fb" +path = "static-publisher/static-content/file3840.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/package_management/package_debranding/index.html_gzip_2c4da8e18e03d91476b608db9f509a4b471a701ffd37488d1d0a00917d2389bd" +path = "static-publisher/static-content/file3840.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/package_management/package_dev_start/index.html_38580d71792887309f4d488cf0647c60f79176d29605f2971c07933918cd8895" +path = "../build/minified/site/tr/guides/package_management/package_dev_start/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/package_management/package_dev_start/index.html_br_d86ded0cd55cb84b02d4342ff0c90ac0a80744d07c624ace404d3b34cd029185" +path = "static-publisher/static-content/file3841.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/package_management/package_dev_start/index.html_gzip_0a339b47c67842133afbc221398e4b1c78fc7b4e82c58eb45ef6a6a6eea97b88" +path = "static-publisher/static-content/file3841.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/package_management/package_signing/index.html_8a155e3920b63e8162fecf9b5844f922ad3221d5ad36ba2c322ed0bd1460bd5f" +path = "../build/minified/site/tr/guides/package_management/package_signing/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/package_management/package_signing/index.html_br_615f92f42703e5220334766a7b991eeb12eb49e6197bc0d34ae0bb53da8a3d91" +path = "static-publisher/static-content/file3842.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/package_management/package_signing/index.html_gzip_ac1320f3af3d8f47829683d7b533ea59033dae6b3a98794546d3cde8f5b259bd" +path = "static-publisher/static-content/file3842.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/proxies/haproxy_apache_lxd/index.html_2412926ef38b958d06b02428b25ad5580e9ff389bd0f2d5eeee6586bfe0ea0a1" +path = "../build/minified/site/tr/guides/proxies/haproxy_apache_lxd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/proxies/haproxy_apache_lxd/index.html_br_f520c7e21396a68355e5ab79d2645fa9c959a2731eb88c0d1300b812491db673" +path = "static-publisher/static-content/file3843.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/proxies/haproxy_apache_lxd/index.html_gzip_837186076b5ca672bf8f709d18f19249533f54c7a7dc0a3b886dfe2f28c5c70b" +path = "static-publisher/static-content/file3843.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/proxies/pound/index.html_f0b0946a3df5a25af7663865ba3732e43de2cffe66256e3938ff0cb1378947ee" +path = "../build/minified/site/tr/guides/proxies/pound/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/proxies/pound/index.html_br_d48636876e97055c24426dbcaabe8570d55bb333c9376b0d5b2648e59a9c3f0a" +path = "static-publisher/static-content/file3844.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/proxies/pound/index.html_gzip_b961bf26dc4442f971b47f629617f18378590f078b999c7ad9e46c52f9aa3fec" +path = "static-publisher/static-content/file3844.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/proxies/tor_relay/index.html_98bd94a9bf97566429ac68f689deafc05e5511b3cc27343bb50263b89ffacf86" +path = "../build/minified/site/tr/guides/proxies/tor_relay/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/proxies/tor_relay/index.html_br_1d8be644361eaa51c3fb7d070f900a9f4e82e3e4a8100c631a0db6f5fc204b1d" +path = "static-publisher/static-content/file3845.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/proxies/tor_relay/index.html_gzip_27e7dc4a4530adf4e8f5fd7364279426aecd17af57529a8eacb8de20bb144101" +path = "static-publisher/static-content/file3845.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/security/authentication/active_directory_authentication/index.html_cbe6cadfc27c4b73070a059295551aa7abc10cb6aa7de7e0d23d10d8adf04bb1" +path = "../build/minified/site/tr/guides/security/authentication/active_directory_authentication/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/security/authentication/active_directory_authentication/index.html_br_600cf957207bd451519642c92476f4ea7046d09ab68edd3002e5cd172fe094cb" +path = "static-publisher/static-content/file3846.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/security/authentication/active_directory_authentication/index.html_gzip_236ed730f726832c0be9501d50b5bd19ebc53fcaeaa4bb261ddb60b14eb93111" +path = "static-publisher/static-content/file3846.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/security/dnf_automatic/index.html_10e042bdac709785b84167e6212a0425dd19c8ed9fa09621eebf34200cb23be0" +path = "../build/minified/site/tr/guides/security/dnf_automatic/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/security/dnf_automatic/index.html_br_d2df68a970e6566114655ec95f33f0325558ac23ded64592f4f0bbf8ac90c7fc" +path = "static-publisher/static-content/file3847.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/security/dnf_automatic/index.html_gzip_f1f7e73b114628dd0a863bcaeddeab02db348b8dceec0a525134ce701f27fcc6" +path = "static-publisher/static-content/file3847.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/security/enabling_iptables_firewall/index.html_2e22417cc9fc431c90679a94082f9408209e840efc4adf94fe762904677432dd" +path = "../build/minified/site/tr/guides/security/enabling_iptables_firewall/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/security/enabling_iptables_firewall/index.html_br_ce7ed1a7aa79c005317fb84b6698646dc4cbecaabf2402f0138fbbd13c8c4082" +path = "static-publisher/static-content/file3848.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/security/enabling_iptables_firewall/index.html_gzip_49e5738e8fc8de1c63730700806cb857401a9294e4aa40dfdadea17d3a0b5b7e" +path = "static-publisher/static-content/file3848.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/security/firewalld/index.html_dfa652c22953cedd989a9abbabec90d5fa2325f65674e56477895f68b72d77dc" +path = "../build/minified/site/tr/guides/security/firewalld/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/security/firewalld/index.html_br_8e83817ed12b5a9513e1bd56a7b7323f550acaf0faa95cf4bb7b550a234d999c" +path = "static-publisher/static-content/file3849.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/security/firewalld/index.html_gzip_081732420d419df8658eb3d20e1f739ec0418d181861c5aae37203885f7b2c4e" +path = "static-publisher/static-content/file3849.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/security/firewalld-beginners/index.html_0ee0ab6f867fa8d62f159294a22c0117e770bfd3be49a843a6d92db22cb29dd6" +path = "../build/minified/site/tr/guides/security/firewalld-beginners/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/security/firewalld-beginners/index.html_br_223baea5a9d54d511152ea42ed4ca4273a29c888917e689ea3d2a8dc19402e0b" +path = "static-publisher/static-content/file3850.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/security/firewalld-beginners/index.html_gzip_6ab33a15975e2344d41598716e81144240212175e96eadf1376f61469a8ad2b2" +path = "static-publisher/static-content/file3850.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/security/generating_ssl_keys_lets_encrypt/index.html_4ac10b154155da600ec574651e1b419d2c4745b8477b336785ce47f70a31ac8b" +path = "../build/minified/site/tr/guides/security/generating_ssl_keys_lets_encrypt/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/security/generating_ssl_keys_lets_encrypt/index.html_br_35a42c90f12d13901a570a75d6d1d54ab584c7b58dfc66c87546cb9bea275d0f" +path = "static-publisher/static-content/file3851.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/security/generating_ssl_keys_lets_encrypt/index.html_gzip_4a3f2711025e067f718be06212f9cd1f9d7549aede630380930004de303ebedd" +path = "static-publisher/static-content/file3851.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/security/learning_selinux/index.html_ea72aaa2fe6b7a22f59314b8633c0f7a469c48544e709625d39476a97ab77ac5" +path = "../build/minified/site/tr/guides/security/learning_selinux/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/security/learning_selinux/index.html_br_71323b6b25a8cd0bdf00345bd517c7792b7cbb9eddb347ee46f847cc5f5b682d" +path = "static-publisher/static-content/file3852.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/security/learning_selinux/index.html_gzip_44529d020f7aa7b2428a1c1946e6995245d11863d72151dc99815319b1eea6ec" +path = "static-publisher/static-content/file3852.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/security/pam/index.html_453d540de040fdc2f6b32ef49869b62e628dcb873f3bc96072d173ec799495a4" +path = "../build/minified/site/tr/guides/security/pam/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/security/pam/index.html_br_e60f049ba064be1b419dc901c88ace511ebc3d7cbcffd229edeb41d695a86087" +path = "static-publisher/static-content/file3853.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/security/pam/index.html_gzip_db28bc093e0ea0ad92b8e937cbc815819623e6b34a5cab973101a92b2ea4b232" +path = "static-publisher/static-content/file3853.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/security/ssh_public_private_keys/index.html_69a816ee83623a69b0349904aa669a3d962427e88f4e595fa877039f7e786e21" +path = "../build/minified/site/tr/guides/security/ssh_public_private_keys/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/security/ssh_public_private_keys/index.html_br_40be0341ed96a47db24c407078a1a50bc7142bccecd8662155c2661d2132a564" +path = "static-publisher/static-content/file3854.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/security/ssh_public_private_keys/index.html_gzip_ce0d39f63bb57c0d6b6d022b330324d47e53c1cfa27a99999bdb0fea5bfb5b30" +path = "static-publisher/static-content/file3854.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/security/ssl_keys_https/index.html_12d0ffe68513b885c11719cba99354ab668574a7dd479887ca50ac244ef7d8d3" +path = "../build/minified/site/tr/guides/security/ssl_keys_https/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/security/ssl_keys_https/index.html_br_1b4047bd4f6965cd2d715faa7ab3d0694a476d76a229a39fc09caa89af8cd5c8" +path = "static-publisher/static-content/file3855.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/security/ssl_keys_https/index.html_gzip_07741b5ccf25d9db81e01edf103585dd2663904309264804818543035916b668" +path = "static-publisher/static-content/file3855.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/security/tailscale_vpn/index.html_8a2f8fae3a7c0010781fc069938d54034244fb08601c49fb1d5368e300f4e43e" +path = "../build/minified/site/tr/guides/security/tailscale_vpn/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/security/tailscale_vpn/index.html_br_34cdfa64f3426d94612c50d0c8449caf67ba70f3a9864c8ece20165d71156044" +path = "static-publisher/static-content/file3856.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/security/tailscale_vpn/index.html_gzip_240f6abfe7baa8f174dfb62c37e63e9ba63281816db16df492ffe31d2e932feb" +path = "static-publisher/static-content/file3856.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/virtualization/cockpit-machines/index.html_26a69ec57864d7e3aca453c54d0d57649e5387c3d712b869959f77914f79e3e7" +path = "../build/minified/site/tr/guides/virtualization/cockpit-machines/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/virtualization/cockpit-machines/index.html_br_6971a38ffa60eae6ed0395054db4c2cfad7549144e74ec9bc4ac3d9c45f84dd1" +path = "static-publisher/static-content/file3857.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/virtualization/cockpit-machines/index.html_gzip_37f1743af210f2801f333544f541967bb0081bcad3f63f357737514f851e4f2c" +path = "static-publisher/static-content/file3857.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/virtualization/vbox-rocky/index.html_27a43c39509d9f49674273688ab5ceb8cba7acde5c0d0ba63cedd6a0703f7a36" +path = "../build/minified/site/tr/guides/virtualization/vbox-rocky/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/virtualization/vbox-rocky/index.html_br_0487158c2d6bc8c25c7099f4053eaac1361495303d62d1755160f23107c76387" +path = "static-publisher/static-content/file3858.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/virtualization/vbox-rocky/index.html_gzip_5798e31fb8d4ac5fbc210b11f522e78dada90172e4a8030cbbb59b052a861da1" +path = "static-publisher/static-content/file3858.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/virtualization/vmware_tools/index.html_38e2248e386248eedac2bb6fbba3934a95dc90ed176b50ccff84fc7dbb2fa961" +path = "../build/minified/site/tr/guides/virtualization/vmware_tools/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/virtualization/vmware_tools/index.html_br_1fc16710e23c17e9b94c56366ae04a0684aeb2a6dedbbcbe3e030a0075865ac2" +path = "static-publisher/static-content/file3859.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/virtualization/vmware_tools/index.html_gzip_4b2695179c754276ad6532996c772fe89e1f6c531c42edef28c82ea31287e9e0" +path = "static-publisher/static-content/file3859.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/web/apache-sites-enabled/index.html_00879d78ced28e04c0ce37a6160f8fbe5c5cefc0943f0f1d6dd91dafb56e1e31" +path = "../build/minified/site/tr/guides/web/apache-sites-enabled/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/web/apache-sites-enabled/index.html_br_18e1c517e324ff2e9803679c103cb3d0cc2264cc2d74ed175334a8596e59e13d" +path = "static-publisher/static-content/file3860.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/web/apache-sites-enabled/index.html_gzip_0659b6bc9a94694b41d7ccd1cca9de42a4f12f6e2ae8c77fd29c7a866221b7aa" +path = "static-publisher/static-content/file3860.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/web/apache_hardened_webserver/index.html_2ad435a1e37c1c963d8abbee6c5d9cc9cf97b2c160a9a3f81c155db6e6a3eee4" +path = "../build/minified/site/tr/guides/web/apache_hardened_webserver/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/web/apache_hardened_webserver/index.html_br_09d4623d3ab5902dd0673ace0d65851fba7d7b80435d9c0a78f62a2e1cb063ba" +path = "static-publisher/static-content/file3861.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/web/apache_hardened_webserver/index.html_gzip_aa610311ace9ae4630459e58e7cc953561e27211ca53606a528545df0c957bea" +path = "static-publisher/static-content/file3861.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/web/apache_hardened_webserver/modsecurity/index.html_21309aab9c1eee239450b5b1408f1e4c1d06ee49c3ea5542bd984da1e18ecaf4" +path = "../build/minified/site/tr/guides/web/apache_hardened_webserver/modsecurity/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/web/apache_hardened_webserver/modsecurity/index.html_br_eedaa80386fac616d524cd2850ddb61f1bd7344d5b08d22cf4b920269456b987" +path = "static-publisher/static-content/file3862.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/web/apache_hardened_webserver/modsecurity/index.html_gzip_e3c16dcb151c4138afe0b270a493c8afb24c7accb617f68d2f60ff1cc296589c" +path = "static-publisher/static-content/file3862.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/web/apache_hardened_webserver/ossec-hids/index.html_730ecd16e1ea41d2cfd71baf5058f3105b08105411726af6a505d4c74084bf15" +path = "../build/minified/site/tr/guides/web/apache_hardened_webserver/ossec-hids/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/web/apache_hardened_webserver/ossec-hids/index.html_br_61656eee8cbe691cfd125f285917c7f89245e9be1f9abf3c392cc98084913575" +path = "static-publisher/static-content/file3863.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/web/apache_hardened_webserver/ossec-hids/index.html_gzip_11f5fbb1faa03d921558591ced152d514724e05d5f45316fa58e0a26448e68c2" +path = "static-publisher/static-content/file3863.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/web/apache_hardened_webserver/rkhunter/index.html_6e3acc132fcfef3f7daa727c63d3ac764ee95d769879be4481b82b3b344ff1e3" +path = "../build/minified/site/tr/guides/web/apache_hardened_webserver/rkhunter/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/web/apache_hardened_webserver/rkhunter/index.html_br_15253045d39a75a2e6c3cd3c463fc3f091c805f585e9e1cd4bd3248a8f765087" +path = "static-publisher/static-content/file3864.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/web/apache_hardened_webserver/rkhunter/index.html_gzip_afa823a09bd38c45dd1b41753774f29ffea1db05e50b5c0e1a04bfeb7f41e991" +path = "static-publisher/static-content/file3864.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/web/caddy/index.html_73c2143319e31567ad1ef1fe7b7c0ed663d6081a5f5fc9cdcdb4702c35a82354" +path = "../build/minified/site/tr/guides/web/caddy/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/web/caddy/index.html_br_ad4d730579bebe37682fdeea06884c87a139dbcdb7d5a9b40da23db458540802" +path = "static-publisher/static-content/file3865.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/web/caddy/index.html_gzip_3fd16bd74e22e93cbb361de403f0bddaca813a922a752afab27159e56f18c203" +path = "static-publisher/static-content/file3865.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/web/mod_SSL_apache/index.html_bc31c53037eb029347b323cec1821dea756ed3494e682f77cc95a9b17dad721c" +path = "../build/minified/site/tr/guides/web/mod_SSL_apache/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/web/mod_SSL_apache/index.html_br_3946ca9eab3153b99b75ce05facfbb628332f281c9250dff512e8f3921f88eb3" +path = "static-publisher/static-content/file3866.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/web/mod_SSL_apache/index.html_gzip_570e24fe0c2b8d9ddc95a37c64206ee60186ee67dbbe6fe16f72dfa24d533eb2" +path = "static-publisher/static-content/file3866.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/web/nginx-mainline/index.html_3c5a95b6f9922839d985a1c3dfc5e3669ad3f9e5e296a1e2b6e100050063a334" +path = "../build/minified/site/tr/guides/web/nginx-mainline/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/web/nginx-mainline/index.html_br_e7e821a4f1d4e483802fb1e26daeed9ceecab18773e969239381e3c222e66653" +path = "static-publisher/static-content/file3867.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/web/nginx-mainline/index.html_gzip_62e90ad04096271f16151a257a21da0ce441c807c333355aa8a64175f62fd0d4" +path = "static-publisher/static-content/file3867.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/web/nginx-multisite/index.html_f367b927e5e727909d214542fb45e08c1c838b9931c718d95c0156d5cf6d31af" +path = "../build/minified/site/tr/guides/web/nginx-multisite/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/web/nginx-multisite/index.html_br_237c6f3aca78f85a9a281ba3dcb18c12d380b13fc8d3c644e1bc0e940f500a24" +path = "static-publisher/static-content/file3868.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/web/nginx-multisite/index.html_gzip_76d5b11231765a8ff766df55e3b3543612e9a05664c4e8d6388d9f866531be94" +path = "static-publisher/static-content/file3868.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/web/php/index.html_cc15729e0f0f4613050ebbf4f4c62043cf67a93251b19a319970f3f060b15464" +path = "../build/minified/site/tr/guides/web/php/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/web/php/index.html_br_c7510543e527abd9ab47ae0af5c615b20f5423a01bab824f0c5ae204482cb6b5" +path = "static-publisher/static-content/file3869.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/web/php/index.html_gzip_0e0bc2c71b59944adf221ad9af9cd07860c00e056d52f3bc1925b9801a71fa29" +path = "static-publisher/static-content/file3869.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/web/tor_onion_service/index.html_41ca73a07a9770fcd52dde3510e3cfa3500be6e690b0e971b558cdab2a725167" +path = "../build/minified/site/tr/guides/web/tor_onion_service/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/web/tor_onion_service/index.html_br_21c1a9a7b80ca1f9112bd210ff717b8d042f029dea1c10fe073ae2a4990c80bf" +path = "static-publisher/static-content/file3870.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/guides/web/tor_onion_service/index.html_gzip_9524c4e5254957acb2dfda1f3735020eda4a7131bd3423433f0ceed74dbe389d" +path = "static-publisher/static-content/file3870.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/index.html_adfed6e8e4f1166359a9f06a66fd56a2887f32d18b9e40dea682dd25bdc3ec4c" +path = "../build/minified/site/tr/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/index.html_br_538033897fc9db4e6097085b9c1af31eea4128c53063788152044954fc34418c" +path = "static-publisher/static-content/file3871.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/index.html_gzip_c90eaf9fcc3f0cb644f50c5d0a2d78b142806ded354dc0b135db868e52abfa4d" +path = "static-publisher/static-content/file3871.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/labs/index.html_d1092bd3aaa83fd96eac0cb3a43a5541405965d6cac2a50f77fff4dd1b007341" +path = "../build/minified/site/tr/labs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/labs/index.html_br_61c0ce760e92cae8829f40d7902aeabc28c09de5bcef95d5c692ba7779e44e25" +path = "static-publisher/static-content/file3872.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/labs/index.html_gzip_c858c3661d682b9cb8dec0575afbaa550e1c65dda88f1fddd4382a2e02e6b3be" +path = "static-publisher/static-content/file3872.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/labs/networking/lab5-nfs/index.html_059e10b2abc543302c334ff198a612aa66afc8e409d81aa85f5ab2f7f1d32576" +path = "../build/minified/site/tr/labs/networking/lab5-nfs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/labs/networking/lab5-nfs/index.html_br_155979f6c746aa6d82a1bcf185ee4bfdfadbba672b28493255c8bb568d736dd0" +path = "static-publisher/static-content/file3873.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/labs/networking/lab5-nfs/index.html_gzip_73ced8df12fdfdfad2edaea41346ab3fb8199ff991cbb33f70095f66ee5767f1" +path = "static-publisher/static-content/file3873.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/labs/security/index.html_2c4d4b7f2cfbad6d69a70aa6af5b06144d514a24b80749a2f3470f5802f8968e" +path = "../build/minified/site/tr/labs/security/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/labs/security/index.html_br_7f007236259d71b6bdd0254c5b8acc97e5814c13e3137827225c491a9469c4ba" +path = "static-publisher/static-content/file3874.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/labs/security/index.html_gzip_79a02bc99a1f6b13fd17f49abed783a48e146580b24bdbc2aab3f312e2445ed1" +path = "static-publisher/static-content/file3874.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/labs/security/introduction/index.html_62849bc20cdd0eb646a4013c0ea08f16259623721e0b0622320eced8adf7831b" +path = "../build/minified/site/tr/labs/security/introduction/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/labs/security/introduction/index.html_br_f1b67d5d305c59512311d3928c3dd4db320f3a2e756dc39a03a09249e512affa" +path = "static-publisher/static-content/file3875.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/labs/security/introduction/index.html_gzip_446847e5fd3df07639f616d941a7140418fd7d99e816ffc621232e2a7c883cff" +path = "static-publisher/static-content/file3875.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/labs/security/lab3-auditing_the_system/index.html_ce7fdab95e828bf5c41042f686ba04fd170513f760008da4308f5e55b8bbd966" +path = "../build/minified/site/tr/labs/security/lab3-auditing_the_system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/labs/security/lab3-auditing_the_system/index.html_br_1408a3740ccaf68438259e39fc450960c93c99b1c85ce2d886b617068aabd210" +path = "static-publisher/static-content/file3876.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/labs/security/lab3-auditing_the_system/index.html_gzip_138eef19e87af2b41e3693bc5b6c85a60d292930602f65ea6a6cfecfe248e0e7" +path = "static-publisher/static-content/file3876.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/labs/security/lab8-iptables/index.html_5610b0842681ceed191a8c542d9deded781d8dc2b2d3624e433effba63659872" +path = "../build/minified/site/tr/labs/security/lab8-iptables/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/labs/security/lab8-iptables/index.html_br_7342865d8420032054a440731be895397b83f9a3fd96a62a1004b4ebf8618d34" +path = "static-publisher/static-content/file3877.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/labs/security/lab8-iptables/index.html_gzip_b7d07e49b03fc182725c547ac97b221bf1129ef19ad9a0d33973ab6f975fc2e6" +path = "static-publisher/static-content/file3877.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/labs/security/lab9-cryptography/index.html_bedef74a715b9eadba5a2f3f717aa80215d78518f9758019606493e59c9f81b9" +path = "../build/minified/site/tr/labs/security/lab9-cryptography/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/labs/security/lab9-cryptography/index.html_br_8e081762d295c184745e86e29a3cc321371e3320ce4670c7679a47c548a8a613" +path = "static-publisher/static-content/file3878.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/labs/security/lab9-cryptography/index.html_gzip_26710909f72ca1742acc29f9a3388f135ee982258f5940a4d7d0b26baab11e5f" +path = "static-publisher/static-content/file3878.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/labs/systems_administration_I/lab3-system_utilities/index.html_e153963a54ed3e3515ff59761709bfc9281aab0a6c1b332f4e6d96bdb1b473d7" +path = "../build/minified/site/tr/labs/systems_administration_I/lab3-system_utilities/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/labs/systems_administration_I/lab3-system_utilities/index.html_br_d2024e2927f159fa3863f0ebc161d14423a2f13869c4ea5f84df6e119214f264" +path = "static-publisher/static-content/file3879.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/labs/systems_administration_I/lab3-system_utilities/index.html_gzip_620fe30d91f265eb30e13870037aa5865eda71b8551289b25be1d99bda3b767b" +path = "static-publisher/static-content/file3879.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/labs/systems_administration_I/lab5-networking/index.html_53031d8347d54377a2e15f3301470e2d36f49b242323adb78cb5bffb4c787754" +path = "../build/minified/site/tr/labs/systems_administration_I/lab5-networking/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/labs/systems_administration_I/lab5-networking/index.html_br_ff6688c0b5b2aa2eb4592f32326677bc5a08868ed292115a40fbcf21f8e760a4" +path = "static-publisher/static-content/file3880.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/labs/systems_administration_I/lab5-networking/index.html_gzip_cdcd22df717d9d688295350ffad5c769a521b4aad7453587295f9bcb2206c1e4" +path = "static-publisher/static-content/file3880.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/labs/systems_administration_I/lab6-user_and_group_management/index.html_30bc6e180892015309badbdab4a09dbd3b09e4b1a2ac4771ddcd24b7e667f346" +path = "../build/minified/site/tr/labs/systems_administration_I/lab6-user_and_group_management/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/labs/systems_administration_I/lab6-user_and_group_management/index.html_br_1321e36b1c84b1ed9cd656d147ea16f98729411ffff570b7bceb45477b07c6d6" +path = "static-publisher/static-content/file3881.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/labs/systems_administration_I/lab6-user_and_group_management/index.html_gzip_be37715b27601aa6c459dca29f39c4b5399c8d671980bcba28a3633defee2c31" +path = "static-publisher/static-content/file3881.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/labs/systems_administration_I/lab7-software_management/index.html_72236668a0b8814136d5cc8f83b2bf7572fc2d5c6423fb14b0fea0c5212cfac0" +path = "../build/minified/site/tr/labs/systems_administration_I/lab7-software_management/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/labs/systems_administration_I/lab7-software_management/index.html_br_126e3e714e9eba3468c8fc619fe27048fa545858567a15a1b6d88463ca17bf8a" +path = "static-publisher/static-content/file3882.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/labs/systems_administration_I/lab7-software_management/index.html_gzip_0bd3fbe743fdda5abd00641092d78068b70c957f8e0dc69f9eb9d04222976fee" +path = "static-publisher/static-content/file3882.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html_63c58fcc5259e159ffbbe04bed3db268ea2495b124797d1ca3353c4f72d1c04f" +path = "../build/minified/site/tr/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html_br_77e9d9296722139274e4a81f805e36d4ac6f4ca661d8d44d11e34f2a039b564a" +path = "static-publisher/static-content/file3883.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html_gzip_ea8161d9d869ff6d7d0c2f61c9cad468879f185674ca75b2b09e54741fbcd0d5" +path = "static-publisher/static-content/file3883.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/labs/systems_administration_II/lab3-bootup_and_startup/index.html_d1c2b1973ca91fc4ac43dab6ce2d8d1505064f8d9c8c4d1e0718211e9978d06c" +path = "../build/minified/site/tr/labs/systems_administration_II/lab3-bootup_and_startup/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/labs/systems_administration_II/lab3-bootup_and_startup/index.html_br_260f2af3710715d2e21fc133a091731972fca4fb47f70686b8d84ce1048115e1" +path = "static-publisher/static-content/file3884.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/labs/systems_administration_II/lab3-bootup_and_startup/index.html_gzip_3b7944a791564331d1e3190c68deff4c215fda22e3ae9f69ae60407dd9c064a6" +path = "static-publisher/static-content/file3884.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html_ea9ad2730eb070ba613434c28fe0297c27a44e74408d32e3f537e1e4c3472513" +path = "../build/minified/site/tr/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html_br_ad013a7bbb66dcd7437b67ed601a1f75a9b2a7a4ea4a197ad0efde87ecbbfa4f" +path = "static-publisher/static-content/file3885.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html_gzip_48d568b59fcec8361ac28df22630c2180f058d1b9268e66f6cd41155a71e1887" +path = "static-publisher/static-content/file3885.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/labs/systems_administration_II/lab6-the_file_system/index.html_9ee7cf4d229d2401dcb304f6489b8a904c8906ab281f4cbf8b4daba5ab381548" +path = "../build/minified/site/tr/labs/systems_administration_II/lab6-the_file_system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/labs/systems_administration_II/lab6-the_file_system/index.html_br_18bac6fdb44c6f57ce0d46cc3506c9ceb09a58ce05ee467fa16a728b95687def" +path = "static-publisher/static-content/file3886.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/labs/systems_administration_II/lab6-the_file_system/index.html_gzip_302867426c08ff98deb2b1732ffb2e40ca6c5888d92bda1cb911170cdd9de718" +path = "static-publisher/static-content/file3886.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/labs/systems_administration_II/lab7-the_linux_kernel/index.html_92a4a930086de71b999c99b8cc543d843c7e4681c3d2cdcca3183e0007c07164" +path = "../build/minified/site/tr/labs/systems_administration_II/lab7-the_linux_kernel/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/labs/systems_administration_II/lab7-the_linux_kernel/index.html_br_ae85f3c2858079de386d511be38c27639146ccfa7af46859de20f314f0d71996" +path = "static-publisher/static-content/file3887.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/labs/systems_administration_II/lab7-the_linux_kernel/index.html_gzip_2bddd42c370f2f3e5c786d8f9b7c945d8064ea6c2f2eb62a785313afbfbb9604" +path = "static-publisher/static-content/file3887.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/release_notes/8-changelog/index.html_b007d60b4874740756fb4677ef7da70b6bc9a6c6b8da12816bc785eb994bf57f" +path = "../build/minified/site/tr/release_notes/8-changelog/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/release_notes/8-changelog/index.html_br_5778625c4d74e8855e9d994af321cc958988caba66ae8b6eb09e220c71372e2f" +path = "static-publisher/static-content/file3888.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/release_notes/8-changelog/index.html_gzip_11655f1e39abbc63d8b8216f24c03786c15a959ec7067f89136d229cffccaa7f" +path = "static-publisher/static-content/file3888.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/release_notes/8_4/index.html_1f70519bd3c3ab5d310d1300677dc25c00f0f3919c0b1ea6aeb07d8493ccc669" +path = "../build/minified/site/tr/release_notes/8_4/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/release_notes/8_4/index.html_br_24af701d4b379ab4fea53c1bc9e9cf20fe4935e7c7483ac28386d5102e795c91" +path = "static-publisher/static-content/file3889.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/release_notes/8_4/index.html_gzip_ad562ed29bc44bdb9e102c34b6371643139ab9d9e33f00b59799d0a993c83def" +path = "static-publisher/static-content/file3889.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/release_notes/8_5/index.html_173fc5290c9925aea833480953943a1ff3a8b8d7da89bf87c86baf02ffa8bbc4" +path = "../build/minified/site/tr/release_notes/8_5/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/release_notes/8_5/index.html_br_316b6d30eb82b545f431ae8e931b91d3fac385517b92e6b9d9ddf89c687b5f91" +path = "static-publisher/static-content/file3890.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/release_notes/8_5/index.html_gzip_895d6923cfe98bfe050dabeb1cd9c3f7656ab5a537db7ac58e053dc845e38527" +path = "static-publisher/static-content/file3890.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/release_notes/8_6/index.html_ceb60aa216778b1cdabdf7d6d708cf107f0c8c244386898ac8535dee6e1ea309" +path = "../build/minified/site/tr/release_notes/8_6/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/release_notes/8_6/index.html_br_4881c6304b98856ddf4fc249839d354f0b2466cfb06de9f7b13a556e137e52a1" +path = "static-publisher/static-content/file3891.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/release_notes/8_6/index.html_gzip_cdbea11057482118059a52092e3249b51b251dc4be1f13da11cb2b9534e572ea" +path = "static-publisher/static-content/file3891.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/release_notes/8_7/index.html_721928fba022a962e30086ea7c44b8615dce9ed952a7598c2d112743005c4f7c" +path = "../build/minified/site/tr/release_notes/8_7/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/release_notes/8_7/index.html_br_88d62be26137650d574998e4d97e6b194bd2f2e50457b80f0ff2788c07cc9f30" +path = "static-publisher/static-content/file3892.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/release_notes/8_7/index.html_gzip_7ce6a5ff909e43221897ec18d2f6ee4d2f790fc287c7c7eca11fd16e81803201" +path = "static-publisher/static-content/file3892.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/release_notes/8_8/index.html_05934ae89e279308e4f890087903d94856bf5fb7e083136695d33feeaa256a70" +path = "../build/minified/site/tr/release_notes/8_8/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/release_notes/8_8/index.html_br_e09db487558cdf164e629c88c6d0f304a9bcf63f464beeba5def9e61ac2897b8" +path = "static-publisher/static-content/file3893.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/release_notes/8_8/index.html_gzip_1a7e327cf3f51e57331f0bde4510a611fe189abe4d305bd8750e7f3f12ec3b5c" +path = "static-publisher/static-content/file3893.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/release_notes/8_9/index.html_eb6d7524967b702726eebea261036b468e58810432e14fe28441897c169ea99b" +path = "../build/minified/site/tr/release_notes/8_9/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/release_notes/8_9/index.html_br_0544e5991638aa3105c82414028353f1a45797738304ee11bd54e1cf64e9d153" +path = "static-publisher/static-content/file3894.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/release_notes/8_9/index.html_gzip_1600cfa4ad949a0480ada9282c1a419ba8d25cd66f7934cdc61c90d4d65748f2" +path = "static-publisher/static-content/file3894.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/release_notes/9_0/index.html_43a55afeb0e4d08f98c82f5ef78edb271c7ed85a94eee515c523e70f165cb8ac" +path = "../build/minified/site/tr/release_notes/9_0/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/release_notes/9_0/index.html_br_171d0d7ad3aca7e9dd167e4a18bcde201c14664799fcd929a3a49d2591688a65" +path = "static-publisher/static-content/file3895.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/release_notes/9_0/index.html_gzip_7375b6ba6791b02e1736ea6af6bcea239387f5e1e8947bc70efd6329fbe77014" +path = "static-publisher/static-content/file3895.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/release_notes/9_1/index.html_76409f8cb3fc6cacb89a1f0af893ac8acd70f2202bce2da20747f8cdaf0f2398" +path = "../build/minified/site/tr/release_notes/9_1/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/release_notes/9_1/index.html_br_d300a5217ca1275c9ef70b71488fe8e48678fc1dde7379494e55e4029dab3989" +path = "static-publisher/static-content/file3896.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/release_notes/9_1/index.html_gzip_dc1a0e03908936a219326aa7e0d310a901568a2d7b12d5e8d376d375a37dd525" +path = "static-publisher/static-content/file3896.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/release_notes/9_2/index.html_0d2efc47a6a78a723b7f406ceea7e0430d0e600eeaf4a961c7942dad87f126ee" +path = "../build/minified/site/tr/release_notes/9_2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/release_notes/9_2/index.html_br_eab41a7ae0950cc344bb1fc29c0291a4ab56ef33e1ae86600d5df4af3d10a1aa" +path = "static-publisher/static-content/file3897.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/release_notes/9_2/index.html_gzip_0031ed53db9605900f391d6e4a8f053b5c9441e306d4d228437c9666b3e07a7d" +path = "static-publisher/static-content/file3897.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/release_notes/9_3/index.html_9218cf8dc947f653fb841386600a829292ec275978ef06338fa3db9e17200c85" +path = "../build/minified/site/tr/release_notes/9_3/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/release_notes/9_3/index.html_br_c9fa68ce2d7aae839b740ba72f095ad25adf0b48fca2a439611ab07d2aadca61" +path = "static-publisher/static-content/file3898.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/release_notes/9_3/index.html_gzip_5168d4857992b4342c9c3e22dfa3c5e05ef235b88ee1bc4c009a5fd45a533251" +path = "static-publisher/static-content/file3898.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/release_notes/index.html_6f127e665c64cd62d32d5ea5847e629cf3cd2a247e4621f2194c1ef268bd9f3c" +path = "../build/minified/site/tr/release_notes/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/release_notes/index.html_br_1472a467c8137b3c4bbd43b9dca87acbd3e74a56ec6520818eeda109428de376" +path = "static-publisher/static-content/file3899.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/tr/release_notes/index.html_gzip_d7ba6856752c26cab2f160bc340d35a62759aecc865f55a7876d6f59293230ec" +path = "static-publisher/static-content/file3899.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/admin_guide/00-toc/index.html_777ff3adaf1aedc13143d7059221ff64b4b0e6ea8a0e18f784f126e755eae4c9" +path = "../build/minified/site/uk/books/admin_guide/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/admin_guide/00-toc/index.html_br_e97e2c609ac94623bba5149026f3036bb168f86e63d0938d7f54b0b21c155a57" +path = "static-publisher/static-content/file3900.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/admin_guide/00-toc/index.html_gzip_5f72e6dad634a4330abdd20fd301b75a575020c4064f2d9505bfbfa6005eb4f8" +path = "static-publisher/static-content/file3900.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/admin_guide/01-presentation/index.html_6ed964cedeb2374f6834bb903ba3e40cfbcc3628a43297af4a870d79c8950d86" +path = "../build/minified/site/uk/books/admin_guide/01-presentation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/admin_guide/01-presentation/index.html_br_6d8c76c295d59c784948085a11c114d17dd41ff053c71afebc9f07a41e7b289d" +path = "static-publisher/static-content/file3901.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/admin_guide/01-presentation/index.html_gzip_6aeaeb87cd2902a370729bdf8c531d52444a04320004c5c40c63e57dcaf0ab91" +path = "static-publisher/static-content/file3901.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/admin_guide/03-commands/index.html_fb7627dc0759d3c79758dc31f98824889d5a8e391b0fb2a4a4365e3305c90601" +path = "../build/minified/site/uk/books/admin_guide/03-commands/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/admin_guide/03-commands/index.html_br_89c14a540781d6653e0684b282f6c8666aa8d58ddf4a93ef86e4bca478ebbad9" +path = "static-publisher/static-content/file3902.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/admin_guide/03-commands/index.html_gzip_4b0a12a1e83984ece78c46d7c43eba5da900c06b2014092a56644d52efdd0c29" +path = "static-publisher/static-content/file3902.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/admin_guide/04-advanced-commands/index.html_eb4c91242eb907b5c9f6c0996aa63415fc1fcf4cc63d0967abdb003645df74f1" +path = "../build/minified/site/uk/books/admin_guide/04-advanced-commands/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/admin_guide/04-advanced-commands/index.html_br_4d0efdc82386a0a4c464b3d4e5381fc0d1fec1fa227dca675b104fa6e2c34ab9" +path = "static-publisher/static-content/file3903.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/admin_guide/04-advanced-commands/index.html_gzip_cabc310bafd27b09f9867a2dc8bdd0c98b18af3ad138c30017526b7a0e966c26" +path = "static-publisher/static-content/file3903.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/admin_guide/05-vi/index.html_3b21d708b9e4660d1a0d108b7813aaf7c3362277e5d8a6a689418b14375f04cc" +path = "../build/minified/site/uk/books/admin_guide/05-vi/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/admin_guide/05-vi/index.html_br_d344c1afc3e90edd759d128ebcf0e7bf7e3a0d1e4e1598e76d32d575ef0d2251" +path = "static-publisher/static-content/file3904.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/admin_guide/05-vi/index.html_gzip_848a449ea7d45b6b94dee964d03fceccd4466bf38d64d38d071529fa4e360824" +path = "static-publisher/static-content/file3904.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/admin_guide/06-users/index.html_1c5e17fb0ea4093ef67e07f39cde00ef1eb756d2e53065fed490c6c06f2cc513" +path = "../build/minified/site/uk/books/admin_guide/06-users/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/admin_guide/06-users/index.html_br_74bc82aa6e92686e3d6539c2ba6645c7251751e82eac7afdeb30f5f750fe50cb" +path = "static-publisher/static-content/file3905.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/admin_guide/06-users/index.html_gzip_ae2de56e7e12cb75f1060635b2d04aa16501c7b10786297e6fe6f98103ad97a8" +path = "static-publisher/static-content/file3905.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/admin_guide/07-file-systems/index.html_1c3fa883aa07978dbf77e92a48162efabeca8e973ec4bfc62b6796b9b012f320" +path = "../build/minified/site/uk/books/admin_guide/07-file-systems/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/admin_guide/07-file-systems/index.html_br_c52aa21730c90bb85bdd1d27cfe83f655037c131f292fa480a2b3ab5f79cdc3e" +path = "static-publisher/static-content/file3906.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/admin_guide/07-file-systems/index.html_gzip_0014f3d5d764ad21fb33c4d36d8d22dbb94e9a511a02044c50efc0c13c900dbc" +path = "static-publisher/static-content/file3906.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/admin_guide/08-process/index.html_31aa42190afea20032f612720e0495c209066ca8cfd29cd7512e5bea7c172281" +path = "../build/minified/site/uk/books/admin_guide/08-process/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/admin_guide/08-process/index.html_br_dd3c664610c1199d948de291a2563dcad945d0b0f3de1436ee82bcf843376e93" +path = "static-publisher/static-content/file3907.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/admin_guide/08-process/index.html_gzip_5b7c700d5523d7dd1f9da568cc0c18aaaf18f05aa3fc790921e8cd1ee7fd4a8e" +path = "static-publisher/static-content/file3907.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/admin_guide/09-backups/index.html_bdbc7e9c3393bf105c55cbbc73f51f5832738e7f4b75a28b9741805db3afa95e" +path = "../build/minified/site/uk/books/admin_guide/09-backups/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/admin_guide/09-backups/index.html_br_bf19cc10e90182b129fd501fd2361208baab131ffb67b6f6530e50b938bfd8ec" +path = "static-publisher/static-content/file3908.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/admin_guide/09-backups/index.html_gzip_ec23501fd82bdf780a5e330adf33a9a6f23da1feae09b309ffb9cf780e1c700a" +path = "static-publisher/static-content/file3908.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/admin_guide/10-boot/index.html_75e103e593c595e4ec503176bb0e2107337b3af3cfcbb0779c3ef576143d88cc" +path = "../build/minified/site/uk/books/admin_guide/10-boot/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/admin_guide/10-boot/index.html_br_f7f3b8f245e8fb4e79a3f22e65e647a87d3cc45a41085d0b3c961dc04dd3fe4e" +path = "static-publisher/static-content/file3909.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/admin_guide/10-boot/index.html_gzip_2ca88606c597215d3105ba63adfedd3d81e8448f8ed5e9af9d64178f8f8256ba" +path = "static-publisher/static-content/file3909.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/admin_guide/11-tasks/index.html_160b492a7262abde5183f62589b0db16927b57dc68b2d725951c6b8d29c08d63" +path = "../build/minified/site/uk/books/admin_guide/11-tasks/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/admin_guide/11-tasks/index.html_br_436faa6b3f4d2ab90a1208449a7caa67113343329e26f9c71416132ba631042e" +path = "static-publisher/static-content/file3910.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/admin_guide/11-tasks/index.html_gzip_4932f07848b82c398f235ea1796f4101c7e1f0f1317b8cbbeb23f8b440cdc634" +path = "static-publisher/static-content/file3910.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/admin_guide/12-network/index.html_29b4b95b0db6efcf451a5cff9d2fce427b02ebbecb3894ca73d55f7cf73506f2" +path = "../build/minified/site/uk/books/admin_guide/12-network/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/admin_guide/12-network/index.html_br_77565990d3f12c4999c0459601a9dd601e65f8e17c7a854e742b4d81392a7dd2" +path = "static-publisher/static-content/file3911.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/admin_guide/12-network/index.html_gzip_cf6f3013f5ee3aa4543d7d50df97c19e3294a17b5840c347a19d9b00d6c855a0" +path = "static-publisher/static-content/file3911.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/admin_guide/13-softwares/index.html_b39fd350b3f7ca810d82766287f8c9c10074c3948f7caf66f6c62903d2c10e07" +path = "../build/minified/site/uk/books/admin_guide/13-softwares/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/admin_guide/13-softwares/index.html_br_33782d20f90a6c8fd63dd4571f3a6aadfc67be53c610350647e9193fc57ac60f" +path = "static-publisher/static-content/file3912.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/admin_guide/13-softwares/index.html_gzip_7318a3193aa2fa1544612b05de41a400a016ae21a2e576fc6ebea332fda6072d" +path = "static-publisher/static-content/file3912.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/admin_guide/14-special-authority/index.html_407e9387b808ea2a8ecb29e448e33b361dc0a292a760bf548f13664e1e152d44" +path = "../build/minified/site/uk/books/admin_guide/14-special-authority/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/admin_guide/14-special-authority/index.html_br_630ee096fd10c6b2fe20b670595d112599ba280e2c9c449e02b92f202a213816" +path = "static-publisher/static-content/file3913.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/admin_guide/14-special-authority/index.html_gzip_1ee872838e27e01c8ea1afb95578185b429f711a939acc00234772720ff936bd" +path = "static-publisher/static-content/file3913.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/admin_guide/16-about-sytemd/index.html_671bc217de738af6168c5301eb3a0cb04fd3c16ab45704856fca6b597b3c3f32" +path = "../build/minified/site/uk/books/admin_guide/16-about-sytemd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/admin_guide/16-about-sytemd/index.html_br_17de9a5095264fe6f996552837e591ebda2506b2a079950488dd2a11825534ba" +path = "static-publisher/static-content/file3914.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/admin_guide/16-about-sytemd/index.html_gzip_6c24135458a2888dd3286d7acb27d0ecf5989180762a5780efe3112b7dff1a15" +path = "static-publisher/static-content/file3914.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/bash_programming/01-Shell-overview/index.html_fd2c0f7abe0525c8d678d373c2d65c849d182736acaf80d6b386560a9bc35da3" +path = "../build/minified/site/uk/books/bash_programming/01-Shell-overview/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/bash_programming/01-Shell-overview/index.html_br_73a49543b907585a47a814a70f3b39bb1b4a93d4afffabdfc644be6ce515f3b9" +path = "static-publisher/static-content/file3915.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/bash_programming/01-Shell-overview/index.html_gzip_4edd18f9d8adab0362b4afc9576586fbd665c00e293f525bb9408a3fbf26651b" +path = "static-publisher/static-content/file3915.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/disa_stig/disa_stig_part1/index.html_182008b027f9e2962a76696a547330d350b36fbc35c24606b92283195c5b7212" +path = "../build/minified/site/uk/books/disa_stig/disa_stig_part1/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/disa_stig/disa_stig_part1/index.html_br_94b52f4e48d98248b792e171fe9e0f8ab7cced059091051a939659c452adc743" +path = "static-publisher/static-content/file3916.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/disa_stig/disa_stig_part1/index.html_gzip_f714de3ff25d8480c27db040d693a5d821f57c88805f87628aecf3cec7fbf549" +path = "static-publisher/static-content/file3916.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/disa_stig/disa_stig_part2/index.html_e5be07a79efee823f234082ac9b3852f11941ba0c56144eccf7aea84e26b0414" +path = "../build/minified/site/uk/books/disa_stig/disa_stig_part2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/disa_stig/disa_stig_part2/index.html_br_bafdaf36676b937ecc18e2c8502d07700ff9ebe0f49e4928ea807e592e31b4cb" +path = "static-publisher/static-content/file3917.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/disa_stig/disa_stig_part2/index.html_gzip_c078e7e491453f4bda7910fd6cfb411ec05b63d2d7f321f36417c56bd6a4e7b6" +path = "static-publisher/static-content/file3917.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/disa_stig/disa_stig_part3/index.html_c503789881c9a381c1136d5f1a504186815f3cd98c8321443c63dec46c261505" +path = "../build/minified/site/uk/books/disa_stig/disa_stig_part3/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/disa_stig/disa_stig_part3/index.html_br_8aac2f2d9879e01b87e1d0d1a8e6f13c2c596ed9efa648c53ad2ed8cd3579880" +path = "static-publisher/static-content/file3918.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/disa_stig/disa_stig_part3/index.html_gzip_cf59c567aa5903314f84e51f80a44403ccbb53366cd935dec3ad852d40090fb1" +path = "static-publisher/static-content/file3918.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/index.html_c15ea48151b2d828f7662889c9aafea67742f2d6b802e4c6c4cb91b061864c11" +path = "../build/minified/site/uk/books/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/index.html_br_a314c357a9a62e209cf1d6a03d04086f777f0d9b9590940eb63a5fd36849d0c5" +path = "static-publisher/static-content/file3919.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/index.html_gzip_85ccd4a8e2811f75cd72543919411725851cd767006d5f0498966cb66ebb97bf" +path = "static-publisher/static-content/file3919.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_ansible/00-toc/index.html_53a7b3e599e96af1ab698d0362d3ee8f2c3c30b1c332e980e0a6bd31d9c3b19a" +path = "../build/minified/site/uk/books/learning_ansible/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_ansible/00-toc/index.html_br_0907905240e581b0056a2862de4825d1d58d52a404764b401880d350dbc8c228" +path = "static-publisher/static-content/file3920.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_ansible/00-toc/index.html_gzip_0491cca64e03bc00767e55fd810d8a07b1e85a259e81fa070251e9a164fd81c6" +path = "static-publisher/static-content/file3920.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_ansible/01-basic/index.html_1186e18d06ae25e1b25ce4e52cdfcd68f58650bb6ab85023513cc5b753f7d7ed" +path = "../build/minified/site/uk/books/learning_ansible/01-basic/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_ansible/01-basic/index.html_br_9c5c74e983affdef1e0cb0f620cf07c96db4647bb9838b30d7464da3a80214cc" +path = "static-publisher/static-content/file3921.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_ansible/01-basic/index.html_gzip_44528269473a6270f2c56afeed5ae9fa9589b1438f11ede21dc35b915729644b" +path = "static-publisher/static-content/file3921.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_ansible/02-advanced/index.html_3d594dfa33fec9bf55a4b02097cfd82c0cd570a73f9844cd5be4e7a329dae999" +path = "../build/minified/site/uk/books/learning_ansible/02-advanced/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_ansible/02-advanced/index.html_br_6eba2fa5f9e3892055a77c0b05a749a09c6835d5ee7bb1c9655e50f2ea97ddb4" +path = "static-publisher/static-content/file3922.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_ansible/02-advanced/index.html_gzip_6993fb97cf480ff351b49071592b19c58d0bdf3157dc6e5d6a5236aad91e5629" +path = "static-publisher/static-content/file3922.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_ansible/03-working-with-files/index.html_dee75a6fb706f9919cd353c020a8580d4dfe5fafe1d689853df630b7f54f266a" +path = "../build/minified/site/uk/books/learning_ansible/03-working-with-files/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_ansible/03-working-with-files/index.html_br_8b04275c2087286a649096454a4e6a7faa8da285a84d760615f087ba1ee440a5" +path = "static-publisher/static-content/file3923.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_ansible/03-working-with-files/index.html_gzip_b5251be1d03981d0b39d72967eb092718060d2ed706cf499f653841307468e33" +path = "static-publisher/static-content/file3923.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_ansible/04-ansible-galaxy/index.html_933fbc48927a7fce661de89af55fdc629ec40e32afed1bdeebf6dc7adf11c513" +path = "../build/minified/site/uk/books/learning_ansible/04-ansible-galaxy/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_ansible/04-ansible-galaxy/index.html_br_08a5f30cfd78782a26347a55fe2ea5a2557848d144723c6407d072ac60c50180" +path = "static-publisher/static-content/file3924.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_ansible/04-ansible-galaxy/index.html_gzip_513f57e4ecc81c270cb5ec856e1f18f2a988f31402753203b7a459eb1eb058f8" +path = "static-publisher/static-content/file3924.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_ansible/05-deployments/index.html_14ab914237d075d32a14622ad1c5679e06e2dc1f84494aa1c1636b48938ff8f1" +path = "../build/minified/site/uk/books/learning_ansible/05-deployments/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_ansible/05-deployments/index.html_br_5f8da9fcc487697cdeae69be3dbc43aec897c80dc0e04e252eb10ae09ba71817" +path = "static-publisher/static-content/file3925.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_ansible/05-deployments/index.html_gzip_ce6dcff44048f6b77666afe07bdee5e616f2ce94f13a7885da826982692cd24c" +path = "static-publisher/static-content/file3925.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_ansible/06-large-scale-infrastructure/index.html_69933bad1ce0a019938fa6576514eaba6893f146236755bd49133beaba1c3cdf" +path = "../build/minified/site/uk/books/learning_ansible/06-large-scale-infrastructure/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_ansible/06-large-scale-infrastructure/index.html_br_a87e5b89f90b360692b83ebc8d902f196aaf09291f89005bba39f96847dda7a5" +path = "static-publisher/static-content/file3926.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_ansible/06-large-scale-infrastructure/index.html_gzip_0998be2be811c9abda33fdf0316b4c05da2ecd3ce6b320335bde87f31f2dfde2" +path = "static-publisher/static-content/file3926.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_ansible/07-working-with-filters/index.html_2cfcb2fa42998b48ff5726d72dc591930c2daea9c598231bd3676191c6fb6e4d" +path = "../build/minified/site/uk/books/learning_ansible/07-working-with-filters/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_ansible/07-working-with-filters/index.html_br_ee5a7f4ed7dd1708382812c0c0a4dc6b029517ce58da6fe89e30a154e4b5e6c4" +path = "static-publisher/static-content/file3927.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_ansible/07-working-with-filters/index.html_gzip_a0785ff88abc11cf9fbc58af1045a5ed21bc9bedb5a4909013b9508bc9000f4d" +path = "static-publisher/static-content/file3927.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_ansible/08-management-server-optimizations/index.html_f5b157e20e198d8aad03f43d07a03f13ccff53181798a466d70473c0557b12c4" +path = "../build/minified/site/uk/books/learning_ansible/08-management-server-optimizations/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_ansible/08-management-server-optimizations/index.html_br_f53f59d4991967e596e10c0b19cf0d9c5e48e3221bd2357ac8ad3975c61c1ed8" +path = "static-publisher/static-content/file3928.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_ansible/08-management-server-optimizations/index.html_gzip_f3643c6e39e1e4219356f834ad5cfc467b76af219840cf240921f962cffbb3e8" +path = "static-publisher/static-content/file3928.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_bash/00-toc/index.html_a4b44aa2264a94836af90f076c99ceb9cc68ebfa676c406838b33cd1053f2506" +path = "../build/minified/site/uk/books/learning_bash/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_bash/00-toc/index.html_br_9697ac65f6455eae0ea4d530cea77c60724148cf9cef9550ddab6513a0249cbf" +path = "static-publisher/static-content/file3929.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_bash/00-toc/index.html_gzip_ac0be291e9740d75740a7004b098b0b1bba64a1e9f24dcdbfb315e3f12eb6cab" +path = "static-publisher/static-content/file3929.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_bash/01-first-script/index.html_b3b3744901732932bf8a3533ebab5c3579c92713ceceb850e10999c0992ba3eb" +path = "../build/minified/site/uk/books/learning_bash/01-first-script/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_bash/01-first-script/index.html_br_74ae6842b19e23848e63af43ea8732d3376dfc217278bcd1b8ddadbf78f20644" +path = "static-publisher/static-content/file3930.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_bash/01-first-script/index.html_gzip_7ec0d687777a457714871e4661fe06853728e2dce4f254a77b3b6b9ea8c3ba5b" +path = "static-publisher/static-content/file3930.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_bash/02-using-variables/index.html_ac16f64645fc94e2d2cee49020d43559447a29b7d34bc2b7304f78eb1149171a" +path = "../build/minified/site/uk/books/learning_bash/02-using-variables/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_bash/02-using-variables/index.html_br_652ff5e81df39cfabef573c5540f48f27816c6c0c161c091cd1b6a62908273a9" +path = "static-publisher/static-content/file3931.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_bash/02-using-variables/index.html_gzip_f27577f8254182a4b7c475e1fd3214a3eae5aaa4d93896f605ce7e2136ee168d" +path = "static-publisher/static-content/file3931.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_bash/03-data-entry-and-manipulations/index.html_55beb1049fd19038cc0d789e3861bb48e9360bbdca1c619d30c62a0b192dabe9" +path = "../build/minified/site/uk/books/learning_bash/03-data-entry-and-manipulations/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_bash/03-data-entry-and-manipulations/index.html_br_254154cfed1aaba00a95126571bf3880c2d381a01e7604fc668e9647b5a45311" +path = "static-publisher/static-content/file3932.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_bash/03-data-entry-and-manipulations/index.html_gzip_204a32ff886c71e74115aa11405a834e13cdb5dbbf47cb4f3c7ccf0f12c189ed" +path = "static-publisher/static-content/file3932.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_bash/04-check-your-knowledge/index.html_64b97cc93b1becbd10330d9be2e959a3688408ebffb0ad67c93744114a4d2704" +path = "../build/minified/site/uk/books/learning_bash/04-check-your-knowledge/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_bash/04-check-your-knowledge/index.html_br_8a2fe8d1af6e21b48e865aa0d196d00e918ce2c26d796f3da343f8f676e64f68" +path = "static-publisher/static-content/file3933.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_bash/04-check-your-knowledge/index.html_gzip_8ee6232d80e4cc54c109392e910aa193f184164321c93f061bd7ad7a58a47e5f" +path = "static-publisher/static-content/file3933.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_bash/05-tests/index.html_647effeaee7a3195d80a56eeb9a63daadf40cc377e210d3d4a23408fa5d47b23" +path = "../build/minified/site/uk/books/learning_bash/05-tests/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_bash/05-tests/index.html_br_fdcf66bb13eb149be5e4c2d8f81ba2ff5d8fd2972698960bb203f9c6150b09d4" +path = "static-publisher/static-content/file3934.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_bash/05-tests/index.html_gzip_194919eb3c410ffb53d840591e6b167195d099f65ca61d1fd30a0ca965cfdc4f" +path = "static-publisher/static-content/file3934.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_bash/06-conditional-structures/index.html_5421c06b0a51e15c814384070a92a4f1119a71a6f6a8c6f061569c0694c7f72b" +path = "../build/minified/site/uk/books/learning_bash/06-conditional-structures/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_bash/06-conditional-structures/index.html_br_b7a221eaa2c2265739f9ea51cb5ea353c1d2eab65772b11d40852db6b5f76b93" +path = "static-publisher/static-content/file3935.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_bash/06-conditional-structures/index.html_gzip_560a3ddc0fda1105ed15887b7be83ca96f525ce20176babf172d13fd7ee6d42a" +path = "static-publisher/static-content/file3935.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_bash/07-loops/index.html_46869274a58c783851239315f33f4a854d51f9ca75d0e3b6a092a4ab143934c4" +path = "../build/minified/site/uk/books/learning_bash/07-loops/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_bash/07-loops/index.html_br_9ae9a004892ec3d895b6ef6d29f4e7eb65cf25813c7c21bde1fda378cd24852e" +path = "static-publisher/static-content/file3936.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_bash/07-loops/index.html_gzip_3f2ca02212c0f47b441407da6b5a4fe3b545e9e89ab73b3d089833854877dba0" +path = "static-publisher/static-content/file3936.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_bash/08-check-your-knowledge/index.html_d20efb2fa47447f807c5bab7611f3521e230ab314dbf58ab4de895ec7e92c289" +path = "../build/minified/site/uk/books/learning_bash/08-check-your-knowledge/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_bash/08-check-your-knowledge/index.html_br_5da1aaacf6de8852febc5c3dec15e423f05ae0b1817fd0329aab12ba6492153e" +path = "static-publisher/static-content/file3937.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_bash/08-check-your-knowledge/index.html_gzip_85a305a5182a3abd25dd277960ea629c8424518fd43d49879d3fc3dfecacd39c" +path = "static-publisher/static-content/file3937.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_bash/appendix/02-variables-logs/index.html_f34d57c269b76cfd47adbaf7a5fac150e8021293bb41c59396c08ae0ce779b84" +path = "../build/minified/site/uk/books/learning_bash/appendix/02-variables-logs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_bash/appendix/02-variables-logs/index.html_br_30c944db19357d1e3cba71d3438712f3d212b79903f19fe39bdf246e8e5cb217" +path = "static-publisher/static-content/file3938.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_bash/appendix/02-variables-logs/index.html_gzip_8b456364e05f161cebf6a3b51ea84021ba0e202a52edf97d2411f11159c93c08" +path = "static-publisher/static-content/file3938.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_rsync/01_rsync_overview/index.html_b9efcf3d3b01ebf39cde1fa57315f2936e790299d9a6fea99b3f4537f61a7a6d" +path = "../build/minified/site/uk/books/learning_rsync/01_rsync_overview/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_rsync/01_rsync_overview/index.html_br_9fa6129e15b76ce85e58f70ceb4c22c5527ccf7e694f93480f8764863f740591" +path = "static-publisher/static-content/file3939.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_rsync/01_rsync_overview/index.html_gzip_7e581f345ca2c6727dc44141b94d8d34b21b26af32406970c30128a0af2f5f61" +path = "static-publisher/static-content/file3939.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_rsync/02_rsync_demo01/index.html_ed7e2b718f5afa7c3d0cd8ab6018aeb098791b96225ec93b0f6779f7816841e5" +path = "../build/minified/site/uk/books/learning_rsync/02_rsync_demo01/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_rsync/02_rsync_demo01/index.html_br_53f11a7a10180d5aab85f34a483a05c9829bc2ea37804b16e7a73956ecb5999c" +path = "static-publisher/static-content/file3940.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_rsync/02_rsync_demo01/index.html_gzip_39e56ee50908c5a4a0704f3d4149b8121ad4a033e9c7a99db675e47e106c1265" +path = "static-publisher/static-content/file3940.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_rsync/03_rsync_demo02/index.html_3a00853f32909e2bf23299f954ff17982083ad9a1982944e3b2eb7ff25429fd7" +path = "../build/minified/site/uk/books/learning_rsync/03_rsync_demo02/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_rsync/03_rsync_demo02/index.html_br_49edbae105fe272fde54f53ae229d564297366513cc5e86e96e734f650045668" +path = "static-publisher/static-content/file3941.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_rsync/03_rsync_demo02/index.html_gzip_51e8fc351b9226c4c8e5b84191e812a4bf23a4017d8976d403cd351bd7b0d536" +path = "static-publisher/static-content/file3941.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_rsync/04_rsync_configure/index.html_62bccb8bf37c51823f39dccad73a7e620170ac3404a29febcb0c198028903261" +path = "../build/minified/site/uk/books/learning_rsync/04_rsync_configure/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_rsync/04_rsync_configure/index.html_br_0b0e34899fe7f0a3342347f012135ee1f1a6ed8c35abe993da2dfd06436edb0b" +path = "static-publisher/static-content/file3942.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_rsync/04_rsync_configure/index.html_gzip_834ad26c174582c233e24e31c53f4ba578fc5b20b3f824c240717a275372e059" +path = "static-publisher/static-content/file3942.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_rsync/05_rsync_authentication-free_login/index.html_a07378cba0cda37f3875eec2a392531625210361ea2bc3cb19c508e7f0dc3e23" +path = "../build/minified/site/uk/books/learning_rsync/05_rsync_authentication-free_login/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_rsync/05_rsync_authentication-free_login/index.html_br_b862690ce4a4d9ba2f12bc60b298181a50af95f8a87085dfd3ef39e2933c30c4" +path = "static-publisher/static-content/file3943.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_rsync/05_rsync_authentication-free_login/index.html_gzip_f03f32e24eee859d786270e90c9964c67f621a11ae458813bf65876b729c6f79" +path = "static-publisher/static-content/file3943.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_rsync/06_rsync_inotify/index.html_82828d026b9a64ef1663e7922f8669a8bb648e4fb86d87d9bf89131de0957ccc" +path = "../build/minified/site/uk/books/learning_rsync/06_rsync_inotify/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_rsync/06_rsync_inotify/index.html_br_e3caf838910718352f08d84accbb33e0b9cc8e4b5c135b1f09ccc4d65907487a" +path = "static-publisher/static-content/file3944.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_rsync/06_rsync_inotify/index.html_gzip_60a1d88c1b0d93af0f558fbfa5bbfc3bf06ccf9c2191ee00a6614d4cb0ac1742" +path = "static-publisher/static-content/file3944.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_rsync/07_rsync_unison_use/index.html_2932f8804ae311a249636d5c87dfc042e4c2ec9b145fa090462013f2eef39624" +path = "../build/minified/site/uk/books/learning_rsync/07_rsync_unison_use/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_rsync/07_rsync_unison_use/index.html_br_ca156891d64134fdd3b16f85a74b4aac688ce20b928a1f2ebc20f95558ada841" +path = "static-publisher/static-content/file3945.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/learning_rsync/07_rsync_unison_use/index.html_gzip_e5214c0c942394217c3863037603d9b82928f816b088acd91bc772d6cf7dd4aa" +path = "static-publisher/static-content/file3945.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/licence/index.html_111766ef32037c2ad473ddc5e0a1d25e4b18618108112301d700df712a71179c" +path = "../build/minified/site/uk/books/licence/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/licence/index.html_br_815e0d0d675dbc1f748226d63b407ac0f66ad83b65c2dd700409e3b5bff4ddb3" +path = "static-publisher/static-content/file3946.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/licence/index.html_gzip_29707a84e1a8eeb6e6c8b8adbaf3fed8bd31c89617bf971b3257007ed4962f0a" +path = "static-publisher/static-content/file3946.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/lxd_server/00-toc/index.html_9ac35cd0195177f31d789d3e5946134da9d4edfe995a49d0a8fc383d367f8bf8" +path = "../build/minified/site/uk/books/lxd_server/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/lxd_server/00-toc/index.html_br_6fd5359ef2d0a4c7719d210d7d9ba3dedf0b0ada5f255eec7fc867e7f8a7f2d0" +path = "static-publisher/static-content/file3947.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/lxd_server/00-toc/index.html_gzip_b8cb753b59d42d2fcf1e04fcf16714700da2e12ebf35b381340c55836e2120fc" +path = "static-publisher/static-content/file3947.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/lxd_server/01-install/index.html_834186e839d06e0953e5cfeede09b382786486e26070aff650c196a083ce5397" +path = "../build/minified/site/uk/books/lxd_server/01-install/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/lxd_server/01-install/index.html_br_59a2c5f25f342cf8211f9d82dee35196cee826f8a83b53528a1dfd7465baaf08" +path = "static-publisher/static-content/file3948.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/lxd_server/01-install/index.html_gzip_89568a49a35eec220fad399618ad6480a6410a49d9ffceca7749d96d49e69a06" +path = "static-publisher/static-content/file3948.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/lxd_server/02-zfs_setup/index.html_0a7f89bb89d38a4c0578150e6a26d2781775d130813458c000b51760dbc74eb5" +path = "../build/minified/site/uk/books/lxd_server/02-zfs_setup/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/lxd_server/02-zfs_setup/index.html_br_80ad7be7bcb7edcea3876bcef7db065ec665958c70f499a1f406588816aca2b5" +path = "static-publisher/static-content/file3949.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/lxd_server/02-zfs_setup/index.html_gzip_1665d8848b0056da6ad778f18e457bd19e47b4010a4af2fcde792cda4096fd43" +path = "static-publisher/static-content/file3949.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/lxd_server/03-lxdinit/index.html_1bfb9aaaca856d2c5bd8e6112ec609e3bb791074b29e5d21b320854d7dc9c68a" +path = "../build/minified/site/uk/books/lxd_server/03-lxdinit/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/lxd_server/03-lxdinit/index.html_br_6001530439b671350393700aba9c32510d12a5318262d96784b903630641a04c" +path = "static-publisher/static-content/file3950.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/lxd_server/03-lxdinit/index.html_gzip_0400880400cb20372a7ad488912c6404fcf9c253e399f693ff25e183988be26d" +path = "static-publisher/static-content/file3950.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/lxd_server/04-firewall/index.html_0dd78b7ec3c4e76e4638731f1a73fb3ad1275993947414d141e782189102a6e8" +path = "../build/minified/site/uk/books/lxd_server/04-firewall/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/lxd_server/04-firewall/index.html_br_52886f4651f623a1ceaa750969dab6b7794de614377a5e606751599968aa69ec" +path = "static-publisher/static-content/file3951.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/lxd_server/04-firewall/index.html_gzip_0eaf7a8e6932f24bbf4107e3df0dcbc78b80338543cf240a9731efcb9c90d5d3" +path = "static-publisher/static-content/file3951.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/lxd_server/05-lxd_images/index.html_c264876d506f9f0f7f3d737e2566c5adc6752f5a454aad3bafa9617ab4475f9b" +path = "../build/minified/site/uk/books/lxd_server/05-lxd_images/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/lxd_server/05-lxd_images/index.html_br_72adf5bd80a7b3fc3e4e885cc385c5e86d162377930e1952dca263c4d02ab1ba" +path = "static-publisher/static-content/file3952.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/lxd_server/05-lxd_images/index.html_gzip_e27347c8b4e617d01b32bad5e3d96104d32e4e025b9c673482e503508ac19598" +path = "static-publisher/static-content/file3952.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/lxd_server/06-profiles/index.html_f7c9435f48bd71c572f088ef4b023631897e68adcfba84eed01ddb2761ea5106" +path = "../build/minified/site/uk/books/lxd_server/06-profiles/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/lxd_server/06-profiles/index.html_br_6f63c3ba247932ff8d457d378ba503f51e05ab00d863dce10c58e4bb8e50ddd3" +path = "static-publisher/static-content/file3953.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/lxd_server/06-profiles/index.html_gzip_4ebbc30e5970d068564da6c795e2a54ac5f4fcede7ee5b36b0eb402bb4fb87b0" +path = "static-publisher/static-content/file3953.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/lxd_server/07-configurations/index.html_cba490fca3403dd6f60cdf23eb4b6046efcabcc5657510c3fb059a57db43831b" +path = "../build/minified/site/uk/books/lxd_server/07-configurations/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/lxd_server/07-configurations/index.html_br_473e34de960550786f2e83f504fe360fa258b5b7eddb73d7dbd351fa86c64896" +path = "static-publisher/static-content/file3954.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/lxd_server/07-configurations/index.html_gzip_41979600bba13b386e67aba7122b1593e782ed7bb9863eab98927651e990db00" +path = "static-publisher/static-content/file3954.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/lxd_server/08-snapshots/index.html_82d6a2f0c31653d82afc4844379f3c6df952a2ab7cd165eb76b152b6d5e7252d" +path = "../build/minified/site/uk/books/lxd_server/08-snapshots/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/lxd_server/08-snapshots/index.html_br_cf6a4cfe78cea6b665be245debe5cfe0046e3d5c6d6a7666ba8be53f6b383139" +path = "static-publisher/static-content/file3955.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/lxd_server/08-snapshots/index.html_gzip_03f0d9c4676b10fb4f6215d89175f6c857a50e99d76381de6fdeabe2907971e7" +path = "static-publisher/static-content/file3955.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/lxd_server/09-snapshot_server/index.html_5726adef8ad6518382377d184ba675ebf56e16aea597b07ef41e774e527b8da0" +path = "../build/minified/site/uk/books/lxd_server/09-snapshot_server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/lxd_server/09-snapshot_server/index.html_br_6853e34abc32ec2048ab835e3654d4d8e42847b20180e1e6210ed9e19125f3eb" +path = "static-publisher/static-content/file3956.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/lxd_server/09-snapshot_server/index.html_gzip_cce269e5a05d42ce9ea868a73b4ecbe298f824240242a475c30584bf10418192" +path = "static-publisher/static-content/file3956.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/lxd_server/10-automating/index.html_bedf12e8b02f8119b68839cb25bb3772641db23be5498080659a511564cbe989" +path = "../build/minified/site/uk/books/lxd_server/10-automating/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/lxd_server/10-automating/index.html_br_f82f8d1a457d073e49f636c8449fb37ff2b4950c77941138548b90aef2f6063d" +path = "static-publisher/static-content/file3957.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/lxd_server/10-automating/index.html_gzip_ad0bb613d7fc6c33b33a3a8cd546d921f7a3aca8bb451724f48d1dfc90f52f49" +path = "static-publisher/static-content/file3957.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/lxd_server/30-appendix_a/index.html_7d810ccb05336e15ac2aa96029e91a389b5a8b9e0aaed332e084dd9512f9c66b" +path = "../build/minified/site/uk/books/lxd_server/30-appendix_a/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/lxd_server/30-appendix_a/index.html_br_7931d36fb6268a20af7e6bb84fb1ff14bee2712baa25115ad288794257de0bc7" +path = "static-publisher/static-content/file3958.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/lxd_server/30-appendix_a/index.html_gzip_37fc4de1b2bef7a90688821467e501d5a1e000034278ae859f683d438b705d83" +path = "static-publisher/static-content/file3958.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/nvchad/additional_software/index.html_df26030d0b1bc0fda09c8231702c7a5d71345885437634aaa2f6c917d45ddd85" +path = "../build/minified/site/uk/books/nvchad/additional_software/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/nvchad/additional_software/index.html_br_7bf4ae82e33bc1969c1431ee50f40c990759c1b58788e7b9a040950e78f7ef2e" +path = "static-publisher/static-content/file3959.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/nvchad/additional_software/index.html_gzip_6529388c49d96f3ee02322bfbadd214fcf6a704cd39d7773792f313e923e64b6" +path = "static-publisher/static-content/file3959.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/nvchad/index.html_47a1d7c4f67aa0549282f70cc6cc3110e2e9e4e294b77a91a249456e36349c88" +path = "../build/minified/site/uk/books/nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/nvchad/index.html_br_48dd4d1f89e1a1a3a2b6a9a16bc89c32efba0e3901a0f04928fea719aaf5a423" +path = "static-publisher/static-content/file3960.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/nvchad/index.html_gzip_2b7262d83defc60af8db8bb847d30ede69e7fa527a14b0c4cd38c0d981f09d0f" +path = "static-publisher/static-content/file3960.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/nvchad/install_nvchad/index.html_fc9f5c9ceef509aa63a2a8e309f5908650ceb238b5fc886a7b8034f50731f0c3" +path = "../build/minified/site/uk/books/nvchad/install_nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/nvchad/install_nvchad/index.html_br_ffc8b19fda59788183b015b2dd1e0179809270913e33a4f5c44204e672a537eb" +path = "static-publisher/static-content/file3961.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/nvchad/install_nvchad/index.html_gzip_f65cc232169d069bb91c93b17671a22077ca8557f9fa338b78f92adb080a190b" +path = "static-publisher/static-content/file3961.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/nvchad/install_nvim/index.html_7db45f6570e07ecfc41dd943f9c284cb87c8f53e2ba1ec0d0e79b9d42ef0a2ea" +path = "../build/minified/site/uk/books/nvchad/install_nvim/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/nvchad/install_nvim/index.html_br_4a0a97f028bc808e11201065690cf81db562831aadd0e0b649cb29ecf0e84727" +path = "static-publisher/static-content/file3962.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/nvchad/install_nvim/index.html_gzip_555750c9bf78beb28ae6922bf731c659091891070cc68e0eb004e7b49a88d4a1" +path = "static-publisher/static-content/file3962.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/nvchad/marksman/index.html_4b1b8aa0006668fefca37f45bf2f9f4bbcaf6052aaff6439958459b691a734a6" +path = "../build/minified/site/uk/books/nvchad/marksman/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/nvchad/marksman/index.html_br_72cffaebc4c2bf9909f3b491a2225156ae47e567398d9130587125a9afdc350a" +path = "static-publisher/static-content/file3963.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/nvchad/marksman/index.html_gzip_1fa1175c4c04e92bf6b7edfe2080f08299b87ca5567c90f2a856d8f90b64549a" +path = "static-publisher/static-content/file3963.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/nvchad/nerd_fonts/index.html_222d07272f2db06500b799a6d2efa7c7ad3b70d5514550baaae909d95712041f" +path = "../build/minified/site/uk/books/nvchad/nerd_fonts/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/nvchad/nerd_fonts/index.html_br_7a8f653444a55967da3a61b334b021cdf3561064f2959dbbb0615e12e0158d5b" +path = "static-publisher/static-content/file3964.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/nvchad/nerd_fonts/index.html_gzip_5326933fb72ae0fd87405c40428866b05d2fe678424e081929d61713ab7d6472" +path = "static-publisher/static-content/file3964.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/nvchad/nvchad_ui/builtin_plugins/index.html_d93e5689ed5fdba7098c3d7cf3f57834947bb7f580ac8131c66d374c70892356" +path = "../build/minified/site/uk/books/nvchad/nvchad_ui/builtin_plugins/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/nvchad/nvchad_ui/builtin_plugins/index.html_br_7e3ed790ad4b0bfdf6c254f50bd60e9a7ebef4967c3f3d614787ffb344a8f5b0" +path = "static-publisher/static-content/file3965.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/nvchad/nvchad_ui/builtin_plugins/index.html_gzip_6266c45e0ecffcb475dfd71a66f47f45291a293d951b3b74929b3a8a550f4bb3" +path = "static-publisher/static-content/file3965.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/nvchad/nvchad_ui/nvchad_ui/index.html_55d027f8561381e40f30ea7928c67d1fc5c8ebfdd8620b7ca729b940add2a3cb" +path = "../build/minified/site/uk/books/nvchad/nvchad_ui/nvchad_ui/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/nvchad/nvchad_ui/nvchad_ui/index.html_br_795e95424b8f4e0341788b703ad9f7030213b4a55df92040a77831bb630c8b7b" +path = "static-publisher/static-content/file3966.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/nvchad/nvchad_ui/nvchad_ui/index.html_gzip_4d6251977abd1e0d5372c1cbdd3d9d494127739f3494d4843291b82ba2180ddb" +path = "static-publisher/static-content/file3966.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/nvchad/nvchad_ui/nvimtree/index.html_46f2fd6b5c8847446396ca0e6e5bd65caf229fb95c2bff984e568f29272bc830" +path = "../build/minified/site/uk/books/nvchad/nvchad_ui/nvimtree/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/nvchad/nvchad_ui/nvimtree/index.html_br_a06ff4ea2197110e94ab3c976699548e25f668eb8846ebcf9eaec02f646a0584" +path = "static-publisher/static-content/file3967.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/nvchad/nvchad_ui/nvimtree/index.html_gzip_2281e7019f309ed0a1a79252f0a2a85c5df4a6365ddd971b612f8414e23b0b64" +path = "static-publisher/static-content/file3967.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/nvchad/nvchad_ui/plugins_manager/index.html_6749d3f39e881d0978033e7a22899295e8c29b1e0c9477c79d21cc74891f7537" +path = "../build/minified/site/uk/books/nvchad/nvchad_ui/plugins_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/nvchad/nvchad_ui/plugins_manager/index.html_br_bb1c0970844fae1fbb8bdcbe364536910bfd194b99ac19aa7a96bcdfbf27bd69" +path = "static-publisher/static-content/file3968.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/nvchad/nvchad_ui/plugins_manager/index.html_gzip_b6ec77ee6a62f7b1a18a38a5f41dd872c69da50b8ea5d4329a14059fcc61ba97" +path = "static-publisher/static-content/file3968.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/nvchad/nvchad_ui/using_nvchad/index.html_a2871623606e2fae53bdb5bf24d5e5d24dc209e9a38d242e8813db162e39588e" +path = "../build/minified/site/uk/books/nvchad/nvchad_ui/using_nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/nvchad/nvchad_ui/using_nvchad/index.html_br_5945396561b6e24b75a71ba24f6338d702b045c61a81a552aad6358df79570e3" +path = "static-publisher/static-content/file3969.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/nvchad/nvchad_ui/using_nvchad/index.html_gzip_44e77c1ba75be0f2634d0fad9a51520ccac000627afaee6989f5318d0fa26657" +path = "static-publisher/static-content/file3969.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/nvchad/plugins/index.html_a5782599096c8224976468639a0918755b8bf74b1340f8f9f8b49b2d09440f45" +path = "../build/minified/site/uk/books/nvchad/plugins/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/nvchad/plugins/index.html_br_fba89a5b8f3ca5ddda21eed5663d1a016698e15b9e9c612cdee440fcfb4dd169" +path = "static-publisher/static-content/file3970.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/nvchad/plugins/index.html_gzip_8902ee045dac4a2e54e3dc937286d77514eb3353902f36ffd209fcdacb8dac66" +path = "static-publisher/static-content/file3970.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/nvchad/plugins/md_preview/index.html_bb3d0c1172a618909194647037b6ba65daaf6e589aea43bc96733224296a653b" +path = "../build/minified/site/uk/books/nvchad/plugins/md_preview/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/nvchad/plugins/md_preview/index.html_br_932ac15fe6f0b28f154efb0d110b4987f0288d6df3ba15a1794fc8d49d8b22a6" +path = "static-publisher/static-content/file3971.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/nvchad/plugins/md_preview/index.html_gzip_51ced62b72b0d54013ed5bcb4f301f82bc4c2214796a0dae0386489317ae1325" +path = "static-publisher/static-content/file3971.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/nvchad/plugins/projectmgr/index.html_c3e21c1e74839f15dfb19e4191e8bedfaed6f9978e5bcac166c2bff32411934f" +path = "../build/minified/site/uk/books/nvchad/plugins/projectmgr/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/nvchad/plugins/projectmgr/index.html_br_e0764c8e0bb5698a33f2e471cf8179f14c5cdb69d6789304ec430d8fe99040eb" +path = "static-publisher/static-content/file3972.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/nvchad/plugins/projectmgr/index.html_gzip_54025740d556aaeca91787e1e9e44bd5704b5ff23f1e6f1e320681000e3206b6" +path = "static-publisher/static-content/file3972.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/nvchad/template_chadrc/index.html_7e6cc6c7f9a8f2a0d716165f86aa8593ca490a3a638c672390efe321ac427a99" +path = "../build/minified/site/uk/books/nvchad/template_chadrc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/nvchad/template_chadrc/index.html_br_0a3480b34d2a894a3547490761b9850925008470d1e94e8ceb869c0a507e4a1a" +path = "static-publisher/static-content/file3973.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/nvchad/template_chadrc/index.html_gzip_f4c1fd8de5e367a632b41c22978969df2d5edb4d561b4592481f618800aca7db" +path = "static-publisher/static-content/file3973.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/nvchad/vale_nvchad/index.html_0ea9c3154533019a590afe39e6f7be742c2e0a07f31ee9b376f8a29a193cc154" +path = "../build/minified/site/uk/books/nvchad/vale_nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/nvchad/vale_nvchad/index.html_br_3d8990627697ace36d8a4d296feede4676421e0a27d0121d99eb89c2f1904f37" +path = "static-publisher/static-content/file3974.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/nvchad/vale_nvchad/index.html_gzip_d89410cc8ff8631f5cba5cc2c60b19d806cf055995a644cd6603ace3b6be5346" +path = "static-publisher/static-content/file3974.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html_c398e42776d00dad1a6c577a58861e4cb7238326aa0aff20ff9d65eadde91209" +path = "../build/minified/site/uk/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html_br_849e24954b0d730bca40c3d85fd836943731fcc3c2c1ad9ec90b8213f83c477f" +path = "static-publisher/static-content/file3975.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html_gzip_1f17f2f15d3d32a269d77d685fa599182cdc9d7d5b7f912294899eeedc0d597c" +path = "static-publisher/static-content/file3975.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/sed_awk_grep/2_grep_command/index.html_d083e3a3ec7efe2bb13f4f0f4c704cf3a8fb974f72b1c398535fb4256154c5cb" +path = "../build/minified/site/uk/books/sed_awk_grep/2_grep_command/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/sed_awk_grep/2_grep_command/index.html_br_52cadb5f543b9c7d017d215e6d135fec3b6edbf9a5eb175a8c4d606ae71c4f46" +path = "static-publisher/static-content/file3976.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/sed_awk_grep/2_grep_command/index.html_gzip_0b5fd26e295e6f18d85f1da444a3411da06beaa63f7adfc16ea2322853b68414" +path = "static-publisher/static-content/file3976.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/sed_awk_grep/3_sed_command/index.html_b53adba314240196eda72473d50d702b4674a28831a445170d09fa496fdbfc09" +path = "../build/minified/site/uk/books/sed_awk_grep/3_sed_command/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/sed_awk_grep/3_sed_command/index.html_br_319a9807fc0e2409bed58f2c7319c7fb5fc2bc8cdc8ba59ba8d779559393d616" +path = "static-publisher/static-content/file3977.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/sed_awk_grep/3_sed_command/index.html_gzip_5c60f2663c499dbad54529bfc862a61ad66f75010342dc34ace6016f28012b62" +path = "static-publisher/static-content/file3977.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/sed_awk_grep/4_awk_command/index.html_71f366f64ec7a628f8cdc198b53098bd4a3b7e22f918d4cda73d25b56a1e87ae" +path = "../build/minified/site/uk/books/sed_awk_grep/4_awk_command/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/sed_awk_grep/4_awk_command/index.html_br_d39f11c90d040047eb4744a81f8ccd6bfa87d1c9262baa16671acf4d928ab161" +path = "static-publisher/static-content/file3978.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/sed_awk_grep/4_awk_command/index.html_gzip_b346006996b1898462237c107e3668c02e7a9fc0c9d9814de039967616ebd0a8" +path = "static-publisher/static-content/file3978.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/sed_awk_grep/index.html_4775789c0f059699fa9e7c86648c6d914ca7ba51c3a0f2d06cb216213819bc05" +path = "../build/minified/site/uk/books/sed_awk_grep/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/sed_awk_grep/index.html_br_17d3da4cdff4104760c72fe55fef39a80f873fb7eed6b7b8ff5a2917e616f4a1" +path = "static-publisher/static-content/file3979.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/books/sed_awk_grep/index.html_gzip_2651ee6bb7d392b19e97e06a5a0242be4f8baf69aface0566d3ae18da1044b6e" +path = "static-publisher/static-content/file3979.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/containers/docker/index.html_bf5ce9da1cb41f5c7d51d05b62bb7f94fd0e501279ed362aa6276e27c702ff1f" +path = "../build/minified/site/uk/gemstones/containers/docker/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/containers/docker/index.html_br_5be42aec1acc40305b2e2cdc6c74d63939969c4f07e55db72283efd2263f419e" +path = "static-publisher/static-content/file3980.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/containers/docker/index.html_gzip_70905a6891255604bf418f338791bd51914fdc01914d0c27d675550c996923f8" +path = "static-publisher/static-content/file3980.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/containers/podman/index.html_593d6e53d0411b407d7eca5984d5e4fb4558fde2341a038d41e9b2ca6a56e945" +path = "../build/minified/site/uk/gemstones/containers/podman/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/containers/podman/index.html_br_9c76d4f16e739d91405f0a74bb7d0b4150d5a1e60e40277d9ad4235a6581ce3e" +path = "static-publisher/static-content/file3981.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/containers/podman/index.html_gzip_df46231d04414952d5717fe0ae00a239a18f57513ad7bfd2f1fbc79f97b82848" +path = "static-publisher/static-content/file3981.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/core/view_kernel_conf/index.html_36e624951ec5db89a5f41b3b0bc2e70a74d6b3fee16974cace53780fe81f4199" +path = "../build/minified/site/uk/gemstones/core/view_kernel_conf/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/core/view_kernel_conf/index.html_br_5697bf0a48bdd7944661eac7b688056320a8abfe5b3cf7e27d90fd645d93bafa" +path = "static-publisher/static-content/file3982.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/core/view_kernel_conf/index.html_gzip_6455b72f4a3b28be8fa9ff5088500140498e5d1e9745ec8d11a4175b3dce2354" +path = "static-publisher/static-content/file3982.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/dnf-swap/index.html_183cd75b6cc03e8dae47692958bfffc4d88914b36270c8e40a34b242a9f95deb" +path = "../build/minified/site/uk/gemstones/dnf-swap/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/dnf-swap/index.html_br_d237ccecc57cb7fcb50447e0457b77f2731b2f5ef7afb225eea352459b274006" +path = "static-publisher/static-content/file3983.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/dnf-swap/index.html_gzip_5e0ddf66d35fb43c35b88642c33fe46cbea8db3671cd21e5d815dd35b78267bb" +path = "static-publisher/static-content/file3983.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/gemstone_template/index.html_82705fbf2a109473594fbf6d4422d79b91c2d8c97c27b8ec6c5ce1fb5746a4f6" +path = "../build/minified/site/uk/gemstones/gemstone_template/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/gemstone_template/index.html_br_16b19d9ccd7041a9c001cf501b83feedd8fb51819055eac66f413bc3a58ed065" +path = "static-publisher/static-content/file3984.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/gemstone_template/index.html_gzip_395ffba00d0bbcb25564d8f10fbf21cdf0a9a4ffee9c87bc2252407384d402f4" +path = "static-publisher/static-content/file3984.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/git/00-gh_cli_installation/index.html_af97d9250c85952f1c3862f529893b786e5c05aa4d581ee74c5ef2519770659c" +path = "../build/minified/site/uk/gemstones/git/00-gh_cli_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/git/00-gh_cli_installation/index.html_br_9134e3637416c94439b03e03e2ca273cf59caf027fe2f3295d9e72ebef3afd75" +path = "static-publisher/static-content/file3985.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/git/00-gh_cli_installation/index.html_gzip_a402363b096b5da89abea6227a3e12fd4ba7e5b3fd1ffeaa419673b166742794" +path = "static-publisher/static-content/file3985.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/git/01-gh_cli_1st_pr/index.html_fca400ee9159d20a6510904ed8889620782dec2b54466ae9f517c7a65a81829e" +path = "../build/minified/site/uk/gemstones/git/01-gh_cli_1st_pr/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/git/01-gh_cli_1st_pr/index.html_br_e84aa4819a91a23da7131bfa3de3424aa9dbcf187c9fde7fad96ea7687a5b57e" +path = "static-publisher/static-content/file3986.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/git/01-gh_cli_1st_pr/index.html_gzip_c87d945c8e014b999c8cdb5fa4d87a8eb14e2bc98a4da61af0ffd9eb91dde2a0" +path = "static-publisher/static-content/file3986.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/git/02-gh_cli_edit_pr_title/index.html_85b57a2c15d53811366cd1f83d29e31040ea5d02d1d136dddcd0423b9050ed81" +path = "../build/minified/site/uk/gemstones/git/02-gh_cli_edit_pr_title/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/git/02-gh_cli_edit_pr_title/index.html_br_13cc6fcfda80e3db6a846f07951dfd2cfbcec7f6d63393b6f804959e37216aac" +path = "static-publisher/static-content/file3987.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/git/02-gh_cli_edit_pr_title/index.html_gzip_0f4debc52faa91642ea41bdf72bc8e764cca9369d2154ff5000653ef87b07269" +path = "static-publisher/static-content/file3987.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/git/02_github_web_edit_pr_title/index.html_def690cdb60428c958bfd9be44207a328aabfe7749a32dace6a9c733a70ca773" +path = "../build/minified/site/uk/gemstones/git/02_github_web_edit_pr_title/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/git/02_github_web_edit_pr_title/index.html_br_ad6c3a00e747cc9d55a761bd2c8adad391d41a122fa3fc96988fd655183d13f5" +path = "static-publisher/static-content/file3988.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/git/02_github_web_edit_pr_title/index.html_gzip_01d144459ad2c61d8f60a00579a5b4525930bc08b6740c00855e3ee2d4d4b41a" +path = "static-publisher/static-content/file3988.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/git/feature_branch_workflow/index.html_22cf71ab6628890e859e9e4dba1761a00c6a39818a76c7c05f73eb9b8fa1fbd4" +path = "../build/minified/site/uk/gemstones/git/feature_branch_workflow/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/git/feature_branch_workflow/index.html_br_744b7ddfb5a629d6ed34b38d27b23ced94ab7a760a9fd85e4ed26d3d6d886365" +path = "static-publisher/static-content/file3989.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/git/feature_branch_workflow/index.html_gzip_08a146af216a3cf04152644faea7b265f5bce5237581ab9e20a01a2d94659a6b" +path = "static-publisher/static-content/file3989.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/git/fork_and_branch_workflow/index.html_66811bca9fbc56a089f8ffc8841aeceab733d4211af5eebd716b0e5f97997f4e" +path = "../build/minified/site/uk/gemstones/git/fork_and_branch_workflow/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/git/fork_and_branch_workflow/index.html_br_79eae8f02b788b0ff0272dec67d963d968794b0c52cd2dfd3d3f78cfdd08a023" +path = "static-publisher/static-content/file3990.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/git/fork_and_branch_workflow/index.html_gzip_927ab2b818c247ed51b3eb067f50262c333088a937795529fba0689125b20d9b" +path = "static-publisher/static-content/file3990.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/git/git_pull_vs_git_fetch/index.html_578703c2b132d445ce9f8a4ac5dd6af9969a6261e6fe1bbff60c5c84e7e85b1d" +path = "../build/minified/site/uk/gemstones/git/git_pull_vs_git_fetch/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/git/git_pull_vs_git_fetch/index.html_br_02bdb322bce41530afe9bb72a013512f95ac71f3064cdefab9aaaacf128a9b32" +path = "static-publisher/static-content/file3991.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/git/git_pull_vs_git_fetch/index.html_gzip_8837311862646892e76af03502db8d047c072d72f1a1bc97cf7deda7034558f6" +path = "static-publisher/static-content/file3991.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/git/git_remote_add/index.html_9b88918da8030af16c521b51e68b74af1386ee73962cceff9316b1402d3995b2" +path = "../build/minified/site/uk/gemstones/git/git_remote_add/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/git/git_remote_add/index.html_br_7a7ee4c7b39338a5b321b5c50e176fcd8768afe3665fa001d06987b6dd37d09b" +path = "static-publisher/static-content/file3992.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/git/git_remote_add/index.html_gzip_540fd7318edf96020497ddfd8d335bb4bdb0cdad27f441b030338d23331bde14" +path = "static-publisher/static-content/file3992.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/git/tracking_and_nontracking_branch/index.html_7dff83f5a547d96f0d1d6cbc0770e843f03ebe96764ec030d64fb9b7d6184776" +path = "../build/minified/site/uk/gemstones/git/tracking_and_nontracking_branch/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/git/tracking_and_nontracking_branch/index.html_br_1aaf6164517a4d1feefe89aff19333646351da93a0add646cc5f9269d6d3deef" +path = "static-publisher/static-content/file3993.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/git/tracking_and_nontracking_branch/index.html_gzip_42c9e1c9ff7959d713be7f7b730bb1c0ec19b47747f5a584277cf69ac030969d" +path = "static-publisher/static-content/file3993.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/htop/index.html_7fb6c357554ee3008563caa306e2b032f887935545bb1503e66cbb3cf1761c12" +path = "../build/minified/site/uk/gemstones/htop/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/htop/index.html_br_5c0207daf75e31c51e06ec57a926df4fb74917e27765dc10466c29c12b24b224" +path = "static-publisher/static-content/file3994.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/htop/index.html_gzip_c82d9488e1958666b3f2e44cb8051585672c8fa91c1c6d52d5a1c0d42dbf096e" +path = "static-publisher/static-content/file3994.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/https_rsa_keygen/index.html_8aa471f52d5e2b11f42955a7735b2e85048d6f650f67e680376278dfc70fbf6f" +path = "../build/minified/site/uk/gemstones/https_rsa_keygen/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/https_rsa_keygen/index.html_br_d8cbd943be1e1fbec421c88edcb47a29a3e57876d2a61e0bf4b38075c2030af1" +path = "static-publisher/static-content/file3995.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/https_rsa_keygen/index.html_gzip_317aca6b30292469ea7b99a46f1cae7d145c06f05fbebb3242a4621867fe8d6e" +path = "static-publisher/static-content/file3995.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/index.html_fc1c4985a71d9e5fe83e428f34369af1490b1bf2f75a573ed6267fe7354ffc59" +path = "../build/minified/site/uk/gemstones/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/index.html_br_ba4c1a18443b99288491b0345a3e0b11dd1e957ff438c337c3a78da8015a098f" +path = "static-publisher/static-content/file3996.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/index.html_gzip_c3be998505e584cf1fd102b858b0af069a353880b989799b9cf8540fb4c17d5b" +path = "static-publisher/static-content/file3996.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/markdown-demo-v2/index.html_dab6f86b754df388e7f6f1ca76f5c5dbcab4a24426d4593f6f3ac9d526419ad3" +path = "../build/minified/site/uk/gemstones/markdown-demo-v2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/markdown-demo-v2/index.html_br_5ced38746a9ba9ec8f8795127e3c7823a65b43b79d21e5b653f54fe4575cbdd3" +path = "static-publisher/static-content/file3997.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/markdown-demo-v2/index.html_gzip_af2fd0aa76a2037daec7e27c9950d7fdb5a973feb6a25553b47bd92175fa98c4" +path = "static-publisher/static-content/file3997.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/network/RL9_network_manager/index.html_533b19099504487ca2727d23daa62a4a2606209cc91ef6369b535e97f65a418e" +path = "../build/minified/site/uk/gemstones/network/RL9_network_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/network/RL9_network_manager/index.html_br_e97d905773cf9a269f09c7d42d11c68804eb8560e4c182f42c49378df396dd33" +path = "static-publisher/static-content/file3998.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/network/RL9_network_manager/index.html_gzip_f45f7e0aaa219b98661501f9b54396a3d23318a3650896a0010468550b522648" +path = "static-publisher/static-content/file3998.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/network/iftop/index.html_0c3026508fd178759b5e79ef87ca58a29980445a9d478db9715b9c04a36fd5cb" +path = "../build/minified/site/uk/gemstones/network/iftop/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/network/iftop/index.html_br_f0862699149cf0f5b7523cc52468e4a43d6d266e26f8d94923fb917fde6ec788" +path = "static-publisher/static-content/file3999.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/network/iftop/index.html_gzip_d9337e3cc65c146e3e5dda95395379a83d809b698dffa5750b0190a17d296b09" +path = "static-publisher/static-content/file3999.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/network/mtr/index.html_0f3b571259fb46496b8a8e3a3c8d41b3b1e5680afbf4c588b3cf65a1869de67f" +path = "../build/minified/site/uk/gemstones/network/mtr/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/network/mtr/index.html_br_6e2528e3bc756463ac4a9e24b7d4395dd5d1552a3c7ab5dbcf8a4ab1371e94b1" +path = "static-publisher/static-content/file4000.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/network/mtr/index.html_gzip_2f1f57961531d12fda2b2f9a63f130ce6f23e6b98751cf2baa2979e2e4994134" +path = "static-publisher/static-content/file4000.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/network/nload/index.html_b21ba13177b72362e4893f4f8a5190490d79402a74031052c08e34044b7cfd57" +path = "../build/minified/site/uk/gemstones/network/nload/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/network/nload/index.html_br_69d23016a3b2fb89459e242b83c8cd8c1fbc6a3e35659c8ec284df07ae112c67" +path = "static-publisher/static-content/file4001.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/network/nload/index.html_gzip_bb36b075ed3404b39562f369f2fd9f7b8e47fbc4fdcd09a3def8d1fdf72104e5" +path = "static-publisher/static-content/file4001.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/network/nmcli/index.html_6d8de154b8c48ac4ce4ba2e54cf3e8ab0ce3a6fa57a895efa4bea537af4304da" +path = "../build/minified/site/uk/gemstones/network/nmcli/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/network/nmcli/index.html_br_428d72dabc97ef7cf619c58637e0e9cc7e80e44c28a1993659f326a57c652ab7" +path = "static-publisher/static-content/file4002.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/network/nmcli/index.html_gzip_174603f80081430b2ea862ee2698e65e0a4e5291b10f428266adad7dae9a2887" +path = "static-publisher/static-content/file4002.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/network/nmtui/index.html_fa3b26f4b0a92c63f49a1056f6fdc7e9b7e08edb6c463ada9c70a8c24b1dee13" +path = "../build/minified/site/uk/gemstones/network/nmtui/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/network/nmtui/index.html_br_b9a885d500bc92c1c68d7b38c6d2914a490f4a1a2e2100c6eac49b2cbc92ba78" +path = "static-publisher/static-content/file4003.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/network/nmtui/index.html_gzip_41e96c5f2dd13ba8e96a2135789d55cb88a947656cff4fd3381a876f2d3d70f4" +path = "static-publisher/static-content/file4003.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/perl_search_replace/index.html_4ea548a365980f559add014b5df39e36a11a972b0720cf41fac0c5b5f5c42869" +path = "../build/minified/site/uk/gemstones/perl_search_replace/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/perl_search_replace/index.html_br_2c482dac9b08d4366ce3e605a79b78fc7cbe4533dae082cf6e2290e44ed02489" +path = "static-publisher/static-content/file4004.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/perl_search_replace/index.html_gzip_f32e970f84d78f83e857d68c79d769f4d6bb8f6f1ce8e32d6cc24553456f5eec" +path = "static-publisher/static-content/file4004.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/rpaste/index.html_a0f5e8927b10f03e08a5bbc94171bc60371af11d0d4775832a2814ffa33fee6d" +path = "../build/minified/site/uk/gemstones/rpaste/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/rpaste/index.html_br_3d41c9cd1444930fb009f27b2d5a0674b5b695a451b4cedd3edf3216cf6c9756" +path = "static-publisher/static-content/file4005.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/rpaste/index.html_gzip_6112b1ca64db2b149f1be780c5e09995ac2c4125fe17cfdd2c6b126288a8912e" +path = "static-publisher/static-content/file4005.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/scripts/NoSleep/index.html_9fd023d02c24d34ddb159673f2584f331e77796be18342f57d7dcdeeecd06c3c" +path = "../build/minified/site/uk/gemstones/scripts/NoSleep/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/scripts/NoSleep/index.html_br_156a3e5e602d3e4352c01f28cf7e7cc0f02bd826266f02b4b2414edb7025ae38" +path = "static-publisher/static-content/file4006.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/scripts/NoSleep/index.html_gzip_5b72802ea3526cd6f16c78d2aee1aa53b8a3a2b2b08d9d7ff8f9a5fd682b6a7b" +path = "static-publisher/static-content/file4006.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/scripts/bash_stub/index.html_c9994d3f3b92d019faf8f41974082309cecd04eb528ef9fa8626217992702774" +path = "../build/minified/site/uk/gemstones/scripts/bash_stub/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/scripts/bash_stub/index.html_br_eb7a14f09459fa9529c7c89b147be3a0109cd31c83c4aeb282e9c162269d8444" +path = "static-publisher/static-content/file4007.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/scripts/bash_stub/index.html_gzip_9cc830002078c3cc2d789ef3ac39677a687fe48881444ff86e882558b78bdee9" +path = "static-publisher/static-content/file4007.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/sed_search_replace/index.html_316de14f09006b3d1108402c506a0b3b8b072fbc60bb9f89e4b674c4ba5d3b4a" +path = "../build/minified/site/uk/gemstones/sed_search_replace/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/sed_search_replace/index.html_br_65e73f1448815098a962d9b7a5405f073126c792edc62e3f63ef717065cd17be" +path = "static-publisher/static-content/file4008.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/sed_search_replace/index.html_gzip_fbea6515e7b01162af70e194515505ff0ea7685422c5c6b06caaebef1aa6fb2e" +path = "static-publisher/static-content/file4008.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/setup_local_repo/index.html_3adc4c58fe354228c669eaf1ff154c544f88218de1071d1dbbb3d8ac057c5687" +path = "../build/minified/site/uk/gemstones/setup_local_repo/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/setup_local_repo/index.html_br_376d4c2b785da7181930a526d0ca9ec2b568d36cdcfd361996a6f702654a8f60" +path = "static-publisher/static-content/file4009.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/setup_local_repo/index.html_gzip_172e536d4ad3d686c7a9c0957cc07fc1b3f34071d3205a5aef521e6076fc493e" +path = "static-publisher/static-content/file4009.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/string_color/index.html_c0c3b67b61d94b95e08579b1eb2909bc67895a25e76463e27442f15ee802b63b" +path = "../build/minified/site/uk/gemstones/string_color/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/string_color/index.html_br_91d6ad269675662cfbf489c1e63139a9f39a8ec71a5e2b41c736910a81999cb8" +path = "static-publisher/static-content/file4010.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/string_color/index.html_gzip_d6081cc7e847d822f35e7130ddadf9f444a2608cdfffc7f9b725ffac96c432f3" +path = "static-publisher/static-content/file4010.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/systemd_service_for_python_script/index.html_855f6781f205a52baea91edc2fc7767cc14b6e39e940266cad919e0dc3066d55" +path = "../build/minified/site/uk/gemstones/systemd_service_for_python_script/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/systemd_service_for_python_script/index.html_br_edaabbafca8038b8a39b7a3887da5728be27d978996fe4ca56056fd9fa26c0ca" +path = "static-publisher/static-content/file4011.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/systemd_service_for_python_script/index.html_gzip_c6af43e04103d62b929ec63eeddd61a02d13d11913cf314fe41e6be498f2f497" +path = "static-publisher/static-content/file4011.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/test_cpu_compat/index.html_e6f58647bfa7202acd61bba41df77b2bb05c2bd778f626a90985fbed4afe9f4f" +path = "../build/minified/site/uk/gemstones/test_cpu_compat/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/test_cpu_compat/index.html_br_b42641d3ed1719177af984bcf1c026630513fff37b29ac4350ca9bd24f93418a" +path = "static-publisher/static-content/file4012.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/test_cpu_compat/index.html_gzip_c4193a89c237b4af2b1e1937b369304090e1af8bfc45d84fb5473db3263161f4" +path = "static-publisher/static-content/file4012.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/torsocks/index.html_6f127f576b132f244488a95e6c6d50736197faef00cf197b148997116cadaa7f" +path = "../build/minified/site/uk/gemstones/torsocks/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/torsocks/index.html_br_def2970c72842128d8389835171dc98378b16ab85aacba13cccac16e66e932fd" +path = "static-publisher/static-content/file4013.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/gemstones/torsocks/index.html_gzip_95dbdeb71cd3c63ebff04ef21cba0550ab0a8db102826838821734843b274ef4" +path = "static-publisher/static-content/file4013.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/8_6_installation/index.html_e993704070a94db755f61195e22a3c5f226bd315cc8bfefe6157145aaaf17412" +path = "../build/minified/site/uk/guides/8_6_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/8_6_installation/index.html_br_3004f292f3eeee2b7198ebc5b979a58e83d63e3b449ac4776d79b4460b24b78b" +path = "static-publisher/static-content/file4014.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/8_6_installation/index.html_gzip_ef61ed21ef4fcdcbc76d88d3c53df35a923a8bbdd73b250c5a9234f7f9eeb18e" +path = "static-publisher/static-content/file4014.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/automation/anacron/index.html_179c0b9897c95b936ddc946aa64bba216b3eb5f1f5ce0b0d713aa479fe0e729a" +path = "../build/minified/site/uk/guides/automation/anacron/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/automation/anacron/index.html_br_3740c25120e5caeba4c9eaeb9b3dda4b9a025170da72836e852eb21a4851f615" +path = "static-publisher/static-content/file4015.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/automation/anacron/index.html_gzip_aabea3dd4e2f500a8110006826d71c7d61025a7bb8e958f0fc73ff121aae4e7e" +path = "static-publisher/static-content/file4015.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/automation/cron_jobs_howto/index.html_38240c0ec8b52941f6b2cf418e041f3a98c2bda1fa1d2a611dc6790d5d08bb8e" +path = "../build/minified/site/uk/guides/automation/cron_jobs_howto/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/automation/cron_jobs_howto/index.html_br_28a181680f139cb94bb40575ca39dd105b44f537d70682e88e15685174398e4c" +path = "static-publisher/static-content/file4016.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/automation/cron_jobs_howto/index.html_gzip_33a37fbfb5ccd10dd2b105a4cc4fe830e715978be31f20d5b7cd07ecfd73bd8b" +path = "static-publisher/static-content/file4016.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/automation/cronie/index.html_a251aeefc760a5f5cf80889d86d9563a51a7d9ae6fde51a4d0aa49e588aecc3e" +path = "../build/minified/site/uk/guides/automation/cronie/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/automation/cronie/index.html_br_f05984539718bf26da94d5900da9718445b2469c9fe2a0e41aa6599d10dae704" +path = "static-publisher/static-content/file4017.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/automation/cronie/index.html_gzip_e58d198da26d3c4171c66e1f294cd1e15b303894cc6930e49c7ebcd327998478" +path = "static-publisher/static-content/file4017.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/automation/olivetin/index.html_387e4b48288ff146659e9aec89f5d05361991d093504b611cee9476f57f240d2" +path = "../build/minified/site/uk/guides/automation/olivetin/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/automation/olivetin/index.html_br_d600256815fa74669594b066599ee7e5937b27b1d4ba04c26c4ad7df177b01ce" +path = "static-publisher/static-content/file4018.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/automation/olivetin/index.html_gzip_23250b267dba7d4d14c0b14ed964af8ae617affb6c22166943d6b8e4c6764933" +path = "static-publisher/static-content/file4018.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/automation/templates-automation-packer-vsphere/index.html_b7bcb1fc18ec24c9cd60232214d803972e9c4c402fe848469393d2602fc2e0a7" +path = "../build/minified/site/uk/guides/automation/templates-automation-packer-vsphere/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/automation/templates-automation-packer-vsphere/index.html_br_49cab028daa9859bc570909d3e6f333d58e8da291e172b5280908d583fb81911" +path = "static-publisher/static-content/file4019.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/automation/templates-automation-packer-vsphere/index.html_gzip_6673a4feeffbcd6ef86366f44f5230315d1803a4e1821229d83f2c42ab367e48" +path = "static-publisher/static-content/file4019.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/backup/mirroring_lsyncd/index.html_dffd760cfeacd93a1d4b89ec066adb8cc3e618c6f38920c74eb95ebb7d733e6b" +path = "../build/minified/site/uk/guides/backup/mirroring_lsyncd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/backup/mirroring_lsyncd/index.html_br_625dc2161dcb7d9618c1b34a5c1eb096d6ea6405dc0842d965e5cfdfc4615f9f" +path = "static-publisher/static-content/file4020.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/backup/mirroring_lsyncd/index.html_gzip_7cd4e77099f76ee05297e2048ec86540e83753d32ebbcb15210eafb3725211bf" +path = "static-publisher/static-content/file4020.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/backup/rsnapshot_backup/index.html_c04d876d040325365440171c61bf7057068cf6842ca30cb539afa8ef7f87c566" +path = "../build/minified/site/uk/guides/backup/rsnapshot_backup/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/backup/rsnapshot_backup/index.html_br_66299b6da0cfb4962fa6705618a66c3b8942b2e406084e76109d170abbdf0478" +path = "static-publisher/static-content/file4021.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/backup/rsnapshot_backup/index.html_gzip_ce6d2142e6e871edc5857a38950f08ae344409d49a75ab84a8cb80eb2c2b47f3" +path = "static-publisher/static-content/file4021.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/backup/rsync_ssh/index.html_15a57d5b4803869acd2815fdf4d2e8cc41d6da00fd3ac168e9f76369c16eae98" +path = "../build/minified/site/uk/guides/backup/rsync_ssh/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/backup/rsync_ssh/index.html_br_04b58f06989d41d877fa850d1a582b434c0920cf58b3d3df251a1939f7393add" +path = "static-publisher/static-content/file4022.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/backup/rsync_ssh/index.html_gzip_058f950fd71a49efb1c962aa5be5567f8c142ea117b26089a5b88ee4201dc25a" +path = "static-publisher/static-content/file4022.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/cms/cloud_server_using_nextcloud/index.html_0c84165f077421e8be2e3294582e72942a4424cb997d176bebe72dd830f78d15" +path = "../build/minified/site/uk/guides/cms/cloud_server_using_nextcloud/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/cms/cloud_server_using_nextcloud/index.html_br_6c70c6e907338c1f4d4e9902e70160b4dafc4e48e1a4d7dc68d87f14b2387890" +path = "static-publisher/static-content/file4023.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/cms/cloud_server_using_nextcloud/index.html_gzip_e9758ea2d70b18175e367cc07fdb43ca12d410315390ef222af44aa7d4e83f7b" +path = "static-publisher/static-content/file4023.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/cms/dokuwiki_server/index.html_b1eea110d9b5dfc8f25cb840fdf42bf0bb181402b43e9f062f91ea8ba14f280f" +path = "../build/minified/site/uk/guides/cms/dokuwiki_server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/cms/dokuwiki_server/index.html_br_207d60f6299bb18d0c519cf92da375e7f46f5a117bb5326ba3cd32afcbb88b26" +path = "static-publisher/static-content/file4024.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/cms/dokuwiki_server/index.html_gzip_1d009638b54efcbec4bb20e0ce9c1eeac26f3fd769e2cc0d133fd47af2f402ff" +path = "static-publisher/static-content/file4024.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/communications/asterisk_installation/index.html_ff3487617d20b32479cae9ecd3897d0e4b7069599938390f0c014a8c98a1c64f" +path = "../build/minified/site/uk/guides/communications/asterisk_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/communications/asterisk_installation/index.html_br_0b537bd35107bf344d87b7b6d691c5b12f05b7fcfa4d915b317824010d07df9e" +path = "static-publisher/static-content/file4025.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/communications/asterisk_installation/index.html_gzip_6c238add4558449b46d45d7bfc79e91dc3a481a6bef313e624bf25715696505b" +path = "static-publisher/static-content/file4025.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/containers/lxd_web_servers/index.html_69298b86bc520a71620128d573cf2496aa63c35d092baed0d3fc008a8b9fb611" +path = "../build/minified/site/uk/guides/containers/lxd_web_servers/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/containers/lxd_web_servers/index.html_br_b86743626f90fbcadac6bfeddf33845dfe265e20718473722ec6933c8a64149f" +path = "static-publisher/static-content/file4026.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/containers/lxd_web_servers/index.html_gzip_4e9622d72618d3fb90f0b818c2928e71c1d26c57439e90297907ffe03dc1d6b7" +path = "static-publisher/static-content/file4026.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/containers/podman-nextcloud/index.html_715184b0958a1a6135ec58aced4cd826ef135d2f5acff20c2036dc64dbffaf3f" +path = "../build/minified/site/uk/guides/containers/podman-nextcloud/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/containers/podman-nextcloud/index.html_br_71871a11b70839f9d3016c76d2e58e97cfe383dec0df03fb7391040bc43a4454" +path = "static-publisher/static-content/file4027.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/containers/podman-nextcloud/index.html_gzip_081bb5653ce52882ff0b9ec02d17ca45554481b64a18e89e3841c4e8fa2dbca1" +path = "static-publisher/static-content/file4027.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/containers/rancher_and_kubernetes/index.html_1429b95b98a6e849de561d713814b1ebebade1d1d6b08cfa8e1759de6af5c8c9" +path = "../build/minified/site/uk/guides/containers/rancher_and_kubernetes/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/containers/rancher_and_kubernetes/index.html_br_9222671a02380d55c66564a35ac3fc22f900f6d49b8669700098792aa297dcd2" +path = "static-publisher/static-content/file4028.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/containers/rancher_and_kubernetes/index.html_gzip_d67cd10dc535357e2b0ec97eb8f53f411e23312ebb8aa1e21cd1018f12276d83" +path = "static-publisher/static-content/file4028.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/contribute/beginners/index.html_e4a1b65ceaf4f579b224b0cfeb720dcb955eb04fb4683066e46203e7342d7ada" +path = "../build/minified/site/uk/guides/contribute/beginners/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/contribute/beginners/index.html_br_57e56234ed3d78a35933c363bc20dc1e710feabe5cb3f5f15f8f83897da1580d" +path = "static-publisher/static-content/file4029.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/contribute/beginners/index.html_gzip_b9db7a0ebb4c643eee2e687f432fd970c12bda3ce00e7ebf76f7409b7d055512" +path = "static-publisher/static-content/file4029.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/contribute/createnew/index.html_fb17fc2db52c9a320a7cb1ad32c4bc923033812a10709d6268c5bcab3ab1be48" +path = "../build/minified/site/uk/guides/contribute/createnew/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/contribute/createnew/index.html_br_2575713f089589e9606a66557f44d9375890d35331a43da85bfd2d7d775684e1" +path = "static-publisher/static-content/file4030.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/contribute/createnew/index.html_gzip_8e2a0a2d515a5f42b84a267c540b8e33ba4839921da59131416a0537b75a9e8d" +path = "static-publisher/static-content/file4030.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/contribute/index.html_b50756f79fd8afb8821a42e8d1b6caf80f5faa76cea9a856cef8c6e9f660d6c8" +path = "../build/minified/site/uk/guides/contribute/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/contribute/index.html_br_87cfcf84ca8adfadf01e692790c9b3616559410a0cc1995218db1686a1b657bd" +path = "static-publisher/static-content/file4031.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/contribute/index.html_gzip_6fc3081091b073ed6ab07ed936933806f9b697d10100e54690f3b41351566c93" +path = "static-publisher/static-content/file4031.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/contribute/localdocs/index.html_7387ea7fa4f266696637c30cf9ae9df8fe57f58825251505a2b76566b3f69f79" +path = "../build/minified/site/uk/guides/contribute/localdocs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/contribute/localdocs/index.html_br_51b3804b9c50c9c1e93185e4211dcbeae362ca8bf28a1b03012c4221d555d4cd" +path = "static-publisher/static-content/file4032.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/contribute/localdocs/index.html_gzip_5ba0b8cc53b27b459492a8a1e1b82d64cc4ba4e8d527659f487dc37a2c016433" +path = "static-publisher/static-content/file4032.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/contribute/localdocs/local_docs/index.html_9c1916a75e8a790e2efb3756fef34de858f2517787f8299a6d59e727c4f153fa" +path = "../build/minified/site/uk/guides/contribute/localdocs/local_docs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/contribute/localdocs/local_docs/index.html_br_b9879d489813f2f690247babe809ee1a25ef5572ad4bfc48ef716fe1b588e1e2" +path = "static-publisher/static-content/file4033.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/contribute/localdocs/local_docs/index.html_gzip_6e04fa049cfcb71e2ae0a06cb4cd15e7c109ab5d7b660fcc435389fc95c25c57" +path = "static-publisher/static-content/file4033.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/contribute/localdocs/mkdocs_lsyncd/index.html_307b8920a0bbc828b4d6f11e80ec0f24d6026ac0cabd87f6f745d476f3d5ee2d" +path = "../build/minified/site/uk/guides/contribute/localdocs/mkdocs_lsyncd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/contribute/localdocs/mkdocs_lsyncd/index.html_br_693861f7da809a411f969ea8e07c17b001d9c2c5391664f90e32bbec92dd506e" +path = "static-publisher/static-content/file4034.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/contribute/localdocs/mkdocs_lsyncd/index.html_gzip_88f8c48fa259e970949d3328a6f7c64d946fa0873099cdf5c35d16ba03af16cf" +path = "static-publisher/static-content/file4034.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/contribute/localdocs/mkdocs_venv/index.html_7aa77651b29fdf63db7af68217dcc92984bd0fe905729fd7b477dc7fb01ada0b" +path = "../build/minified/site/uk/guides/contribute/localdocs/mkdocs_venv/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/contribute/localdocs/mkdocs_venv/index.html_br_f1825f553e55501b5121361daa199707af82302f937545096977bccdf44a11cf" +path = "static-publisher/static-content/file4035.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/contribute/localdocs/mkdocs_venv/index.html_gzip_92e736f570f55d18da8d8c001a9c9faecbb65c5745f06b06d263cbc64077c846" +path = "static-publisher/static-content/file4035.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/contribute/localdocs/rockydocs_web_dev/index.html_878f0afc5580ab7fb881943149531203cdc3bc03205da6587a669f5a0e58e5ca" +path = "../build/minified/site/uk/guides/contribute/localdocs/rockydocs_web_dev/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/contribute/localdocs/rockydocs_web_dev/index.html_br_dd9875444da8ff7a9c11b4040d6be3aee99da6744bea33f250c93479bf0d1143" +path = "static-publisher/static-content/file4036.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/contribute/localdocs/rockydocs_web_dev/index.html_gzip_66353f1b4a4fe6abdef594505f5d8d2a654779084bf802a41afaaad2957c6cb6" +path = "static-publisher/static-content/file4036.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/contribute/localdocs/rockydocs_webdev_v2/index.html_76c5e023ce6823553aa81e692ab2d627825f8b4c7b6ac3e58d7d01e16c507ecc" +path = "../build/minified/site/uk/guides/contribute/localdocs/rockydocs_webdev_v2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/contribute/localdocs/rockydocs_webdev_v2/index.html_br_7968afd500c5188ff81045edf167384cfa2389ef669592242c9238c4efcbb4f3" +path = "static-publisher/static-content/file4037.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/contribute/localdocs/rockydocs_webdev_v2/index.html_gzip_4f351fea14d6fa0df4d148656df2efa15b8c11bcde029634fac9ae3297d67e86" +path = "static-publisher/static-content/file4037.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/contribute/navigation/index.html_1993a4414d2e82abc79ac86a77e3f93afb34bbcd1c1bb6af84b7fa830ebba3f4" +path = "../build/minified/site/uk/guides/contribute/navigation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/contribute/navigation/index.html_br_6825040d687369a71e0bef3c6d0fc4cf0866e49dcb1b2bfc86ae6c0b4f30034a" +path = "static-publisher/static-content/file4038.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/contribute/navigation/index.html_gzip_241f2aea56b1883c014dd12b000dee4441b39ff54878e8bf038948c3094dad49" +path = "static-publisher/static-content/file4038.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/contribute/rockydocs_formatting/index.html_bce2f2c8fc8ed078e1ca60d0be343e675d771a77903dcc393f449306e9a33461" +path = "../build/minified/site/uk/guides/contribute/rockydocs_formatting/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/contribute/rockydocs_formatting/index.html_br_b8e9d7253b77a4e687e8e8885ee4cc2c2e434eeef1855d718348b4980e85e36a" +path = "static-publisher/static-content/file4039.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/contribute/rockydocs_formatting/index.html_gzip_ae29712aa304699be9e915433974fcaf195f3a01606be9941dee40c89ba22f19" +path = "static-publisher/static-content/file4039.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/contribute/style_guide/index.html_92f3504493fc1daba4abc4b541ad8ba3b5c06da71d10f9a446b9940103afc1cf" +path = "../build/minified/site/uk/guides/contribute/style_guide/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/contribute/style_guide/index.html_br_3b20e15d0f25da58433cee3fe4ff773392fd6e68d70c4bd1e1d9e4edc534d6f5" +path = "static-publisher/static-content/file4040.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/contribute/style_guide/index.html_gzip_05486a75e12b79ea783e62a91aee5c6bb5af20823ead04f71e634efd7d784db6" +path = "static-publisher/static-content/file4040.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/custom-linux-kernel/index.html_c45009f78cb93aaa28c810d16e65c51d6000c82d20bffce9c7e5b0501b82b68c" +path = "../build/minified/site/uk/guides/custom-linux-kernel/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/custom-linux-kernel/index.html_br_c053bff38b7d9bd8465d2ab0530de698cac0fff5a67f6c7b7f7f7e9d21312da1" +path = "static-publisher/static-content/file4041.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/custom-linux-kernel/index.html_gzip_663193948ff472014ef533a191108af7495670130dfe1420bed633204e77064a" +path = "static-publisher/static-content/file4041.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/database/database_mariadb-server/index.html_7fede12939b7f086a57124c6a6c0e7c1b557ffacebb5687b4cdc8bba0244ddd0" +path = "../build/minified/site/uk/guides/database/database_mariadb-server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/database/database_mariadb-server/index.html_br_bf9d63d2efed10fe9361f87a0b6c86d9de1d2caeaaa10ba1e0e99b63b87de9cd" +path = "static-publisher/static-content/file4042.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/database/database_mariadb-server/index.html_gzip_0ce259eb4af6b86e80b38fb98d8203d1a0a9b725ee7eec561a0eff35908ef35b" +path = "static-publisher/static-content/file4042.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/desktop/kde_installation/index.html_25d5232832d655f465d91a9ab970694b9a8709fc44ae3733a150af681b7af7f0" +path = "../build/minified/site/uk/guides/desktop/kde_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/desktop/kde_installation/index.html_br_aa4c96feea6e40fdcc1ad8d8a4a63b15ae16d89a0b4c6a8840495863493b7d4a" +path = "static-publisher/static-content/file4043.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/desktop/kde_installation/index.html_gzip_fa51c38d3660ed96bafdfc24956488c95f4c441cc5ddb63cd972c36c07624c47" +path = "static-publisher/static-content/file4043.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/desktop/mate_installation/index.html_b22294bcacbf370e1f1c456ebc6a6d8689ca720fbab4a61a2308d174c3823dcd" +path = "../build/minified/site/uk/guides/desktop/mate_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/desktop/mate_installation/index.html_br_9687da038d3c62724fa367c4fbba83832f77edae7ccdcfa467cba01ef4151e52" +path = "static-publisher/static-content/file4044.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/desktop/mate_installation/index.html_gzip_70f03af446cf0d4c90012f2c30621c081ab761a628fadae4f3d73348ed3f48e0" +path = "static-publisher/static-content/file4044.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/desktop/xfce_installation/index.html_bf4f35468040c9e2bfe9bf294f974530d2dcc4036e5a0b5472590c7156900543" +path = "../build/minified/site/uk/guides/desktop/xfce_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/desktop/xfce_installation/index.html_br_e446ff28cd7eeb5973d087df311a70ea74dc9fca7e00dd32a8878c5299f1189f" +path = "static-publisher/static-content/file4045.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/desktop/xfce_installation/index.html_gzip_eedba1448739bad25f57a9beba18ca45f22d5a86cfbaf4e158a4c63e45ed0105" +path = "static-publisher/static-content/file4045.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/dns/private_dns_server_using_bind/index.html_0f1e89bf41c6ac464fe56eb7db6d6eed436db87bb127fc3e7d8a0f341d2f8258" +path = "../build/minified/site/uk/guides/dns/private_dns_server_using_bind/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/dns/private_dns_server_using_bind/index.html_br_911703743beccb23f147930732cf79b6f4e00abbead3c6369928e8afaabbed00" +path = "static-publisher/static-content/file4046.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/dns/private_dns_server_using_bind/index.html_gzip_d7d7ec537c157ceadbe7ce776cd6739dd4ee2938112aafa84afaf2136999652f" +path = "static-publisher/static-content/file4046.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/editors/micro/index.html_b72c735b02e32954172c320e85b05d84682b1397da06f31da7f245b8c6cd1d5c" +path = "../build/minified/site/uk/guides/editors/micro/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/editors/micro/index.html_br_d0def791013a503a7464d7f33b5c14a9c62c28dcf35cda2844248ae4a8f49609" +path = "static-publisher/static-content/file4047.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/editors/micro/index.html_gzip_02d0a7fe85b03bc97d01b6bfe249f0bfa501bc390afc076f2c17640fa05e2fa9" +path = "static-publisher/static-content/file4047.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/email/01-email-system/index.html_9254563d0386d4ff07e922fae7e9d4116f3cd4f01b1fa2ecd00fa69ffe4de7e4" +path = "../build/minified/site/uk/guides/email/01-email-system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/email/01-email-system/index.html_br_db50ca404901e419d2ab0f36786b340a3e5607879ad8f7108e1fbae94390f805" +path = "static-publisher/static-content/file4048.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/email/01-email-system/index.html_gzip_f18c575a3f3b35b1bbbdfc625a64590a03872e0b5ac42c03acabd4319d2a883c" +path = "static-publisher/static-content/file4048.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/email/02-basic-email-system/index.html_9535c7e10696759c79128bf291e96e8e2984019b9fb795d7344da2b53fe3cbd1" +path = "../build/minified/site/uk/guides/email/02-basic-email-system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/email/02-basic-email-system/index.html_br_c9563f99dcefe6bb337e2b5be7c7cd1f8825160b13619c68dddad1fdaddb4a6a" +path = "static-publisher/static-content/file4049.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/email/02-basic-email-system/index.html_gzip_708c7251f443879624cf8c6a72bc003672798d3ef3172fdd7ced2c76d03974e6" +path = "static-publisher/static-content/file4049.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/email/postfix_reporting/index.html_7eb814864bcfd3954af0fe48493d0985fd634254ab7607123a573e2a04913239" +path = "../build/minified/site/uk/guides/email/postfix_reporting/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/email/postfix_reporting/index.html_br_240804e9dbb073b814a563c7549e5b778097b26072bce12ec5506d6166668f3c" +path = "static-publisher/static-content/file4050.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/email/postfix_reporting/index.html_gzip_c08ec44780f966d7d99c7cf8a97947a7b219b6e2dd4770bbfde1b1ebec980d38" +path = "static-publisher/static-content/file4050.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/file_sharing/glusterfs/index.html_deee428aceb5a77fc76dc85e7f624710397f27e4e8091f0f611c67a63b4cf328" +path = "../build/minified/site/uk/guides/file_sharing/glusterfs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/file_sharing/glusterfs/index.html_br_ddd0ae75b389d5cb63fb24382960c2d203718a1179be0466e9b41e621db9f62f" +path = "static-publisher/static-content/file4051.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/file_sharing/glusterfs/index.html_gzip_c2e156360c4c2a0d9413fa26769b5b5a0b5f9efcf8b79d9a9c2a1fa42e25fce1" +path = "static-publisher/static-content/file4051.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/file_sharing/nfsserver/index.html_3422e3bcc22711c69d3e5933b3b948da2e295f2106479152200183b7fcdfc7aa" +path = "../build/minified/site/uk/guides/file_sharing/nfsserver/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/file_sharing/nfsserver/index.html_br_df04b8380efeae78c404a43abb9a7c932f5be6d76f0c01b5e00e213d38672f77" +path = "static-publisher/static-content/file4052.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/file_sharing/nfsserver/index.html_gzip_98c1c0fc826292b21669abf6acc3e128d953a3f2ba2dcec35e77f163285a16a7" +path = "static-publisher/static-content/file4052.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/file_sharing/secure_ftp_server_vsftpd/index.html_cd55b87e3c5b5429672d4e8e058a6f71e428f84d3da61407cb7a0a52e24806f5" +path = "../build/minified/site/uk/guides/file_sharing/secure_ftp_server_vsftpd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/file_sharing/secure_ftp_server_vsftpd/index.html_br_0ec394ca69237f932b8af8523f69fa48dc08dc6fff9d209227e3aff713ca02f8" +path = "static-publisher/static-content/file4053.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/file_sharing/secure_ftp_server_vsftpd/index.html_gzip_3b4f50550215d4188ac41ab451df8c64f2e8f14d37b4e0ade84b1d2df1c0aad5" +path = "static-publisher/static-content/file4053.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/file_sharing/sftp/index.html_801c2242adc8afe8bb8dfa8b3e15b94a52890227979d839627f79c6c61dd25b7" +path = "../build/minified/site/uk/guides/file_sharing/sftp/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/file_sharing/sftp/index.html_br_150d250d82cde85e76988b807615badc107f4318ecac185f86e456e10c9ff2b8" +path = "static-publisher/static-content/file4054.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/file_sharing/sftp/index.html_gzip_116ea757ef599553bdce7da1c89cb6f15d345fea906ef28f56f2b1ab61c47dd8" +path = "static-publisher/static-content/file4054.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/index.html_d40420a8d973c39a4ca00ff7701d6a091ab4ae8a9b9f325397e128d4dc13e476" +path = "../build/minified/site/uk/guides/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/index.html_br_eaaf8dcc6a4f4489cc5389f8fd0ebc87af67f3edd99f315c86ca78ab6f19a6b6" +path = "static-publisher/static-content/file4055.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/index.html_gzip_cceeee5ef3d27128085475366ff448cb7e2b8afc350c7e187634a099e5fbe2ae" +path = "static-publisher/static-content/file4055.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/installation/index.html_ea7d573b7003ea71cf412dfc0a5640e770cc1f37f20d5fc241394feb294a18f9" +path = "../build/minified/site/uk/guides/installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/installation/index.html_br_a9b2768f922ee97901fb45f5adb5ff316ecc48727453a133801e6d8f2663c34e" +path = "static-publisher/static-content/file4056.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/installation/index.html_gzip_c8069fc91526a8d56fe846fcd5b22906dd6dbe6b150092c9aa408901dfdf4d81" +path = "static-publisher/static-content/file4056.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/interoperability/import_rocky_to_wsl/index.html_a90f480974640a0e6b247c7a736ce56e449e2453cf0f8cbb52bed9125d12b6f9" +path = "../build/minified/site/uk/guides/interoperability/import_rocky_to_wsl/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/interoperability/import_rocky_to_wsl/index.html_br_c80c36a15a5ff602d49139fb9227d3fba46f7f5808b2d183fd1699a8014acbc2" +path = "static-publisher/static-content/file4057.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/interoperability/import_rocky_to_wsl/index.html_gzip_38fc270fdc5ca265c059a738c2ca392b15d1598d9397c9bf555bb6c9967d4578" +path = "static-publisher/static-content/file4057.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/migrate2rocky/index.html_20aea8baba1820e338c8df0fee0b2f5380430a50c2ded2f8c9e54f9a1df7a9ae" +path = "../build/minified/site/uk/guides/migrate2rocky/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/migrate2rocky/index.html_br_0c91f2b0e773741a26d3952dfd26362fb929a0256e5f0a8aa9ed88835a360f3b" +path = "static-publisher/static-content/file4058.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/migrate2rocky/index.html_gzip_40fce35c2228e5edfaea071d355a1ba5f9e24c826e9f12ff2c1cb6c925938057" +path = "static-publisher/static-content/file4058.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/mirror_management/add_mirror_manager/index.html_2c4fefd9147cf29de733f3e09647f5dc9bfcc80e865b8333c499b1643a5b96f9" +path = "../build/minified/site/uk/guides/mirror_management/add_mirror_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/mirror_management/add_mirror_manager/index.html_br_786468672b533b16c544a4f07335f68d32f6fa3c05cdf499dfdd393423f251f1" +path = "static-publisher/static-content/file4059.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/mirror_management/add_mirror_manager/index.html_gzip_ec0126408b839260b1450c76905f67a2c70de8bfbc107ecea2063b13660782ca" +path = "static-publisher/static-content/file4059.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/network/basic_network_configuration/index.html_a316788110af14b047aaaff15ad4da9a5449ce422baa3c4c21f9b4e2339b512a" +path = "../build/minified/site/uk/guides/network/basic_network_configuration/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/network/basic_network_configuration/index.html_br_a8344a1600a00bf4d60d268acab4eba61e8e992070a2be90ce50850e53e888c9" +path = "static-publisher/static-content/file4060.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/network/basic_network_configuration/index.html_gzip_826ba78d403378d8dc295c78b02b0ea5991e6983bb7e83add66c09efab28a915" +path = "static-publisher/static-content/file4060.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/network/librenms_monitoring_server/index.html_027263f1507e6c86af32a6cbcf58eda9bfac8a38e33cbe067cd9f47c8cc895a8" +path = "../build/minified/site/uk/guides/network/librenms_monitoring_server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/network/librenms_monitoring_server/index.html_br_af26669cb07e7f79343da8d59e00f244c5778a1336cf3522e9130726e20cea49" +path = "static-publisher/static-content/file4061.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/network/librenms_monitoring_server/index.html_gzip_02e123eeb1febc213642607ebf1a45f6d9c7115deac49d6821aa53bbf4254e29" +path = "static-publisher/static-content/file4061.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/package_management/dnf_package_manager/index.html_69f222f55dca1c176325593a5f802a076b7e9bb7ad23a5b12abb28adf57745ad" +path = "../build/minified/site/uk/guides/package_management/dnf_package_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/package_management/dnf_package_manager/index.html_br_d8da25d512e775343b403bc7a3b628c8fa42186ca908066bdecd2d178241538f" +path = "static-publisher/static-content/file4062.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/package_management/dnf_package_manager/index.html_gzip_64c0a173c7592a968efe09c874e36c2c66cd3245aa39bd3495fc8f95fe3fb9fc" +path = "static-publisher/static-content/file4062.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/package_management/index.html_a82c21d05e71b3ba03dd7acfb07b78bafea4de96481002f24415a3f8e37aa64b" +path = "../build/minified/site/uk/guides/package_management/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/package_management/index.html_br_9e4b9fe2293dc7c93359aa98d6c119b59329ea9526eca88d06af61db07340cb3" +path = "static-publisher/static-content/file4063.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/package_management/index.html_gzip_be6eb527cede698e63c4a9a691820554c7d84cf539d3c66a4825215f2476dac6" +path = "static-publisher/static-content/file4063.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/package_management/package_build_troubleshooting/index.html_f87775b2411ef0492a1b100087c6eb8d4095871e1de35ee92d9ab9857cd76181" +path = "../build/minified/site/uk/guides/package_management/package_build_troubleshooting/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/package_management/package_build_troubleshooting/index.html_br_616babe1232e403813989f89c9811b090c54c0b72def52fcdb996f3043da08e3" +path = "static-publisher/static-content/file4064.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/package_management/package_build_troubleshooting/index.html_gzip_6f01b80b28350838a2ec87b0b81483b743e407421a7128bd18083f5801b7d610" +path = "static-publisher/static-content/file4064.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/package_management/package_debranding/index.html_2c81aaa56d0c5218d639cc52840b089e6a8d2867f8c8f8643256f2dd44f2aabe" +path = "../build/minified/site/uk/guides/package_management/package_debranding/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/package_management/package_debranding/index.html_br_ac31d2a9947d63ba30e7851325cb8b91e3398a6088875a6888dffca6f95c9576" +path = "static-publisher/static-content/file4065.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/package_management/package_debranding/index.html_gzip_38c626d965d98b01ab9587dbca607c21c09a1470bb79f4fd74f5a94d360fc434" +path = "static-publisher/static-content/file4065.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/package_management/package_dev_start/index.html_d68a40c9749409edf7a40c95e561b0e560acd906796b4778996dcd9ad7dc8405" +path = "../build/minified/site/uk/guides/package_management/package_dev_start/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/package_management/package_dev_start/index.html_br_7f502d984d17d6f5f4edc292b96a9e7d65f3ef2cc91d903650e7ef8157512736" +path = "static-publisher/static-content/file4066.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/package_management/package_dev_start/index.html_gzip_5dd3bcbec8c0525802e6a0f69e87990dd0dfaace609f0f3526d8b54985268334" +path = "static-publisher/static-content/file4066.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/package_management/package_signing/index.html_087ae1efd5929bb179f4bbdc88f8a7b3a33289ca39a5ff98462ffce4c211308f" +path = "../build/minified/site/uk/guides/package_management/package_signing/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/package_management/package_signing/index.html_br_ad6c93ad045cd587bca0f3eaa8b771953725d3bdbf70b1e2a8875562227ac461" +path = "static-publisher/static-content/file4067.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/package_management/package_signing/index.html_gzip_7d93c7300aec6f3d10338f86fa440605ac06d2c321aa66ee64cbf5b91ed8aeeb" +path = "static-publisher/static-content/file4067.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/proxies/haproxy_apache_lxd/index.html_007e789d50450af1223c843a6c33589a5bb94bf0ac0f6ae857dcb816794e5b5d" +path = "../build/minified/site/uk/guides/proxies/haproxy_apache_lxd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/proxies/haproxy_apache_lxd/index.html_br_746304e97d80db8ed87006b26a0d15f5850f313168eb6dcf9b44af13becc3073" +path = "static-publisher/static-content/file4068.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/proxies/haproxy_apache_lxd/index.html_gzip_4e0f74b0a95616adc6f46a6a0671bdcb2186c2e7b7393d026b2ef686576fab04" +path = "static-publisher/static-content/file4068.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/proxies/pound/index.html_2a03fd6f24bb322a05a0f4cf5b58114bacbb330852c914ac7ccbf24a52d6236d" +path = "../build/minified/site/uk/guides/proxies/pound/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/proxies/pound/index.html_br_d566c4d0dddb568283e2ac32128f6c6ee9440fa506fb48f83f265940224d7337" +path = "static-publisher/static-content/file4069.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/proxies/pound/index.html_gzip_c8b01dcafce4a7ead949d7c20d9cd8311e765039c8d688c858cc4b1b0918f5f4" +path = "static-publisher/static-content/file4069.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/proxies/tor_relay/index.html_5d93a1be3391f42b35943a3ef2a4d30c5d6c8729d4cdc48b86a3f8b5a8e9b46f" +path = "../build/minified/site/uk/guides/proxies/tor_relay/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/proxies/tor_relay/index.html_br_c5415814137aed4bf18ffffe9dc6d792676f5b44011465b6e13d99b76cb59caf" +path = "static-publisher/static-content/file4070.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/proxies/tor_relay/index.html_gzip_d1f172adb8fde25258411351f4564ab94c8b8416af3c641608a8565aa7245f72" +path = "static-publisher/static-content/file4070.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/security/authentication/active_directory_authentication/index.html_287f1081c797f4c967626fa4ed8cb63ffd8b00ef51214d159f6cfa8e0e0d9b38" +path = "../build/minified/site/uk/guides/security/authentication/active_directory_authentication/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/security/authentication/active_directory_authentication/index.html_br_dd53f081bbff31d7231d80c6a988684d6c1a3316552827b56dc96cb22133f4e2" +path = "static-publisher/static-content/file4071.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/security/authentication/active_directory_authentication/index.html_gzip_f9d6bed3f0ced0b86571ba0cd33b66bb9a58b92cd0a9edf23915c3c779cc301c" +path = "static-publisher/static-content/file4071.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/security/dnf_automatic/index.html_e49501b4b897bd5029031d850a8ec02384c0b765f572c06310dc74f2db08a512" +path = "../build/minified/site/uk/guides/security/dnf_automatic/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/security/dnf_automatic/index.html_br_219304d3ce3e161cb1ae55e51c467bb354eb67ae1b705fd231cdeb9feb211adc" +path = "static-publisher/static-content/file4072.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/security/dnf_automatic/index.html_gzip_edfbd7bf53db413292a86014d2927f27ff725ecf5e89ae10005653559441143e" +path = "static-publisher/static-content/file4072.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/security/enabling_iptables_firewall/index.html_afc5954f86ee45f1ae429ffdaf9e009b203e19546312af1389cc11d702a0f3e2" +path = "../build/minified/site/uk/guides/security/enabling_iptables_firewall/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/security/enabling_iptables_firewall/index.html_br_c4a9a6ad25a84f7f0f1eaf6a8b64076e01f0697216337d820ddc6376fe4d064f" +path = "static-publisher/static-content/file4073.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/security/enabling_iptables_firewall/index.html_gzip_b0e13017192b1709414fce7dbd02de0545f8648c433965b849afca1fcf88d773" +path = "static-publisher/static-content/file4073.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/security/firewalld/index.html_4f766a1d24f4d784f5eced5388e04f280a117f77dac4beef35f30d223de2bd22" +path = "../build/minified/site/uk/guides/security/firewalld/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/security/firewalld/index.html_br_03836e29fe3df1f4b1528abd895f5e8f80627315712e31dabbbbc5398b2facbb" +path = "static-publisher/static-content/file4074.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/security/firewalld/index.html_gzip_44a83c4f2253195d6218a0682ba24e42a15759e56d337ad663b3b0f0bd406d36" +path = "static-publisher/static-content/file4074.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/security/firewalld-beginners/index.html_a8eac04fec3551c7b1c9243d1b9d62cee9982c65147b65f1b5185a01cfb4f649" +path = "../build/minified/site/uk/guides/security/firewalld-beginners/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/security/firewalld-beginners/index.html_br_1e581d855dccc96edbb29ccfbd45e10856f91330fb51c3395a3a1131b8d4edba" +path = "static-publisher/static-content/file4075.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/security/firewalld-beginners/index.html_gzip_473dd8efaacb39a518e74e698dea9e8e214857c5a61994935da0d68fe16c3262" +path = "static-publisher/static-content/file4075.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/security/generating_ssl_keys_lets_encrypt/index.html_0ceb4d4a69712f720e6ff996e1f9b315beb29dc8c14e017252ca57facc4ee425" +path = "../build/minified/site/uk/guides/security/generating_ssl_keys_lets_encrypt/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/security/generating_ssl_keys_lets_encrypt/index.html_br_37215e9d8b084550627d44a5da0d557b6f73689a9379c3aeaab3d02d91f4088d" +path = "static-publisher/static-content/file4076.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/security/generating_ssl_keys_lets_encrypt/index.html_gzip_f3e4d2a1c597b71a158a33d512f435bba32a92613d59c5af7db896eedebd6548" +path = "static-publisher/static-content/file4076.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/security/learning_selinux/index.html_5f3ae27d13434df3621a4aecc1941512c34e16262ac5038d2442710473e50f2b" +path = "../build/minified/site/uk/guides/security/learning_selinux/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/security/learning_selinux/index.html_br_54fe14b493e558c084a10124bf779c5dac64ca898139005de6b00c56c4f03043" +path = "static-publisher/static-content/file4077.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/security/learning_selinux/index.html_gzip_a3939b262d495dd328054467a2d70b8595e5a71ee6cf8934306d8a5a00cb8919" +path = "static-publisher/static-content/file4077.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/security/pam/index.html_88325078bd8c369dba6ae69002173f7b77053cc2cade7c3b00124df82a0c1002" +path = "../build/minified/site/uk/guides/security/pam/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/security/pam/index.html_br_06c13f5890a109d7ab50d9ed2bfa2b9f9e2e6d7750edef080ea9d28e0e74b7cf" +path = "static-publisher/static-content/file4078.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/security/pam/index.html_gzip_82749786493a986cf961119ad8aafa7ce0557c397ec3f969c14235cb41b6478f" +path = "static-publisher/static-content/file4078.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/security/ssh_public_private_keys/index.html_84eec321973fdd5a50cd6621a13ae7e56a5ec09f318c921a2fe611bcf1c0c10d" +path = "../build/minified/site/uk/guides/security/ssh_public_private_keys/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/security/ssh_public_private_keys/index.html_br_7c4d4a9d331ff3b2bc5b24c1afc268f36608732174b00f833987cec323fe3fa9" +path = "static-publisher/static-content/file4079.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/security/ssh_public_private_keys/index.html_gzip_5b843e64acd07cc00018c8c2ee764876d9dcbe882299216190756602d1a09b3f" +path = "static-publisher/static-content/file4079.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/security/ssl_keys_https/index.html_a09fbcd732fee1ccdbc330d8192fd24247d5048b7aae404d3fe1a1549c7ab885" +path = "../build/minified/site/uk/guides/security/ssl_keys_https/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/security/ssl_keys_https/index.html_br_b7c403b0b7fb492abb3f4721db39994781fef6394f083c977e21d80c99a28e66" +path = "static-publisher/static-content/file4080.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/security/ssl_keys_https/index.html_gzip_8084b720bc6712f641e368005e4dc3b74f43e1df1a6bb5bab1f0f9dba690f4f7" +path = "static-publisher/static-content/file4080.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/security/tailscale_vpn/index.html_6e332118c16426a0f052c04795729c664bee7aac18d7f417aed0a3e5aaaa5978" +path = "../build/minified/site/uk/guides/security/tailscale_vpn/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/security/tailscale_vpn/index.html_br_d53a59c15f7915d46c2c0fd0aa472ede41ddf17ed87c971c866690eebbbdbcfa" +path = "static-publisher/static-content/file4081.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/security/tailscale_vpn/index.html_gzip_8e8f73615b09d358f543fc24fa381c7c8c804ffce53c3f4ad7901e207e1b15d7" +path = "static-publisher/static-content/file4081.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/virtualization/cockpit-machines/index.html_c3f6c2271a6e2805a77971dc8caa93484b3c974d7a1c9f68f6b8c8c451342c45" +path = "../build/minified/site/uk/guides/virtualization/cockpit-machines/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/virtualization/cockpit-machines/index.html_br_81ab71b8b8491d631309ff44fbcee078d85b692eb9b35d16e165c5edcbf832f8" +path = "static-publisher/static-content/file4082.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/virtualization/cockpit-machines/index.html_gzip_4a1ff70149caec75af25402e4c0a1cca11f0f0f2512c17b9dd6d28d3781839d6" +path = "static-publisher/static-content/file4082.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/virtualization/vbox-rocky/index.html_91fa8796d64416d712178475e29b16d61855d274ad1d73242b8dfe8241ae7bff" +path = "../build/minified/site/uk/guides/virtualization/vbox-rocky/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/virtualization/vbox-rocky/index.html_br_5870c2043bb2c1844a1d53f3e547f8a2a8d6e03073457bf81933508ce8a76904" +path = "static-publisher/static-content/file4083.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/virtualization/vbox-rocky/index.html_gzip_e8faa89edf77948c758b399e430688be29657e74ae0fb26c3442a89f07469c1c" +path = "static-publisher/static-content/file4083.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/virtualization/vmware_tools/index.html_2902ed77d41c3dbc283360b12642cac03da615bbedffc4e698f93b1c7bd3dedb" +path = "../build/minified/site/uk/guides/virtualization/vmware_tools/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/virtualization/vmware_tools/index.html_br_11a5c9bc0258967244c962e82467648f3c5c8e061de778773e46d34a731f7ad5" +path = "static-publisher/static-content/file4084.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/virtualization/vmware_tools/index.html_gzip_17f6e6a86a12bdbfc44b964d1eacdde4031114ed426e84af6589d7b4dab15294" +path = "static-publisher/static-content/file4084.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/web/apache-sites-enabled/index.html_4cb2ce1cab4eb186076e555d4f1b8064a1928505394b479d3cad6f87a73d4445" +path = "../build/minified/site/uk/guides/web/apache-sites-enabled/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/web/apache-sites-enabled/index.html_br_2d2d8bdc1a4a70c165bf55ba2df725c20223cb7d67b852db79d1c8769baddccb" +path = "static-publisher/static-content/file4085.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/web/apache-sites-enabled/index.html_gzip_376d7b43b029af2bb7039db87fd2e07313821949339a9dfe136de38479f775db" +path = "static-publisher/static-content/file4085.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/web/apache_hardened_webserver/index.html_96329758174b9c24718463b62f0bdf8bf966104d44633d8e0ca7741fe03c8d34" +path = "../build/minified/site/uk/guides/web/apache_hardened_webserver/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/web/apache_hardened_webserver/index.html_br_432930e45db1d0de7379d33fa2733398766fe0f6bf069c1a5ad25b9e56bf40bf" +path = "static-publisher/static-content/file4086.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/web/apache_hardened_webserver/index.html_gzip_dfb72afc440a009f3fe97a3115639563607bb8c3fde1b4352c36a47cc05b7c6b" +path = "static-publisher/static-content/file4086.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/web/apache_hardened_webserver/modsecurity/index.html_bbbc8b1b3008c68316a52016872ba8ba68bdb35d83c5869c221eb763a7438e1b" +path = "../build/minified/site/uk/guides/web/apache_hardened_webserver/modsecurity/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/web/apache_hardened_webserver/modsecurity/index.html_br_0747007d24260a34e0c7cea9baef04def66bc1c76f5794cd0565d0f7f7bc58bd" +path = "static-publisher/static-content/file4087.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/web/apache_hardened_webserver/modsecurity/index.html_gzip_5960b38331f32b461956c9eca22f57c421760bb8e1954a5a07f3a55cb10e3219" +path = "static-publisher/static-content/file4087.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/web/apache_hardened_webserver/ossec-hids/index.html_cfaba982cd64bf7048340dc6bd2f99a0623dffec20ddd0d4ee30d20008ce2407" +path = "../build/minified/site/uk/guides/web/apache_hardened_webserver/ossec-hids/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/web/apache_hardened_webserver/ossec-hids/index.html_br_7773b1a6393cf58f655cdaa5303dd1b986d49e00d9cf486d5f5b756afbc10f60" +path = "static-publisher/static-content/file4088.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/web/apache_hardened_webserver/ossec-hids/index.html_gzip_81effdb3ee7a33ad757824a95206fb52bb94beb508925f1f05adeed5fa681c1a" +path = "static-publisher/static-content/file4088.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/web/apache_hardened_webserver/rkhunter/index.html_758bb2514f0855e2352ba5eebac4517b1c16321e7194e944f422a8d11a0cef3d" +path = "../build/minified/site/uk/guides/web/apache_hardened_webserver/rkhunter/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/web/apache_hardened_webserver/rkhunter/index.html_br_005ec0bf1e8ba0a38f52d1103dea50ffc633f530ffadf7ead7cc37671fce6c86" +path = "static-publisher/static-content/file4089.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/web/apache_hardened_webserver/rkhunter/index.html_gzip_d1cf8dc12e374b214dfd03fba00c89d4bbe63750baebdf306eba680a031cab81" +path = "static-publisher/static-content/file4089.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/web/caddy/index.html_9b35fd526927fa57a923f05829dc47e774ac9a849df01a992458b6b76961b2cd" +path = "../build/minified/site/uk/guides/web/caddy/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/web/caddy/index.html_br_0cf16b0ae90836288b109e5e3732f7a54217c37453b5393c669c471e00ba4d4c" +path = "static-publisher/static-content/file4090.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/web/caddy/index.html_gzip_032f883fce290fffcd877a749f0ac8e4994cb9be44e82ac488b3634e692978be" +path = "static-publisher/static-content/file4090.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/web/mod_SSL_apache/index.html_d6dfc995f8ec297ccbdaca7bfa0e8ec0099a92db881b684827478dfaf15d0d93" +path = "../build/minified/site/uk/guides/web/mod_SSL_apache/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/web/mod_SSL_apache/index.html_br_c6c062d84cae6b33e9a51382debfb25a17e630b70721a4c98083992d13375370" +path = "static-publisher/static-content/file4091.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/web/mod_SSL_apache/index.html_gzip_e9370398b0e3d2ac891f00d28a5b8f61b078e8a63b5da108a2ef9894aae491f2" +path = "static-publisher/static-content/file4091.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/web/nginx-mainline/index.html_a98e6ee0b46af4e4f6925f4a130113281fdad9d889ce86f3205effd299025cb2" +path = "../build/minified/site/uk/guides/web/nginx-mainline/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/web/nginx-mainline/index.html_br_2a3421372e5d00f212fc867af163a177b6aff0cd383a9933b494ad1f4fcef6df" +path = "static-publisher/static-content/file4092.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/web/nginx-mainline/index.html_gzip_1a3b677546efef371fc8bc92161473c98c2048f9d19673acdaae5a33664d8b73" +path = "static-publisher/static-content/file4092.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/web/nginx-multisite/index.html_5e53c65f95f2fd3bfb5758eda64fd4a3576f201363f27a332a117759785c424b" +path = "../build/minified/site/uk/guides/web/nginx-multisite/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/web/nginx-multisite/index.html_br_d738415dd29bdbe4d3bcde2d77ec5e335e309245e9f172548f4f775b00f1891f" +path = "static-publisher/static-content/file4093.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/web/nginx-multisite/index.html_gzip_f431547328050ec0c8e55fbab2868e43c1070df2455a2f9af72f2b145deaeb3f" +path = "static-publisher/static-content/file4093.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/web/php/index.html_8558b400227239fb44ffba867c55d06978606d2024c22665bc38f386bbf251b2" +path = "../build/minified/site/uk/guides/web/php/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/web/php/index.html_br_a2bade9f674dfbb238a06f80ad1d7dc71fa78fca508a1980d64bb1a31a383da9" +path = "static-publisher/static-content/file4094.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/web/php/index.html_gzip_3d6ea42f8b8cadb20630d4219911a9c82187537c75ac3a406b71bc04ec261ad2" +path = "static-publisher/static-content/file4094.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/web/tor_onion_service/index.html_30b87c2bc190500b24441734842bfc6337b5d3941c83ba50fa105976424dbb9f" +path = "../build/minified/site/uk/guides/web/tor_onion_service/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/web/tor_onion_service/index.html_br_2b59a562868952906424faf2188736bea8a96222b49d823521607f811af20616" +path = "static-publisher/static-content/file4095.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/guides/web/tor_onion_service/index.html_gzip_5012560bf8d33ea7bd833929f57e75e4949613b976c4f923909307e5a80df3d9" +path = "static-publisher/static-content/file4095.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/index.html_4e1ec2e4981066f550a5f998723d0f313d0ce10a6a141b7b14e31266f94b46c9" +path = "../build/minified/site/uk/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/index.html_br_64fc8ba7743fed6e43ca54f8d7934301904313da56204262feb63da780535bb6" +path = "static-publisher/static-content/file4096.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/index.html_gzip_a14a82dace3e46978396d8443691980877936c230a32f2c1e4a6b99eb181c7ab" +path = "static-publisher/static-content/file4096.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/labs/index.html_6bb69f55e11e124d1afbc2a8761e6f7ec8cdd2f5bc08fb0d66ad9ed94e8c38e6" +path = "../build/minified/site/uk/labs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/labs/index.html_br_4a05d9880ca0117777ba0ccf519afb4149c4e2349ae2ed5e8ee53fa5d73b3b4a" +path = "static-publisher/static-content/file4097.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/labs/index.html_gzip_c18143f39b4f4d44ccbb74bd197ebf920f177a5987a6acd888493cee4105e0da" +path = "static-publisher/static-content/file4097.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/labs/networking/lab5-nfs/index.html_f1909cfec6f421ff30cb055594476525d4da587823f5c8c0b459e372e4111208" +path = "../build/minified/site/uk/labs/networking/lab5-nfs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/labs/networking/lab5-nfs/index.html_br_3ee43d6aba54039307e22757b67e7bd227d00652ac9b6effbdcee7b76c8981a6" +path = "static-publisher/static-content/file4098.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/labs/networking/lab5-nfs/index.html_gzip_9f9720b4f4fb1685c382cd0fdd5ea30df4ccddb2e02f4c86063304ba527fa1ac" +path = "static-publisher/static-content/file4098.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/labs/security/index.html_2ed4ac433d61ae0867bb28e572af02ecd1621b470b088f3b60d0c3464b281e4c" +path = "../build/minified/site/uk/labs/security/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/labs/security/index.html_br_8427dfbc835b933f7a763ecac947ca4b451e8c5b5b3e15144a14944953e25423" +path = "static-publisher/static-content/file4099.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/labs/security/index.html_gzip_ef4f336a2f36b8ce6c992b55ae2994c8e71feb0d4f08b239a58767cad48c305c" +path = "static-publisher/static-content/file4099.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/labs/security/introduction/index.html_a88e802f04a3cee98fb9b016dbf825b2ef2feaad1e2e29ae886e56d0a1ffb14e" +path = "../build/minified/site/uk/labs/security/introduction/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/labs/security/introduction/index.html_br_2a3437008dcb8f8a359167689680047834030b65891558d733040f06aaba7bfd" +path = "static-publisher/static-content/file4100.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/labs/security/introduction/index.html_gzip_949fb6dfda70fc8abeba7ba68e04ecaaab4db8e81ad0fe5a093b88c5206dae04" +path = "static-publisher/static-content/file4100.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/labs/security/lab3-auditing_the_system/index.html_19c4b9ce44ad5dae6e30ae93a264333d34b6351d3b2c3b420a6b8aaef208ad2b" +path = "../build/minified/site/uk/labs/security/lab3-auditing_the_system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/labs/security/lab3-auditing_the_system/index.html_br_81503f58bd01e8d029982d03243dca33983259232a6c8a760d27612b53885fef" +path = "static-publisher/static-content/file4101.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/labs/security/lab3-auditing_the_system/index.html_gzip_4de56e4ea2adba09450201f34929cd3f5f479a0f52b799bb851f0eef6024a920" +path = "static-publisher/static-content/file4101.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/labs/security/lab8-iptables/index.html_08e16638ab5ad43ae8f167523a891d1e3638f0cf842eb31455f9dbe3743ade78" +path = "../build/minified/site/uk/labs/security/lab8-iptables/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/labs/security/lab8-iptables/index.html_br_103148918053383eb1fb6d86ef1ce6aa213e66425991fe86cb7ea23810125cd4" +path = "static-publisher/static-content/file4102.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/labs/security/lab8-iptables/index.html_gzip_5c6bd26f0bcd35f5a942077641dc6698486ec912fbefc4fdee6e524a365ba79c" +path = "static-publisher/static-content/file4102.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/labs/security/lab9-cryptography/index.html_ec993adb5ddc0b116e4a914bb97204da404187a3ba9699e020ef7bef78505e0c" +path = "../build/minified/site/uk/labs/security/lab9-cryptography/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/labs/security/lab9-cryptography/index.html_br_1deea3b72fdf11b7fc61dd55027a487a5c345e45b71415b0abc947f2d22c5673" +path = "static-publisher/static-content/file4103.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/labs/security/lab9-cryptography/index.html_gzip_71d7acef8355386556973e432969c3e093d0008f6da97760b20c3eefc0b478cd" +path = "static-publisher/static-content/file4103.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/labs/systems_administration_I/lab3-system_utilities/index.html_fdfd0563fe7696b38f4da99668ca6bf41ae60bd59606746dd4fb3c95434a346d" +path = "../build/minified/site/uk/labs/systems_administration_I/lab3-system_utilities/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/labs/systems_administration_I/lab3-system_utilities/index.html_br_861bf9dc3f32b99d9371eda0324832ccb5cb9315e0c7a0565374f103c5b8de93" +path = "static-publisher/static-content/file4104.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/labs/systems_administration_I/lab3-system_utilities/index.html_gzip_a455a774acb03dd7c512146810d76fe6f2e573b24039ff8a4b501cba7bdabb58" +path = "static-publisher/static-content/file4104.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/labs/systems_administration_I/lab5-networking/index.html_44c9fdd9711b90243246dcc03aba2fc8f559c5ecc31e33acf0d0363a0c538376" +path = "../build/minified/site/uk/labs/systems_administration_I/lab5-networking/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/labs/systems_administration_I/lab5-networking/index.html_br_d8806da6532686cd51b8f6c71e5fd2f89e04f2b3f8a38fe8ae647859555535ec" +path = "static-publisher/static-content/file4105.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/labs/systems_administration_I/lab5-networking/index.html_gzip_c705a688d15b4697dc65777168ebd4747cc691ba1ecaf5fcb220a84a4b27f065" +path = "static-publisher/static-content/file4105.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/labs/systems_administration_I/lab6-user_and_group_management/index.html_e301eae89d1a561280bda5c9282ad588fa91db59bb00b4d1d19fd66871daac65" +path = "../build/minified/site/uk/labs/systems_administration_I/lab6-user_and_group_management/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/labs/systems_administration_I/lab6-user_and_group_management/index.html_br_70e2be8886e11f0d11202d905f7b21067ec326b5773be17cb19cf07d9df836dc" +path = "static-publisher/static-content/file4106.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/labs/systems_administration_I/lab6-user_and_group_management/index.html_gzip_865bff6ae8d70b5580c4035222bf3d02a7d415b1bd3a7d405a22d536817ea3e1" +path = "static-publisher/static-content/file4106.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/labs/systems_administration_I/lab7-software_management/index.html_6fa6e8cc216a22fc17a34116eed73042b32971ab076efda69473326f6baa43d1" +path = "../build/minified/site/uk/labs/systems_administration_I/lab7-software_management/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/labs/systems_administration_I/lab7-software_management/index.html_br_891c9075b557bf5424afdf213e13e7fcd649c129102e902cf2f05ca6a0cec917" +path = "static-publisher/static-content/file4107.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/labs/systems_administration_I/lab7-software_management/index.html_gzip_5d0d607e3e0e9332b817d494b66d2e94a12cd7e58caf494c4b9ec3f5994bd364" +path = "static-publisher/static-content/file4107.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html_b8c456f6785f70e4695256b50a0be05dcf906a2a26a8a377cc1450f5db64c540" +path = "../build/minified/site/uk/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html_br_2378615363de6198a5dccbf54d8bb3476cb3b47d2b41bfb292bd2da146912d40" +path = "static-publisher/static-content/file4108.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html_gzip_b203c5c2b1c117c662a3b09b269606a9c676ae21a9596c6bd0f254437f31a9b6" +path = "static-publisher/static-content/file4108.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/labs/systems_administration_II/lab3-bootup_and_startup/index.html_1e0e00f8bd0e58ae6d2ca468489a65661cf9eb939b1b4f85789c8bb846c7ecaa" +path = "../build/minified/site/uk/labs/systems_administration_II/lab3-bootup_and_startup/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/labs/systems_administration_II/lab3-bootup_and_startup/index.html_br_e4a08b7a54896e06b8f475b1bca2c25029c5acabf5b7f8bc9ba100477007b6ca" +path = "static-publisher/static-content/file4109.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/labs/systems_administration_II/lab3-bootup_and_startup/index.html_gzip_cfc1cff1ff7c5c47f9993c174236ff21ca972a4c223c5ba957d72fc63857de81" +path = "static-publisher/static-content/file4109.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html_b7ac2870730c0bdfb4ccab90f3d60fb40afab4a494239db237c3ec898f2048d3" +path = "../build/minified/site/uk/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html_br_52a7e0cc837406d63e8167ca9f1c91d0854eec1cc54602f2b6184767d1edbf6f" +path = "static-publisher/static-content/file4110.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html_gzip_4ee86693f8a294ac6109853a9caa5f85c68bdab616ea2dc0925a4a436a16555b" +path = "static-publisher/static-content/file4110.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/labs/systems_administration_II/lab6-the_file_system/index.html_6984a8f5e0428cb6f6fa7a394a71a75319fbc0112b6c4580712e62e937d317ea" +path = "../build/minified/site/uk/labs/systems_administration_II/lab6-the_file_system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/labs/systems_administration_II/lab6-the_file_system/index.html_br_e19969e2118c0e0866d0e1e0862a7b7ba6e51adb38b7d21f9ce142eba3b01af7" +path = "static-publisher/static-content/file4111.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/labs/systems_administration_II/lab6-the_file_system/index.html_gzip_2dafe254d0168bf48bc7fbcc71adfc269d5ddf5f54143722a0ffe33168c75b4a" +path = "static-publisher/static-content/file4111.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/labs/systems_administration_II/lab7-the_linux_kernel/index.html_8b088c870ccce8d42fc08af8ebd65d0e86fc3c1062c20b043a4e6736e17d60eb" +path = "../build/minified/site/uk/labs/systems_administration_II/lab7-the_linux_kernel/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/labs/systems_administration_II/lab7-the_linux_kernel/index.html_br_fdac82858bdaab345763e7dbb016bed616fba5e9e38190cabf383ef99cf38d14" +path = "static-publisher/static-content/file4112.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/labs/systems_administration_II/lab7-the_linux_kernel/index.html_gzip_95075b0c723ff8dc4647e3924ff4c89b3b885fad0f599ba595c54243c7152537" +path = "static-publisher/static-content/file4112.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/release_notes/8-changelog/index.html_9c9f57734e0e95afe36fd8b51e664977754eb7d16170bc3be3ab893bb68a6e5f" +path = "../build/minified/site/uk/release_notes/8-changelog/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/release_notes/8-changelog/index.html_br_f7b6aebdce04546f2925c944585705b2823ab04f5988cb861ae49acced3b027a" +path = "static-publisher/static-content/file4113.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/release_notes/8-changelog/index.html_gzip_2861ff7817967b78a1cc1903d5a460ee3663b8e63d583675309ab2ccbc7f9c10" +path = "static-publisher/static-content/file4113.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/release_notes/8_4/index.html_3e3f5e1279235b752d1136176ddaa5f7a55b686e9a5a66497f9cc8a7603a28fa" +path = "../build/minified/site/uk/release_notes/8_4/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/release_notes/8_4/index.html_br_986b79e8c559121e94b455561c316a9c5c76c439babdd60f973c1ff9e37a0c5b" +path = "static-publisher/static-content/file4114.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/release_notes/8_4/index.html_gzip_6d05eab417f964765b896305d9c1f4d01ba1c9f557eadae98c7a50b49aade17c" +path = "static-publisher/static-content/file4114.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/release_notes/8_5/index.html_06d6a5f9c03b0d98c54d915d81f81f237116d55d33b28e8e923f1b857a20e0eb" +path = "../build/minified/site/uk/release_notes/8_5/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/release_notes/8_5/index.html_br_379d2b4fec518f40609434f233abfdacb604b390a3dbffbb73a44b234d892af1" +path = "static-publisher/static-content/file4115.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/release_notes/8_5/index.html_gzip_7c0a853eed2268900e90cc3b09474f82a596b445a5590090e4835cb68d297083" +path = "static-publisher/static-content/file4115.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/release_notes/8_6/index.html_46781fedd5a44c90b02e34777eb00999a8198477285a60bb51e46befd3edeb99" +path = "../build/minified/site/uk/release_notes/8_6/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/release_notes/8_6/index.html_br_259d91bdb8853aa494d134f784ecd3ee2feef1dcf4e75d262110353279ced290" +path = "static-publisher/static-content/file4116.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/release_notes/8_6/index.html_gzip_d22ddbcc7246f16c534671d9ea4697162176044c2d44a284dd5fd14d59baa870" +path = "static-publisher/static-content/file4116.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/release_notes/8_7/index.html_2dfd0be3b0532be94ea092aac4bbb0d4fe60b36ee4904c939fae6fdc5f8df797" +path = "../build/minified/site/uk/release_notes/8_7/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/release_notes/8_7/index.html_br_7736aec510756cca838ad2946a10ab27a9581994e2d23e635b1596252f4fa13d" +path = "static-publisher/static-content/file4117.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/release_notes/8_7/index.html_gzip_f33cfe84790e61c91ab623392a1cde1e1e2b946c3ed16ed4e95dea66277855c6" +path = "static-publisher/static-content/file4117.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/release_notes/8_8/index.html_b1a78990ddc1e93d249918fd78518466e94b47f46e85eded51e40f926b5fafa7" +path = "../build/minified/site/uk/release_notes/8_8/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/release_notes/8_8/index.html_br_e923bac0e680415361a97fb9f6b4e01ea31f0f9b678519d8c8fec9913e056cdc" +path = "static-publisher/static-content/file4118.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/release_notes/8_8/index.html_gzip_f2c20eef7d27f6d4c834bcc437dca482f4f049fb4eb7d2db3da913f5f67b4f89" +path = "static-publisher/static-content/file4118.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/release_notes/8_9/index.html_47d7e149cf2a3c3ac9226cd44cc196a2217a37b091b3f00e00ba0437aec33369" +path = "../build/minified/site/uk/release_notes/8_9/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/release_notes/8_9/index.html_br_9f795bc8fc5cf2accedd5191e4967c25e7d2af8aeb55f6b0fa475d5ef552c15c" +path = "static-publisher/static-content/file4119.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/release_notes/8_9/index.html_gzip_60ef6ea514f5734bc68b29e1d28ddfbe47e19291784d187a94524d8930fff49b" +path = "static-publisher/static-content/file4119.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/release_notes/9_0/index.html_3abbe63496096d349cb048e2c519a0698a0c061a2c2195ac1f09857247092ad0" +path = "../build/minified/site/uk/release_notes/9_0/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/release_notes/9_0/index.html_br_70d5a46c3bee112d898725a0fe7a0d97b0bce354e2097d367302d4a414de064f" +path = "static-publisher/static-content/file4120.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/release_notes/9_0/index.html_gzip_64595dc96fef4a10ea30948605155ed36ab1f3143666525691c7d8ce25262fed" +path = "static-publisher/static-content/file4120.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/release_notes/9_1/index.html_419fe186cbdb8bfbef0b36cfacfc36361dd507b3fa36535a016d27a8296444e2" +path = "../build/minified/site/uk/release_notes/9_1/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/release_notes/9_1/index.html_br_4a86ce307c8564a5c127e05af116d4fb5e5beaf7741449819cf99fae90be7e27" +path = "static-publisher/static-content/file4121.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/release_notes/9_1/index.html_gzip_9ce78bcf8bc86a12e2e926c9e43871b7357ba3c88b0bca40fddd64a57a10ba9d" +path = "static-publisher/static-content/file4121.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/release_notes/9_2/index.html_bacae8ca3aa3c532654584748a4235d0e31a024d5d00269c35f3e6e07bb8e9b2" +path = "../build/minified/site/uk/release_notes/9_2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/release_notes/9_2/index.html_br_10889649457d9662e1e52293ddeb7264ae1b824ada693a50b5cbd5b115f948fd" +path = "static-publisher/static-content/file4122.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/release_notes/9_2/index.html_gzip_6dc00a8005348b72796fb7d4e1f52eb82ee80506d595b4cf52656141d6d779e5" +path = "static-publisher/static-content/file4122.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/release_notes/9_3/index.html_04b37619ecc2b0a5b3df86ec924a3fd9844e2df3e3a456ce61486c8f136b8759" +path = "../build/minified/site/uk/release_notes/9_3/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/release_notes/9_3/index.html_br_0584b380c46b1c5f0425c96ebaad7949a318ff9855d1a72c523c49fe9a4a0156" +path = "static-publisher/static-content/file4123.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/release_notes/9_3/index.html_gzip_11b244c30fd1394901cf47f776b3d49c4e8bef035b65606c0b13d93224f57a5c" +path = "static-publisher/static-content/file4123.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/release_notes/index.html_b0eead4d8121b7ca878774deda889697f13c915b191fcc322db3be4a39a9ac81" +path = "../build/minified/site/uk/release_notes/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/release_notes/index.html_br_b356d8296bd097c5527d577362274b8713981181784bf3426b801bc6cb2afe55" +path = "static-publisher/static-content/file4124.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/uk/release_notes/index.html_gzip_0b825a24d8a51c658934708b91310fac296894b5f6d5780ab5d48d914c33d48a" +path = "static-publisher/static-content/file4124.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/admin_guide/00-toc/index.html_a54051b559d5de5be780f891b5b2ee77fa9d73895bf8d141dfee327f8cd600de" +path = "../build/minified/site/zh/books/admin_guide/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/admin_guide/00-toc/index.html_br_a3d888296f5780b182b88f621703700e232032150db8c4d51af9c89d4890cbc9" +path = "static-publisher/static-content/file4125.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/admin_guide/00-toc/index.html_gzip_c5a7fc905e4eea8189d3be48b4286a5da50b3c75af5f7f2fc3dd9ed79711b652" +path = "static-publisher/static-content/file4125.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/admin_guide/01-presentation/index.html_c980d12ccfe80a499e6c11a021d62620a1d8708d0f8a8d85cf88e301bd2a4827" +path = "../build/minified/site/zh/books/admin_guide/01-presentation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/admin_guide/01-presentation/index.html_br_e6d996234332ab03a53ed5c2c2a55f36a1850ea6379af20b0d4087b0be26e490" +path = "static-publisher/static-content/file4126.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/admin_guide/01-presentation/index.html_gzip_f54d51809e5d2867e0566de8c5b8c9adad5817ea660965149dd8eedc4cb549e8" +path = "static-publisher/static-content/file4126.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/admin_guide/03-commands/index.html_3ef9ef13008516d46c3585e9f48f059a74cfec40ec85f1d50f1488e6af6434fa" +path = "../build/minified/site/zh/books/admin_guide/03-commands/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/admin_guide/03-commands/index.html_br_c8105cdab731c1a9191bd7644f68f16bfd5b671b640b67c01dca444ff5127fcd" +path = "static-publisher/static-content/file4127.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/admin_guide/03-commands/index.html_gzip_5dd259a6461f92688bdd15ff0b06b7ade25d488abf66c92240a195a3e9975929" +path = "static-publisher/static-content/file4127.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/admin_guide/04-advanced-commands/index.html_7d376d0181072cf0099e9994d00c5d7234f68b9ff6cb747956707de8a51ca043" +path = "../build/minified/site/zh/books/admin_guide/04-advanced-commands/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/admin_guide/04-advanced-commands/index.html_br_135afeb914dc6524277e8a0c3ea32ee34aef2f560107892cc4f62c4aa4a5494a" +path = "static-publisher/static-content/file4128.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/admin_guide/04-advanced-commands/index.html_gzip_534a55db1881965b5efb730b92519e0ea328b9a8c7ac4c1c862da62315265608" +path = "static-publisher/static-content/file4128.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/admin_guide/05-vi/index.html_c5ab4befdfa3c060b0ef96af64a92ffec7efaa84c370da71330f9f740f93e338" +path = "../build/minified/site/zh/books/admin_guide/05-vi/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/admin_guide/05-vi/index.html_br_07707512edf5b7ac25c9be48293dccbc492af9bbec3a64b3abbd09d36fbabfc1" +path = "static-publisher/static-content/file4129.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/admin_guide/05-vi/index.html_gzip_9b5435323be530a2d53a75f41e1f85079f2761879587a781785730d9c78e103d" +path = "static-publisher/static-content/file4129.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/admin_guide/06-users/index.html_3bc8662fe6f63d95b146bbfabd3aec78c49194cb3bb7798e17bd554c554bc1d1" +path = "../build/minified/site/zh/books/admin_guide/06-users/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/admin_guide/06-users/index.html_br_1d06d5de68b30ce9f49d163892b0fa58878db23b27bf9fc09194152b01869c31" +path = "static-publisher/static-content/file4130.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/admin_guide/06-users/index.html_gzip_900d8138bbb86436927a5c511bdf1be4195acc7e2026b363cf7493007a5e6981" +path = "static-publisher/static-content/file4130.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/admin_guide/07-file-systems/index.html_a13f078be02fcd0b001930d8f11fddd7eb737e3f64efb63100cf5adbd7553787" +path = "../build/minified/site/zh/books/admin_guide/07-file-systems/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/admin_guide/07-file-systems/index.html_br_4610da5a98ade2a3a86489f03fb3ce96879d4f3f63429cb2cf1c41906e27324a" +path = "static-publisher/static-content/file4131.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/admin_guide/07-file-systems/index.html_gzip_6a2f82863f60336be5855afc14d43a0976c37f7ce1aaa36c730c94e8409f0b40" +path = "static-publisher/static-content/file4131.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/admin_guide/08-process/index.html_4f74086ddb73429f9f910d595348677cd0eb5315e6cf5460ed8b749d62a17a79" +path = "../build/minified/site/zh/books/admin_guide/08-process/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/admin_guide/08-process/index.html_br_be23ae87be8ed12e9e50ee66716763de266bd284fc9351fe8ba5c4b2d1dea1ef" +path = "static-publisher/static-content/file4132.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/admin_guide/08-process/index.html_gzip_d25fb2bfa67451f711b687ef608f8b05b8f14d49abd9fbd7a65f9c986d2b49af" +path = "static-publisher/static-content/file4132.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/admin_guide/09-backups/index.html_82010bab1e3951e8c5fe46293f1bf66b85718f1a2abf6d9a0d702b582ddd99ce" +path = "../build/minified/site/zh/books/admin_guide/09-backups/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/admin_guide/09-backups/index.html_br_a5259de2cf3aadea41d302ec75a8bad8e2201e0aa20eb4a0ba123097689fee48" +path = "static-publisher/static-content/file4133.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/admin_guide/09-backups/index.html_gzip_cab23012b32e271886769bfb3215305ff55dfc2bba6b7c3c57286b04f3d97c9e" +path = "static-publisher/static-content/file4133.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/admin_guide/10-boot/index.html_6fd0acc32c516ceaa706dbabbb9e3f3534df1e9cddfb92c0c62ab619275158c3" +path = "../build/minified/site/zh/books/admin_guide/10-boot/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/admin_guide/10-boot/index.html_br_269ec130a6da8c492aa5a6753a9d4c97938e17e866a60f7e54138da45d1c01e6" +path = "static-publisher/static-content/file4134.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/admin_guide/10-boot/index.html_gzip_99d439e65b62b7d0211ae3d8aa5fe418c6529a143b3a36d5a373584c38a935b0" +path = "static-publisher/static-content/file4134.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/admin_guide/11-tasks/index.html_643dc6947d57ce49d78813841dcfd2d97e4328de673b9fb378ca00ef39962da9" +path = "../build/minified/site/zh/books/admin_guide/11-tasks/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/admin_guide/11-tasks/index.html_br_216b93d9769ffde8f00deb0729e8632859b2835a62ff72917ab7b099ef425f64" +path = "static-publisher/static-content/file4135.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/admin_guide/11-tasks/index.html_gzip_e1bd7cf7a15db5802dab1d83c93c2a3e51c76fe434ccf7bb0ba40796b428613a" +path = "static-publisher/static-content/file4135.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/admin_guide/12-network/index.html_cdf1355b25415d45814b3e9923ba3e9a16af9224421cece72d7fd3892d857888" +path = "../build/minified/site/zh/books/admin_guide/12-network/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/admin_guide/12-network/index.html_br_7c3aeda2a25153a9c80745a06c55bda8e7765508f13f5c44b39936f17e3813de" +path = "static-publisher/static-content/file4136.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/admin_guide/12-network/index.html_gzip_235225bc43242775b0b02d1a51ad27bfea82f2c00a2241cd055d726f84852b89" +path = "static-publisher/static-content/file4136.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/admin_guide/13-softwares/index.html_9da4b91c9b28e5684ffe8fc8ce9b87c79349dd2725fe37d35cb32c17cf91c58e" +path = "../build/minified/site/zh/books/admin_guide/13-softwares/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/admin_guide/13-softwares/index.html_br_6a699c4219176ac4349f862a30f114cf0dc7fad4a2ddef9a48c49b96e218c25c" +path = "static-publisher/static-content/file4137.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/admin_guide/13-softwares/index.html_gzip_7dedb808f659f2a11ee5d5662d9a419116f5b853fe2c72d22249c8473c184ac4" +path = "static-publisher/static-content/file4137.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/admin_guide/14-special-authority/index.html_4609d1aef9730b2628261b847f8fbae80cd12e75123c5dbfff6507ca4088b8dc" +path = "../build/minified/site/zh/books/admin_guide/14-special-authority/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/admin_guide/14-special-authority/index.html_br_f11e547479560c80b2a8e46b27662b4eb57848c2a46c7916b370bc59aae42e82" +path = "static-publisher/static-content/file4138.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/admin_guide/14-special-authority/index.html_gzip_1f4248888a172fca75e0dafa84ca1685df710f66a4a587125586e2eefef5e358" +path = "static-publisher/static-content/file4138.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/admin_guide/16-about-sytemd/index.html_f5156b15b46319431479a102a9570d756fa36088a71d932a6d7a4875ec31cb88" +path = "../build/minified/site/zh/books/admin_guide/16-about-sytemd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/admin_guide/16-about-sytemd/index.html_br_660c51df310a9070d3be2d88dc672da41635761e79453db76c1ad0c52a4fabe9" +path = "static-publisher/static-content/file4139.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/admin_guide/16-about-sytemd/index.html_gzip_7b3a1aa2a3d959719be4a96f375d58795d372527026445fa6544ea975fb97b8b" +path = "static-publisher/static-content/file4139.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/bash_programming/01-Shell-overview/index.html_871753c45727ca494819564cb28617d6329c25334b9d3efd078a17565c6aae6d" +path = "../build/minified/site/zh/books/bash_programming/01-Shell-overview/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/bash_programming/01-Shell-overview/index.html_br_cc2d80436cd87b132f6ee64eb766abebe87d83f1125ec75ad9eb17609d1aad96" +path = "static-publisher/static-content/file4140.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/bash_programming/01-Shell-overview/index.html_gzip_88b4817ee4a058d4000b4205f41b5cc0b5ae6239cd4205ce151a85fa178b4a22" +path = "static-publisher/static-content/file4140.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/disa_stig/disa_stig_part1/index.html_609a50862fd7f24957106b443c50c573edbdc46abb8ed75e28f4e070be33526c" +path = "../build/minified/site/zh/books/disa_stig/disa_stig_part1/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/disa_stig/disa_stig_part1/index.html_br_5467fdf2ec8de182507d77f1a9775a308311043b422a5169039bc674280b7d1d" +path = "static-publisher/static-content/file4141.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/disa_stig/disa_stig_part1/index.html_gzip_44c9eb1458f3807d4ec3d310daa6a152933d7b79e5f204740dcc7cbefa4da117" +path = "static-publisher/static-content/file4141.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/disa_stig/disa_stig_part2/index.html_7d69adb86b0422d20b9400d2fecdb218f8b112e127c432dae150432f671c666f" +path = "../build/minified/site/zh/books/disa_stig/disa_stig_part2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/disa_stig/disa_stig_part2/index.html_br_fb0b454abbf67eb5708b53fd990e879546911d9701940c90fc07a360e5b7044e" +path = "static-publisher/static-content/file4142.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/disa_stig/disa_stig_part2/index.html_gzip_a724a07255db579407d76c4fdb79e89352e2e2a3a1d2c60363b0c2fade6f495b" +path = "static-publisher/static-content/file4142.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/disa_stig/disa_stig_part3/index.html_52d1e061ea3c8adff43ec3a311d4bd8d468b122dadac69dc4f9f401e7764216f" +path = "../build/minified/site/zh/books/disa_stig/disa_stig_part3/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/disa_stig/disa_stig_part3/index.html_br_b3e8ca97aa55ee86fc5b5aa1d257bfc4d14b1dd29f66ba9d180374be8a230167" +path = "static-publisher/static-content/file4143.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/disa_stig/disa_stig_part3/index.html_gzip_04fe99edaff599be7bf16792a223b7de1dcef98600082f60646b01cece20c9e9" +path = "static-publisher/static-content/file4143.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/index.html_e6f932bf6f09dc5d5709fcddfa093fd495d8a3bf03aedb128f3f258fc72d7357" +path = "../build/minified/site/zh/books/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/index.html_br_6b12a9a70a25e50d6cd9ce32e6b89f8435d03f4f671e103e9967326caf7b2494" +path = "static-publisher/static-content/file4144.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/index.html_gzip_794563eefa200b9875f847549825aa02fefaca49ff6c75b357eaac71e2810de6" +path = "static-publisher/static-content/file4144.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_ansible/00-toc/index.html_5a6daa5899a25e6f80832a8b134eacbcf95b1c821df096171ab5db186a51ac19" +path = "../build/minified/site/zh/books/learning_ansible/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_ansible/00-toc/index.html_br_234b595b96fd321f2837c6db459c3bba81bf1e2724eaaec2606203a9f4d94957" +path = "static-publisher/static-content/file4145.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_ansible/00-toc/index.html_gzip_bf27ba163c1b5f96589b45971f92123eb0cefa3a5378d97ac2fc1e5c2ccd78c0" +path = "static-publisher/static-content/file4145.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_ansible/01-basic/index.html_5918ddc6b972b037f94a9a569ec72a9c9d542b361378085bb961040617280db8" +path = "../build/minified/site/zh/books/learning_ansible/01-basic/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_ansible/01-basic/index.html_br_3027135ef344e6df9d63a8cd5d59621f65a729b28e9c4883f9fd2871fd9b4ea1" +path = "static-publisher/static-content/file4146.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_ansible/01-basic/index.html_gzip_b376913aaca614cabef1cb57feb3786ee2535f946054a06ee895ab4bde9da1fa" +path = "static-publisher/static-content/file4146.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_ansible/02-advanced/index.html_33c1dcb66d873b4551b12df5d6827b07192f9c295383c9aec1deba91900aafd3" +path = "../build/minified/site/zh/books/learning_ansible/02-advanced/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_ansible/02-advanced/index.html_br_a2b3de3781047435007a36f26059d4adc9a9f5e84cb62123bc3ff478d5b82409" +path = "static-publisher/static-content/file4147.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_ansible/02-advanced/index.html_gzip_ad7872e26482dfa41b9780ce6602293102221610ad05dc6078314f69946e58ff" +path = "static-publisher/static-content/file4147.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_ansible/03-working-with-files/index.html_369f319df6ed20dd00e02ae629821b7a6d6fd451a91769d33edd5d2b8f4235dd" +path = "../build/minified/site/zh/books/learning_ansible/03-working-with-files/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_ansible/03-working-with-files/index.html_br_795484cb7504ff907ad25dcbec282a85ab280837622d94923018fb9fb9ad4094" +path = "static-publisher/static-content/file4148.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_ansible/03-working-with-files/index.html_gzip_7411b5d22ed26372f1acc9c6c47ab328a511cc64f9aed7ebe66309097d7149d7" +path = "static-publisher/static-content/file4148.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_ansible/04-ansible-galaxy/index.html_705ca942169cbece0cfec06403a03b28b026b9d4337ac9df34ac6cc60b0d025a" +path = "../build/minified/site/zh/books/learning_ansible/04-ansible-galaxy/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_ansible/04-ansible-galaxy/index.html_br_e57b3d3e276a39828640c742d9495abe81f568bc4406f0bf7f2856fe10fb8532" +path = "static-publisher/static-content/file4149.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_ansible/04-ansible-galaxy/index.html_gzip_a85b5ddc065960ba4209b91a58f959fecd49b961e253f82deaed66acfd6dcd7f" +path = "static-publisher/static-content/file4149.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_ansible/05-deployments/index.html_07402d3683302d2d500c7f58bee64b6ef6559ca225745106ab657902c513c769" +path = "../build/minified/site/zh/books/learning_ansible/05-deployments/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_ansible/05-deployments/index.html_br_244d2835370a561181c35811732bb44b6ff48312ab0cc293a3295ff127970fc7" +path = "static-publisher/static-content/file4150.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_ansible/05-deployments/index.html_gzip_4d7ee80e4803b6a33cd17c72821a682bd52a9252c62cdcc139670181aec020e9" +path = "static-publisher/static-content/file4150.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_ansible/06-large-scale-infrastructure/index.html_03c47564447f19d68d53b2164cc7f834d17c5e2acff15804de255d0d974d141f" +path = "../build/minified/site/zh/books/learning_ansible/06-large-scale-infrastructure/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_ansible/06-large-scale-infrastructure/index.html_br_2ce155ab1336d83d33101a5889619f5004ecf6dd777fc72e09286667b9762bd6" +path = "static-publisher/static-content/file4151.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_ansible/06-large-scale-infrastructure/index.html_gzip_0e42ce6a8153e34693e0125317cbeb8cc806047a36cf7c69a12a9c9ee74a5856" +path = "static-publisher/static-content/file4151.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_ansible/07-working-with-filters/index.html_f63837ceeda6b7d610ccd3744117e79e7eea9b62af550833d5fe30c232147f10" +path = "../build/minified/site/zh/books/learning_ansible/07-working-with-filters/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_ansible/07-working-with-filters/index.html_br_d9cc9d50bdf5816eca8c56f1bbf066fc9bc0e1bc09ff580de7ae6772f4f72f5e" +path = "static-publisher/static-content/file4152.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_ansible/07-working-with-filters/index.html_gzip_900e63a5f5c482e2fa84b34231bff555ce14b3782bb42f73c4a8af14d3aedf03" +path = "static-publisher/static-content/file4152.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_ansible/08-management-server-optimizations/index.html_66508a0fb4da42d99776e6f970239d764661f7db138e6fa0543c3fcf6d4a18d3" +path = "../build/minified/site/zh/books/learning_ansible/08-management-server-optimizations/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_ansible/08-management-server-optimizations/index.html_br_b111ec8458854565601412059b150415fc14994d753377c551176c526c2362c1" +path = "static-publisher/static-content/file4153.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_ansible/08-management-server-optimizations/index.html_gzip_f3a21b0be7d161a145cd600db1e017de4cb2570cb8354e98da1aacaa3765c984" +path = "static-publisher/static-content/file4153.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_bash/00-toc/index.html_698cff84a7cf1418247a7be03e18c6069592f8428c7c31baf468ac10f27388f3" +path = "../build/minified/site/zh/books/learning_bash/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_bash/00-toc/index.html_br_32eb89391572dac964b65f14d84316028c381879540a0a0b361a5a35adafd168" +path = "static-publisher/static-content/file4154.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_bash/00-toc/index.html_gzip_7f363cb8f2ffb4f80e71f69dd12c41e0ea8b54e3e0646a8a1928cf66580d43d9" +path = "static-publisher/static-content/file4154.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_bash/01-first-script/index.html_ff9fded8cfca49578202a7892aab27ffedb750a95f4d4432a9e0f778074e8f7d" +path = "../build/minified/site/zh/books/learning_bash/01-first-script/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_bash/01-first-script/index.html_br_28c098bb592648745433f627efc8d95de28ffcb6c6abcd7a1b02a38d443f2630" +path = "static-publisher/static-content/file4155.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_bash/01-first-script/index.html_gzip_2378dcd3cde8c699132957b21095fc5703cb63db9bcee7ac13ac05140ae0aa55" +path = "static-publisher/static-content/file4155.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_bash/02-using-variables/index.html_39c2085a284a758ea648fd4c9b0047820142df8e17b413c12d176212fecc5af7" +path = "../build/minified/site/zh/books/learning_bash/02-using-variables/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_bash/02-using-variables/index.html_br_99ab2555270bbc3ba2c446c6508857263b02e0312a2be5ce4e588b559b5f3f58" +path = "static-publisher/static-content/file4156.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_bash/02-using-variables/index.html_gzip_7e214c957faacdf830b4196581fb924a905d15dd78f2c601834d3a03294f8342" +path = "static-publisher/static-content/file4156.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_bash/03-data-entry-and-manipulations/index.html_b459366ba277022fe4494f384307f5cda6c34b828ed514ffc2ac914c5957ad4a" +path = "../build/minified/site/zh/books/learning_bash/03-data-entry-and-manipulations/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_bash/03-data-entry-and-manipulations/index.html_br_b95de5137017e4c33c4cc5e3f4e40c9291e7c48081062a87f5b0ec6ced302a6e" +path = "static-publisher/static-content/file4157.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_bash/03-data-entry-and-manipulations/index.html_gzip_57b52096410ff925e52be1a9753b87b8ca6d1f945b50defa78a0732e84b55a2d" +path = "static-publisher/static-content/file4157.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_bash/04-check-your-knowledge/index.html_d1a23d8b174a62ae4523e8cb9f9b13a717fb23b8219d244a726fd84c03919ab7" +path = "../build/minified/site/zh/books/learning_bash/04-check-your-knowledge/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_bash/04-check-your-knowledge/index.html_br_c5931d4cbce0a7d7834103a234736ef21061f2c8acb1990a544031091dfb45a0" +path = "static-publisher/static-content/file4158.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_bash/04-check-your-knowledge/index.html_gzip_e2a0d2cb7796c6c1b9b574c1815d396016a5b9d00432d6982b03ebd98574e6e0" +path = "static-publisher/static-content/file4158.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_bash/05-tests/index.html_64bd0ffa33fbb0aba2efe7c73ce60315a2b66b3801917ba2e8c14a4fd40b6b6f" +path = "../build/minified/site/zh/books/learning_bash/05-tests/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_bash/05-tests/index.html_br_4f5d1f2d8e144936397d76af7538854b93f1c9e21753aea1ff4abf4442cd8f35" +path = "static-publisher/static-content/file4159.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_bash/05-tests/index.html_gzip_4feed1edf38ae0ca218a8ec03ac5ae617b5a026b8b860fed98c6c470c818a837" +path = "static-publisher/static-content/file4159.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_bash/06-conditional-structures/index.html_75680bd412acb3d240b49aca9d9cd08d6b32ef93ee217c99a08738047c0347c7" +path = "../build/minified/site/zh/books/learning_bash/06-conditional-structures/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_bash/06-conditional-structures/index.html_br_1520892b1c695c2361900b2bb10379a16b88ff2e87e88d8837aa24bf547d4c50" +path = "static-publisher/static-content/file4160.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_bash/06-conditional-structures/index.html_gzip_cfbdd37d48769d2a6576a65efab0ca72c461a5cef9b3f14ed8b61280c9b1601e" +path = "static-publisher/static-content/file4160.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_bash/07-loops/index.html_55748bedd808a675bf37599153ba26ac0b1fe5d9dbbd85eb5e2069a437a1587f" +path = "../build/minified/site/zh/books/learning_bash/07-loops/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_bash/07-loops/index.html_br_e2eb1719bcadb0cdc85e18e57d97eb2da30b6f792f6b5c0cce8e5536073cd091" +path = "static-publisher/static-content/file4161.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_bash/07-loops/index.html_gzip_debf6f5d44809805af4e512848dc652b63a20474f0dec6022f2831245fa389a6" +path = "static-publisher/static-content/file4161.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_bash/08-check-your-knowledge/index.html_58a0d7cc297ddc95a480bf865fdf06e6acc311918da1b418ed1847b2ebd1683e" +path = "../build/minified/site/zh/books/learning_bash/08-check-your-knowledge/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_bash/08-check-your-knowledge/index.html_br_831a2b9e6eed41bc6660c6bf58e2c36f4aef5f992dc6a02e5108e400fcf1adc2" +path = "static-publisher/static-content/file4162.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_bash/08-check-your-knowledge/index.html_gzip_41a60c5591feae14ed5c5e4307fe34e4371dc7e3632e4de452ec7427c0009c28" +path = "static-publisher/static-content/file4162.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_bash/appendix/02-variables-logs/index.html_e1bce76d8e336c76e6753068fbf7c7508b49508ddbff5e6c44f39630485b499f" +path = "../build/minified/site/zh/books/learning_bash/appendix/02-variables-logs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_bash/appendix/02-variables-logs/index.html_br_178123ab42cc9f4090749db0d7a1eb5ed60724edeb51742d6f400592a7baab13" +path = "static-publisher/static-content/file4163.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_bash/appendix/02-variables-logs/index.html_gzip_170a6be02b3d06b966180c116fe5c798f39e8ee5aa41e5a696e0ad506b881200" +path = "static-publisher/static-content/file4163.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_rsync/01_rsync_overview/index.html_12f91f4a2fa556e1d26f735c5252402e8be53c4f141938f130a68a03f5f5cdbe" +path = "../build/minified/site/zh/books/learning_rsync/01_rsync_overview/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_rsync/01_rsync_overview/index.html_br_6301d2f15aa3af65df36d19ade0332f8cae39d59aebd1c64e565bdbaf941362c" +path = "static-publisher/static-content/file4164.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_rsync/01_rsync_overview/index.html_gzip_6146e3b6fc1953c2457ae7801212241a22d81e0789bbaa72d7d0c8fb8130ec84" +path = "static-publisher/static-content/file4164.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_rsync/02_rsync_demo01/index.html_6fae873597eb226fb19233c73ff338c95ff41dfdca501e96e7448336ec644e1c" +path = "../build/minified/site/zh/books/learning_rsync/02_rsync_demo01/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_rsync/02_rsync_demo01/index.html_br_de356eb4208f1a2d5f9d592dc3812f2e7d72503ba96a619d069def58fbb09ebf" +path = "static-publisher/static-content/file4165.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_rsync/02_rsync_demo01/index.html_gzip_5ac8afcdf5e03b208868dcbb7026d8e694a914cf18734225206209b2e311128c" +path = "static-publisher/static-content/file4165.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_rsync/03_rsync_demo02/index.html_52d2cde12089df2e335f0d802fbcfbb4ebc316ad84bc6bf65c8252ca80d12611" +path = "../build/minified/site/zh/books/learning_rsync/03_rsync_demo02/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_rsync/03_rsync_demo02/index.html_br_9c7af52c46c85f14245868db03025fe1720dcab931bc8d44498c22aeacc90d4e" +path = "static-publisher/static-content/file4166.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_rsync/03_rsync_demo02/index.html_gzip_f418613f454c0aa5cb0591047cbbc77df62e2caf54cb393f5766ead8abf0253d" +path = "static-publisher/static-content/file4166.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_rsync/04_rsync_configure/index.html_ba0b1166cc8e4079a61fc1fc7798383068fb73a6feb3563d948824ba08903844" +path = "../build/minified/site/zh/books/learning_rsync/04_rsync_configure/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_rsync/04_rsync_configure/index.html_br_61d4c30c7182fea1058364207ad10733689af022a2fa4f6bc87a1d1ee3204cdb" +path = "static-publisher/static-content/file4167.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_rsync/04_rsync_configure/index.html_gzip_eaa055ff157cf93e082287db1d0a8162df0cf27f5b8bd284707eac5964038cda" +path = "static-publisher/static-content/file4167.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_rsync/05_rsync_authentication-free_login/index.html_0a37f144579c265ed5b2def78e2218423468f95e224be85620026447ac877612" +path = "../build/minified/site/zh/books/learning_rsync/05_rsync_authentication-free_login/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_rsync/05_rsync_authentication-free_login/index.html_br_dd57a58028224755a498bd562ec762eadc511e7c65913218d648b6d2cb7f83ec" +path = "static-publisher/static-content/file4168.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_rsync/05_rsync_authentication-free_login/index.html_gzip_d8d202c575166961723d95c75fae17387d129db28f5eb91aa8072a4d7e38a89e" +path = "static-publisher/static-content/file4168.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_rsync/06_rsync_inotify/index.html_208ea5d9c1e088255ec90dcf39c6f8172b7bc408579c4201606e0ae348f008a8" +path = "../build/minified/site/zh/books/learning_rsync/06_rsync_inotify/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_rsync/06_rsync_inotify/index.html_br_a80b738963af36cdc6040e70c40927fa05648fb1f1ca9a1f8c2d563a60049a77" +path = "static-publisher/static-content/file4169.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_rsync/06_rsync_inotify/index.html_gzip_1ba2f0544cc27ea95064d6a082b0bf6d82c8a8ae3d96a79e5761a98ffdf6bbc0" +path = "static-publisher/static-content/file4169.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_rsync/07_rsync_unison_use/index.html_2f5bb3f9fb51f67712611ff95c4d6910fbf676b869c25f0af35778529685bef8" +path = "../build/minified/site/zh/books/learning_rsync/07_rsync_unison_use/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_rsync/07_rsync_unison_use/index.html_br_b25d7146ba93c0863c7d73993f6f60fe9add109942ff17d56d6723e01d1e7a81" +path = "static-publisher/static-content/file4170.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/learning_rsync/07_rsync_unison_use/index.html_gzip_80d5645302229084f75cdd4f0e2fcdedfd8c19e3407ec0d19bf609a16a4c5209" +path = "static-publisher/static-content/file4170.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/licence/index.html_ecfdbc7cbe81af5899a74958153e7c3c7ee927540a4cfa197742483272513eb6" +path = "../build/minified/site/zh/books/licence/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/licence/index.html_br_9906d930bd3f8a145452688d21952e608f13095342007fb2578eb1d4e9a8ec5d" +path = "static-publisher/static-content/file4171.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/licence/index.html_gzip_1277346e7f71bd599dd9445c057f6ab1e8d35868ab164074cb5b98bb683e2c24" +path = "static-publisher/static-content/file4171.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/lxd_server/00-toc/index.html_7d8c944379dfba7da60003eedad8866ca072673a0520b84aa8bd1193d411905b" +path = "../build/minified/site/zh/books/lxd_server/00-toc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/lxd_server/00-toc/index.html_br_106246c22145e449582a74580ed5bf4d8eb40d65ffb4a590e06bc9f3748a8270" +path = "static-publisher/static-content/file4172.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/lxd_server/00-toc/index.html_gzip_2146713f74fb1f3e3943b16ff1f9f978b4b63b245fdcab0fa08d09ad3d351e4a" +path = "static-publisher/static-content/file4172.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/lxd_server/01-install/index.html_72a609d95feb6a68c5098bdf0085de8aa09f060777695be074d79bf42648db2f" +path = "../build/minified/site/zh/books/lxd_server/01-install/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/lxd_server/01-install/index.html_br_0dec0c6382b81e9dffe2c3ea9361a8c04ce3ef29735432fea8392fce11ca16de" +path = "static-publisher/static-content/file4173.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/lxd_server/01-install/index.html_gzip_b7111ffc1668055f807627ba96db35b288e88810839161f4496d669e28e2d8c1" +path = "static-publisher/static-content/file4173.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/lxd_server/02-zfs_setup/index.html_a9a2c854c080ea82ab285db9c07da077a8f11f49b9fdfea365b54590dd0e2cd9" +path = "../build/minified/site/zh/books/lxd_server/02-zfs_setup/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/lxd_server/02-zfs_setup/index.html_br_ec368e225f06ee5acc54663308473557eebd175654c1b76a46784985cdef19a7" +path = "static-publisher/static-content/file4174.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/lxd_server/02-zfs_setup/index.html_gzip_810827fcaac7405cfc03d4d9b895ef04d2aab26263143fdc8a2bfadf7c42168b" +path = "static-publisher/static-content/file4174.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/lxd_server/03-lxdinit/index.html_af9a639456840bc1d85ebb760b6dde5395ff709d2e6e8d3436ad87f8c61f9f76" +path = "../build/minified/site/zh/books/lxd_server/03-lxdinit/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/lxd_server/03-lxdinit/index.html_br_282df2023f61d1bbcdb4bf87a34cb9a42cf697825bf6b98d7745c1378db9d6d8" +path = "static-publisher/static-content/file4175.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/lxd_server/03-lxdinit/index.html_gzip_65f1ebb3253f9a99b073d7345177a66a01c935e25651cae47e9dc628bae0e67b" +path = "static-publisher/static-content/file4175.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/lxd_server/04-firewall/index.html_1eecd91abfbf1b1dcee7293cf916468dbb8e8c4f43588a23a531e2398a031e2b" +path = "../build/minified/site/zh/books/lxd_server/04-firewall/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/lxd_server/04-firewall/index.html_br_ef6c0926f8790da9634785506c83534f143379a28fe39b911ed8b1e0ad4b4a3e" +path = "static-publisher/static-content/file4176.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/lxd_server/04-firewall/index.html_gzip_7ae20ddfbec597aa1f3a56bdca4f3c4cf15beebba0e38dcf59cd34ce0d16961f" +path = "static-publisher/static-content/file4176.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/lxd_server/05-lxd_images/index.html_6884860b58ea06dbd5d858c6094f98d3a82666f69d9e1e2fdba6a7612b956488" +path = "../build/minified/site/zh/books/lxd_server/05-lxd_images/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/lxd_server/05-lxd_images/index.html_br_48b07905c5e31bff251ccb2dc2d64aa56a80b5678c10f861143d47c056519b4d" +path = "static-publisher/static-content/file4177.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/lxd_server/05-lxd_images/index.html_gzip_5d99d0b7dd258a6eab9f47a5ca7c7126e7a002a9c92bb9a75772bd987686f719" +path = "static-publisher/static-content/file4177.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/lxd_server/06-profiles/index.html_c1b7bc6ebca42661f595e2287d10c63fa7fae87b8286fe1deffa503370fa4df6" +path = "../build/minified/site/zh/books/lxd_server/06-profiles/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/lxd_server/06-profiles/index.html_br_2b2e0baf1aefce9f1af9584871f1f76ee8ce072c3509a59d65cf55762602bb7c" +path = "static-publisher/static-content/file4178.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/lxd_server/06-profiles/index.html_gzip_13e398f7258a2223e633c2d462758a4fbf37e39d97618d76fe0ef72d61abeb81" +path = "static-publisher/static-content/file4178.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/lxd_server/07-configurations/index.html_c6cb97f3ea7f0ac715f4ccf10f1e6e54efed4ba60112d96d9ab2f8b05db4680b" +path = "../build/minified/site/zh/books/lxd_server/07-configurations/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/lxd_server/07-configurations/index.html_br_9937d6959115ea9889407e942fe74e01df88acb42f941fda0509968e23a3fd6f" +path = "static-publisher/static-content/file4179.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/lxd_server/07-configurations/index.html_gzip_9131d5128c112b55357f197fc15b0ea9bd9dce47848bd7a3a3639553822eacbd" +path = "static-publisher/static-content/file4179.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/lxd_server/08-snapshots/index.html_03a83a1f199d41fe9be9d9d88336ae0acc6286aced845913a80824f17c06c4f0" +path = "../build/minified/site/zh/books/lxd_server/08-snapshots/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/lxd_server/08-snapshots/index.html_br_3293f8ab97d2069a7660291ec79bc285ac9eaa2623c24b822c585f7cebad2c7d" +path = "static-publisher/static-content/file4180.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/lxd_server/08-snapshots/index.html_gzip_110b7914391803f416f4c168a4571fd12508f9dc5904f80bd1abf92852bd1c4c" +path = "static-publisher/static-content/file4180.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/lxd_server/09-snapshot_server/index.html_3a9b4e00a374b4235b59bb751f0e0b16b483032c4c3101f21361e763aed86052" +path = "../build/minified/site/zh/books/lxd_server/09-snapshot_server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/lxd_server/09-snapshot_server/index.html_br_dddc8e80c0b2711ee7d21fe71fd9b04a87e577bf87f215da9c40602ca44737b0" +path = "static-publisher/static-content/file4181.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/lxd_server/09-snapshot_server/index.html_gzip_73ca9ce09b0cd347a641d5805c85b238681ea75cf018e35bf5fe4686cda51d71" +path = "static-publisher/static-content/file4181.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/lxd_server/10-automating/index.html_a3f8e018c03b454c762141b1a00e0b41934728e245fa51fd635ff1f21cb67e2c" +path = "../build/minified/site/zh/books/lxd_server/10-automating/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/lxd_server/10-automating/index.html_br_832adfc400f9e350507abba0938f3a0e8e1a2b15785ccdfbd8766bebe78bfc36" +path = "static-publisher/static-content/file4182.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/lxd_server/10-automating/index.html_gzip_0f0f2329d67950292d87c9fcad55444b9321fb9b2ec28ef67248fc978e9ea9b5" +path = "static-publisher/static-content/file4182.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/lxd_server/30-appendix_a/index.html_0f86e74b621fc89a4595341eaeccdc62bfc130d8de2fc8878b1f55b536e81aaf" +path = "../build/minified/site/zh/books/lxd_server/30-appendix_a/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/lxd_server/30-appendix_a/index.html_br_c342e890cdfbc87793eb5bcaa91f8eb2ec41582f4fadbeaeeb5fc31c2fe87161" +path = "static-publisher/static-content/file4183.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/lxd_server/30-appendix_a/index.html_gzip_5a9856956a37f6e18095be4909ad80626643fd68f28eb917fa04bfb49f4b90d5" +path = "static-publisher/static-content/file4183.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/nvchad/additional_software/index.html_57c8246c57de8a8323763d6cfcdea32125bfae7d7b5c49da36a8aec4528e87bd" +path = "../build/minified/site/zh/books/nvchad/additional_software/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/nvchad/additional_software/index.html_br_aa87e233687ea8a3476966ba802ac581f68688938d568637d8a662d58403bbf2" +path = "static-publisher/static-content/file4184.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/nvchad/additional_software/index.html_gzip_6c6e9ee023a616e67adad50e684294e4805c3f0f9b57fe27303426f3624c33e9" +path = "static-publisher/static-content/file4184.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/nvchad/index.html_c13e525e8f65d7902ec723496a1766725bbb4d5312b4ef919097dffdff5514a3" +path = "../build/minified/site/zh/books/nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/nvchad/index.html_br_98f1bf62f25e5617b55bf643fa95ce9be19c68ba7fa88cb691b5317814fedd85" +path = "static-publisher/static-content/file4185.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/nvchad/index.html_gzip_531b65cc869c07cbb6fa2d145f8c79b43684051973a94e0af119afbbd507fdc6" +path = "static-publisher/static-content/file4185.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/nvchad/install_nvchad/index.html_6a1c7f069fbc428b84cad7a1287a2596d3639abacc0e4c5b60e3fd529420c8f4" +path = "../build/minified/site/zh/books/nvchad/install_nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/nvchad/install_nvchad/index.html_br_4b1e00b2ab5d454532585ab36612bb5f11cd19e957e3c51e92f493cf38d7ccd1" +path = "static-publisher/static-content/file4186.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/nvchad/install_nvchad/index.html_gzip_796aa2a5af9e9ecc3fbd0c35b6573d49fc0703263bf58f3ffb663f2bba68e22a" +path = "static-publisher/static-content/file4186.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/nvchad/install_nvim/index.html_c3e1360602d86c44e73e37cd01c5a3ecb651154c59d981a6fb466e57779d5ef7" +path = "../build/minified/site/zh/books/nvchad/install_nvim/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/nvchad/install_nvim/index.html_br_37c3c03c76d5f83a93d2b445f60e6e8280b4f81d2755f07e79a954be674d17d6" +path = "static-publisher/static-content/file4187.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/nvchad/install_nvim/index.html_gzip_80a5703fe19e27973f125f41616d7570352e9b8eded84c3842be8f9c14c90adb" +path = "static-publisher/static-content/file4187.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/nvchad/marksman/index.html_922966315c3d1827268c95675834f38898e2269f5557601ae058b86cad4229f0" +path = "../build/minified/site/zh/books/nvchad/marksman/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/nvchad/marksman/index.html_br_781c0e99a6583d654730c19ceaf67d8de33ca87d4c5e1007257dc687f31f59fc" +path = "static-publisher/static-content/file4188.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/nvchad/marksman/index.html_gzip_c3922235d107d9f112244aa85b2dce0d2010c30010b5fed9cb54905eb3496964" +path = "static-publisher/static-content/file4188.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/nvchad/nerd_fonts/index.html_f8e5aaee7be9636e7cf7f301975a343ca6a0b36a86cf540984d2a04c0b3b923a" +path = "../build/minified/site/zh/books/nvchad/nerd_fonts/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/nvchad/nerd_fonts/index.html_br_53a57346ae4b2da94e7a38e00bd9d2ba025207c6faeccc0d8e6968c1eab76dca" +path = "static-publisher/static-content/file4189.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/nvchad/nerd_fonts/index.html_gzip_881c0a2afc5319fa50ddfacaf72eb301148a9d61e813b4348b1446b640c98abf" +path = "static-publisher/static-content/file4189.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/nvchad/nvchad_ui/builtin_plugins/index.html_55f24f838c4318e19d1022da874da24ea2a12513e3fc2a8692962cf7da02b118" +path = "../build/minified/site/zh/books/nvchad/nvchad_ui/builtin_plugins/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/nvchad/nvchad_ui/builtin_plugins/index.html_br_411a57eb97c35b8a5109877a3a69e084d710a1576283b58ac63435ff6d15e429" +path = "static-publisher/static-content/file4190.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/nvchad/nvchad_ui/builtin_plugins/index.html_gzip_7f1f66bce519574b7985c57cad42f5f7f22a6a36892140bb9ce6d05fc735cdb0" +path = "static-publisher/static-content/file4190.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/nvchad/nvchad_ui/nvchad_ui/index.html_5479b2f5dc0c56c95ba903923ae877720988740b83c8bd2641587d89fa85c0a2" +path = "../build/minified/site/zh/books/nvchad/nvchad_ui/nvchad_ui/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/nvchad/nvchad_ui/nvchad_ui/index.html_br_91ee688f525285861adb0902ba8498f595ab29274cd1d5718e3f8372937c5cdf" +path = "static-publisher/static-content/file4191.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/nvchad/nvchad_ui/nvchad_ui/index.html_gzip_34ce6b3baf8eb2a19bfd7526248d762439c64d9160b5b6829b3a94565f63da72" +path = "static-publisher/static-content/file4191.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/nvchad/nvchad_ui/nvimtree/index.html_6c80c8adc883479f81b6a989adcf8221ebf4d20ff77b478e10a93da153c18b16" +path = "../build/minified/site/zh/books/nvchad/nvchad_ui/nvimtree/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/nvchad/nvchad_ui/nvimtree/index.html_br_d7727e3b47c61486d335493dda7d6d416609cc0c195c53948b82b60a2256534a" +path = "static-publisher/static-content/file4192.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/nvchad/nvchad_ui/nvimtree/index.html_gzip_6fe63fdd21940a7dd99dc5244931f285d3698994858282228b7ad0d6938a60fb" +path = "static-publisher/static-content/file4192.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/nvchad/nvchad_ui/plugins_manager/index.html_4e9597b992488afda19df71e9b94389f2e14a40c839e5b32ecf49770cc2cd611" +path = "../build/minified/site/zh/books/nvchad/nvchad_ui/plugins_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/nvchad/nvchad_ui/plugins_manager/index.html_br_4718a3ef1e56d96e83805f78019b50b978e29585c5a8f903dcfa465bc6797ca1" +path = "static-publisher/static-content/file4193.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/nvchad/nvchad_ui/plugins_manager/index.html_gzip_1fa237e66139996690c980ed85219e32fda212f6fe183a03754353c19faa03fd" +path = "static-publisher/static-content/file4193.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/nvchad/nvchad_ui/using_nvchad/index.html_32f73960373cc95a5057986c8ffc55df6f675f204182629f8d5ad70e6769379c" +path = "../build/minified/site/zh/books/nvchad/nvchad_ui/using_nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/nvchad/nvchad_ui/using_nvchad/index.html_br_a79b913ed8d0b5f830bf401769b50b9ee410f0f7d12b5c1a9fa82b965ba54492" +path = "static-publisher/static-content/file4194.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/nvchad/nvchad_ui/using_nvchad/index.html_gzip_1c7af6c89ed5d4204dc7b198feaed03210a573c92f9dbebc5e5fdb7b3362e4ca" +path = "static-publisher/static-content/file4194.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/nvchad/plugins/index.html_9be8395e3311e571faf4fef268e531cc5ff6f3c5ac32b8c1ec7e979c34ee98df" +path = "../build/minified/site/zh/books/nvchad/plugins/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/nvchad/plugins/index.html_br_b73fbda37498c97c0b1f660f86036e4deeecd27ec27637ef06327b5deb35d906" +path = "static-publisher/static-content/file4195.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/nvchad/plugins/index.html_gzip_433d453d97064f7c62b618993ae2dcd3c60b1a7490a7be48f0c8f8af9d2fa50f" +path = "static-publisher/static-content/file4195.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/nvchad/plugins/md_preview/index.html_cf3b227a0b2c74e591b02d1137670b3a5927369256c3788f4e59d123adb27afc" +path = "../build/minified/site/zh/books/nvchad/plugins/md_preview/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/nvchad/plugins/md_preview/index.html_br_747025c7bdffad7219f9243cd580c3f0f7cbdadfdd9f08a71bdc9f78dc3dca55" +path = "static-publisher/static-content/file4196.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/nvchad/plugins/md_preview/index.html_gzip_963bc9d0706eebd678f5dc721b4e1e6a8feb2bf9c11b8ccb4cb1af740fad855a" +path = "static-publisher/static-content/file4196.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/nvchad/plugins/projectmgr/index.html_b3ee380662a30c8776baec91b7485bf3fe0374a3583cf170202778a8ab60fb95" +path = "../build/minified/site/zh/books/nvchad/plugins/projectmgr/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/nvchad/plugins/projectmgr/index.html_br_2e07c696c61024e76b13cc1fcf06a4b3b854faac0d19d0479ccbe4da433a3758" +path = "static-publisher/static-content/file4197.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/nvchad/plugins/projectmgr/index.html_gzip_99cd595cbca7840b7756aab66ac0b2386e1ace67533ea90825169dded2e20348" +path = "static-publisher/static-content/file4197.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/nvchad/template_chadrc/index.html_e0bfdaee99573001550f5fbaf434e9310bfe29c7204ed20f39c0562cd2eeae4d" +path = "../build/minified/site/zh/books/nvchad/template_chadrc/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/nvchad/template_chadrc/index.html_br_805fe618258f0b0dc262b662b94644076ad7003256faa6ed097194d37bc83304" +path = "static-publisher/static-content/file4198.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/nvchad/template_chadrc/index.html_gzip_08aa094389181924baf144db133cd4f15f5e2e6e219acf53c94076a1d00da8fa" +path = "static-publisher/static-content/file4198.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/nvchad/vale_nvchad/index.html_83fab54789fd5d89d6d16913e2cea349845a01e50a819aab32b512b365df1c46" +path = "../build/minified/site/zh/books/nvchad/vale_nvchad/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/nvchad/vale_nvchad/index.html_br_05d32fc42cce54c7f01f9eedb4a969ff44c47245dab3e1425b5a62ca3404f5cf" +path = "static-publisher/static-content/file4199.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/nvchad/vale_nvchad/index.html_gzip_0aa14131a71eae4dd75589efb079a7bf7fb0f3513d8fe6781f0ca61979bbc491" +path = "static-publisher/static-content/file4199.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html_36e15e9c193d3bd105057c321311baa2e5289db462a0a544a5c2c8ae34b9536d" +path = "../build/minified/site/zh/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html_br_400c9c4296405cff80526e5ca379645463db0e776c9996c70d4ddc69a5ea7894" +path = "static-publisher/static-content/file4200.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/sed_awk_grep/1_regular_expressions_vs_wildcards/index.html_gzip_9f81ab00e33ffa40198bf8b5400a75de5b27b280ab6b92b2c90f1c338839cd3f" +path = "static-publisher/static-content/file4200.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/sed_awk_grep/2_grep_command/index.html_eb82b9f19b9f8c1eef76d019d5985ddba0bf86a486d7244e3964d09cc5021536" +path = "../build/minified/site/zh/books/sed_awk_grep/2_grep_command/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/sed_awk_grep/2_grep_command/index.html_br_89ddbe080e5811c830b214afd2b972c3a7d04196e1056b3e723c089a469cf231" +path = "static-publisher/static-content/file4201.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/sed_awk_grep/2_grep_command/index.html_gzip_34e58b588dbc994ba1d1d666d7dbe9eb0591e89a048ef6cf016c254bb6cae246" +path = "static-publisher/static-content/file4201.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/sed_awk_grep/3_sed_command/index.html_657bac0a02d94788f9087be29e2393a7f1bb67966917373902b6c1ca278a112f" +path = "../build/minified/site/zh/books/sed_awk_grep/3_sed_command/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/sed_awk_grep/3_sed_command/index.html_br_b60d1eff677d992e52ecc43be8710bab3840e69f104712a82dbb71773230f2a1" +path = "static-publisher/static-content/file4202.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/sed_awk_grep/3_sed_command/index.html_gzip_eb94c52c913341257dae7aee993637e0645457bcba4b1e9e0191470e4b5cc6b3" +path = "static-publisher/static-content/file4202.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/sed_awk_grep/4_awk_command/index.html_8755ae2953af2cbb103424508fd4396bb3a59093527b56ee035f1c9ccf246888" +path = "../build/minified/site/zh/books/sed_awk_grep/4_awk_command/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/sed_awk_grep/4_awk_command/index.html_br_a422c3ebfc56f148c10b09c3dba0c1645273e3bf90d63f96bbe5140b2cbdc4e3" +path = "static-publisher/static-content/file4203.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/sed_awk_grep/4_awk_command/index.html_gzip_df91873d738ece8e583662b5de5b47d8d47fd1a94f78ac589546db3303b535a3" +path = "static-publisher/static-content/file4203.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/sed_awk_grep/index.html_15dd36f6c03fd8888c76aa9a5d28da17d075913c2baaa774c87e0cdcb4ce1bc6" +path = "../build/minified/site/zh/books/sed_awk_grep/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/sed_awk_grep/index.html_br_d21a44cf89f41242819cb87d8430009d9febe12ffe06bb899fb28084843741c8" +path = "static-publisher/static-content/file4204.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/books/sed_awk_grep/index.html_gzip_81372853cea930974c0740b5b779eaba3722747e32f8d96db15669467719da12" +path = "static-publisher/static-content/file4204.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/containers/docker/index.html_9dbb2180df36bc394b395605065b33944a46f6d973f5badc264e9f3f3eb2b3da" +path = "../build/minified/site/zh/gemstones/containers/docker/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/containers/docker/index.html_br_f0ec16fb385e9f137b7d6f1339c635fa4b6bbf3a3a54cc072036173bb2df08db" +path = "static-publisher/static-content/file4205.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/containers/docker/index.html_gzip_25f5a9fcf84e556a256f974801565f5d56c8acda257adcb90ea054665a091ba9" +path = "static-publisher/static-content/file4205.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/containers/podman/index.html_427ad00f21125d57935e0aed5d5ce18ea52766642a0d34a852fdd64a83178020" +path = "../build/minified/site/zh/gemstones/containers/podman/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/containers/podman/index.html_br_cfb653fc6108dc1de8731e787b93f9208038ba55c802052b1379e8b72fa926b0" +path = "static-publisher/static-content/file4206.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/containers/podman/index.html_gzip_7a424f8d2fceb221ee08953a2919c8ef8c8f7dbcc756b0f14b30df3db6687c61" +path = "static-publisher/static-content/file4206.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/core/view_kernel_conf/index.html_e02ebc3680693e07af762521729a56f846055b89dfcb398e6662be4883d87496" +path = "../build/minified/site/zh/gemstones/core/view_kernel_conf/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/core/view_kernel_conf/index.html_br_66a398faa4d8cfbe88ebd097842f8050de55d2c3972b0292b766febb6c8c4a96" +path = "static-publisher/static-content/file4207.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/core/view_kernel_conf/index.html_gzip_430af0291a1681adb63edb2d97b8acc5a92f7c20211012328dfe3a1efac8b8f3" +path = "static-publisher/static-content/file4207.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/dnf-swap/index.html_bad723d9f5b82beaa3bf8a7ef43dc5b4a6f7a579acf18748054041ffe0e9cc01" +path = "../build/minified/site/zh/gemstones/dnf-swap/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/dnf-swap/index.html_br_cc43b3dda0c83b5674a8b389f1e1b59011c50654411be71e2a19f67bd1268752" +path = "static-publisher/static-content/file4208.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/dnf-swap/index.html_gzip_e1765ed36bb419f5999e2426b040039e7a8a5b1c8eca1a82ff083fbb0f08a1e5" +path = "static-publisher/static-content/file4208.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/gemstone_template/index.html_64a80c156a8b524eb332e1920cdd1982ee6cf4e57868109f02ba221221fdff7e" +path = "../build/minified/site/zh/gemstones/gemstone_template/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/gemstone_template/index.html_br_3f9a47c74271cceb639e67467b92f89814f54a5897fc25a2f21f07e4c80f3986" +path = "static-publisher/static-content/file4209.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/gemstone_template/index.html_gzip_95840e2725976e8208b99cd49f8d768644090c6eb2fc5a80175a9212bcbfc3b4" +path = "static-publisher/static-content/file4209.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/git/00-gh_cli_installation/index.html_6c2285bb6b06bc733d65d799d565ad80aff58a8f7e8fc3db69001b851ffbd44d" +path = "../build/minified/site/zh/gemstones/git/00-gh_cli_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/git/00-gh_cli_installation/index.html_br_e97609f58f58c61f6a7763a1029268b41fb1f3b1d6cbffbb325a3fd2e0e2f896" +path = "static-publisher/static-content/file4210.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/git/00-gh_cli_installation/index.html_gzip_e099285fd5e1a7981466cb02a466dd6812362bde5cc322e7aace2cf06f7b497a" +path = "static-publisher/static-content/file4210.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/git/01-gh_cli_1st_pr/index.html_831fd3f29d250c5e61b31ea63209dbdbe640e53e8358817a6055cecc6a6aab64" +path = "../build/minified/site/zh/gemstones/git/01-gh_cli_1st_pr/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/git/01-gh_cli_1st_pr/index.html_br_193e3da9a099bb8c0af9e6893de3d768c61076b4493ad68a23f4c57c9bd27ad5" +path = "static-publisher/static-content/file4211.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/git/01-gh_cli_1st_pr/index.html_gzip_5fd6b00ce665062b02a2741c12d0e898e2479519f159ae58217798ae9ad537ef" +path = "static-publisher/static-content/file4211.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/git/02-gh_cli_edit_pr_title/index.html_c52ed02b7a7ea60259c7fc559fafa4472842c5f487e3869956f1d2d97bb171d8" +path = "../build/minified/site/zh/gemstones/git/02-gh_cli_edit_pr_title/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/git/02-gh_cli_edit_pr_title/index.html_br_f2be7896ecf145e41bcd62d03a7382f5cd610f4d288b429b61840864025ce859" +path = "static-publisher/static-content/file4212.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/git/02-gh_cli_edit_pr_title/index.html_gzip_975302d295d3a32edc45e13bf072b04e4fd78e177a22d2446914fd96361da985" +path = "static-publisher/static-content/file4212.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/git/02_github_web_edit_pr_title/index.html_6a080f4a6945606a68ed476a9d414a9dc5f4d99485dfac1888e7df7f89e72ed7" +path = "../build/minified/site/zh/gemstones/git/02_github_web_edit_pr_title/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/git/02_github_web_edit_pr_title/index.html_br_574656b93b47dde2cb90f01de51555c5acd70370faf1cb7ed1d8832c30455a88" +path = "static-publisher/static-content/file4213.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/git/02_github_web_edit_pr_title/index.html_gzip_1cba1c3ce093fff77fdf4069f8ba66f83c0fe59d404d2834c9200e924cbf9e6f" +path = "static-publisher/static-content/file4213.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/git/feature_branch_workflow/index.html_d62dedf9a4801db9569bfd2ee4236d7c5ec614a4c5655e56ae2c897c8e694c2d" +path = "../build/minified/site/zh/gemstones/git/feature_branch_workflow/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/git/feature_branch_workflow/index.html_br_9068d33b2601cad0b21471e3936e38d1286b4fb0b18eeb3ce3b64dc07bb27b26" +path = "static-publisher/static-content/file4214.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/git/feature_branch_workflow/index.html_gzip_1a07ddf6b0df5c2405f77737fa707d30a6f91ff8f0405e91a6b5bb25468b0f93" +path = "static-publisher/static-content/file4214.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/git/fork_and_branch_workflow/index.html_02e6dc6fa8c96eebc8738ae82d653e33c95f0e21a8f7b7ad2c1e366a19bfba14" +path = "../build/minified/site/zh/gemstones/git/fork_and_branch_workflow/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/git/fork_and_branch_workflow/index.html_br_0dbfd112ff669a43145befb95b18bd6fc6c1037c2d31c28480a0cd9b3d3d3aa9" +path = "static-publisher/static-content/file4215.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/git/fork_and_branch_workflow/index.html_gzip_bac1195070e4d04e841c546e54bc47ea770e8f1bc89522708eb0ea13d09bb5ae" +path = "static-publisher/static-content/file4215.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/git/git_pull_vs_git_fetch/index.html_075a312f0c644eaf0c6951bb06e2c483028ab638fa270f794966f02fa8c45f3f" +path = "../build/minified/site/zh/gemstones/git/git_pull_vs_git_fetch/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/git/git_pull_vs_git_fetch/index.html_br_f6916afdd48750a867eb1b51996fdf54f48559405f597fe32d330f839f44c4b9" +path = "static-publisher/static-content/file4216.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/git/git_pull_vs_git_fetch/index.html_gzip_51c74ec746f21863f99e67403b2a66c3fed8e0926977b4c7f09bd79e2f143879" +path = "static-publisher/static-content/file4216.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/git/git_remote_add/index.html_8a23cf3b2a475d2a5f8c0052d01466f38fd91036dc3313c240ecd2aec6d495a2" +path = "../build/minified/site/zh/gemstones/git/git_remote_add/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/git/git_remote_add/index.html_br_75e7c8a02562ca21dec5b9b6d911ea7c4f4fb5b2317eabc5aed497a3e3d83586" +path = "static-publisher/static-content/file4217.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/git/git_remote_add/index.html_gzip_690beb3ef73fe972019666b4a5c6a06de89e32c0b844b2380113b1e897c328e9" +path = "static-publisher/static-content/file4217.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/git/tracking_and_nontracking_branch/index.html_784dd158423075892fc6024861792f9b3620864e5cec2aa2cd57ce64a3dab497" +path = "../build/minified/site/zh/gemstones/git/tracking_and_nontracking_branch/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/git/tracking_and_nontracking_branch/index.html_br_438f281a244d352e17b63e7f787e3aaee5b66b3e1a7e339310635af75f870407" +path = "static-publisher/static-content/file4218.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/git/tracking_and_nontracking_branch/index.html_gzip_78d9babcc7ad5972fea61569e754757d2809a5539585105a6eb43df439f7b665" +path = "static-publisher/static-content/file4218.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/htop/index.html_aaf6571bb291c5dcccd1efdf55a8574accec578267c4d139d388ad78f26416c8" +path = "../build/minified/site/zh/gemstones/htop/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/htop/index.html_br_606e1914e4139cb5738aa0f2f78aa92610bf1e6d2185358b2b3b2f12db432d70" +path = "static-publisher/static-content/file4219.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/htop/index.html_gzip_75061d7d32e146fd9be9c3b46496dd2eac614f5b5e5c849e260d7fa5bd30036a" +path = "static-publisher/static-content/file4219.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/https_rsa_keygen/index.html_1cf2f0abfa81108da8992eb371caec08a3a5cc93fa48d3096161014fe73e652a" +path = "../build/minified/site/zh/gemstones/https_rsa_keygen/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/https_rsa_keygen/index.html_br_5f51f8b4b04320a11830b48b8badfdbef02b41e7bdac314cbb0b16e9afdad0ea" +path = "static-publisher/static-content/file4220.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/https_rsa_keygen/index.html_gzip_81bb15dc20d2d5536f064052920379693f659a0cf01691edc07f7db4c7575562" +path = "static-publisher/static-content/file4220.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/index.html_09dd98ff546ea5e553c43e4c2dc6a9c2f6857a0ac1d525c22b706e17c6467ea0" +path = "../build/minified/site/zh/gemstones/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/index.html_br_cf2979e7f10b2d2bdc6eb200ac0aca77341c9f4335d8a83a90154af2b2c67e86" +path = "static-publisher/static-content/file4221.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/index.html_gzip_ba6b0c480db0f8b12068e724f580ced3a6bb52283d2e764b483f1a85b835f032" +path = "static-publisher/static-content/file4221.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/markdown-demo-v2/index.html_c49e95d3ea8ba41028a875d310c78aae30b6d43cf82cbfb322078383a2827c8b" +path = "../build/minified/site/zh/gemstones/markdown-demo-v2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/markdown-demo-v2/index.html_br_c94f551f0ca1948dddd5fd76fee26c5bfb5d7537f2cbaf62d77c070859fef4c0" +path = "static-publisher/static-content/file4222.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/markdown-demo-v2/index.html_gzip_9f645279a319befacbd50dd13cdcf8d20feafea96e03be35f8bfc1b78a7f8100" +path = "static-publisher/static-content/file4222.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/network/RL9_network_manager/index.html_27da84f0167673863e92e92da3cf95825eac686652d1a860c8b291f6aa212c9a" +path = "../build/minified/site/zh/gemstones/network/RL9_network_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/network/RL9_network_manager/index.html_br_c09d58386130e30435d8b7364c0eccdc04187247d04bbf478d20897cda18154b" +path = "static-publisher/static-content/file4223.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/network/RL9_network_manager/index.html_gzip_e7410a529f68388f49754fd280eabb11f11a7f13a539482639ecb0b6fd09fe64" +path = "static-publisher/static-content/file4223.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/network/iftop/index.html_8e721c372076a58b3b5af1849ad39fdb02a4230d91c2d46c6eece3a126eecca5" +path = "../build/minified/site/zh/gemstones/network/iftop/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/network/iftop/index.html_br_4260affebe48e3ea83c2b3ceed595c52156929668c5798187c3e64010ec77e2a" +path = "static-publisher/static-content/file4224.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/network/iftop/index.html_gzip_021299b88ad5e79c3436177a38d1ca9f72f4184e6b8eb68a8ee97b4da4c7817d" +path = "static-publisher/static-content/file4224.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/network/mtr/index.html_8000d1f0e51b28fda4e7f47fc3125cecb7a44d5692130bfe50af2f6b3eb68e30" +path = "../build/minified/site/zh/gemstones/network/mtr/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/network/mtr/index.html_br_ff9423e3d2655744c3bf3f8227d9d257c78f675a7a282a61e6f44eec0918675f" +path = "static-publisher/static-content/file4225.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/network/mtr/index.html_gzip_8cd95dc994f5c44733dfb650b41455da48c0b3f70e0d6d1757048b40579586f9" +path = "static-publisher/static-content/file4225.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/network/nload/index.html_44a5c1e677ac69f9f585588587fc268a8fa0ffa1d9b9179b87bdf2be03028e04" +path = "../build/minified/site/zh/gemstones/network/nload/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/network/nload/index.html_br_0681be518b33e5a56f36831a8d0ae40993d43f9b1595ae519d0349759ac53ff6" +path = "static-publisher/static-content/file4226.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/network/nload/index.html_gzip_6941f9844e4561a88e63eda8dd8624f4a080c1b0edde11435ac1db54479851c6" +path = "static-publisher/static-content/file4226.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/network/nmcli/index.html_845526fe6e93f279d04803dc37c299b53cfc32dfb8bc6afa15c5b55b2a294887" +path = "../build/minified/site/zh/gemstones/network/nmcli/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/network/nmcli/index.html_br_86c807ba3072f0b930730a05d0b5e975f24c778951f860ce72bda97fad1aa12c" +path = "static-publisher/static-content/file4227.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/network/nmcli/index.html_gzip_2747edd8195ae0ce85bc29ef68755edf969274b1e9cdfcbdd18205a5c098d2d2" +path = "static-publisher/static-content/file4227.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/network/nmtui/index.html_ba74ca2021104beeaf333e5ab55d2ba18cf4edd547d0c9249fd6c0a7fbbcceb6" +path = "../build/minified/site/zh/gemstones/network/nmtui/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/network/nmtui/index.html_br_0ce69183dd4e29f3b5e07a3c0d17b0fefcc2c755faefece6d6bb31b2900c4cd1" +path = "static-publisher/static-content/file4228.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/network/nmtui/index.html_gzip_f2a7d3a61819c2ab0b252fb60710b17fb7b75caaa8dfea2502190e9f9521da1f" +path = "static-publisher/static-content/file4228.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/perl_search_replace/index.html_f5c07e2bde61937e4b880f2a74b52d3438d0a79657d6ec300d6a4be8d7d8fab3" +path = "../build/minified/site/zh/gemstones/perl_search_replace/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/perl_search_replace/index.html_br_ad0419a195a7131447b3a3e75f11ae3c09326f8cf4cb221e5b6a718370e1badc" +path = "static-publisher/static-content/file4229.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/perl_search_replace/index.html_gzip_2e49500f9f6abd00ff60e009281d49648b200825e2358978263977de4916ba2e" +path = "static-publisher/static-content/file4229.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/rpaste/index.html_bf19679267e6ea5b0e671e69000ae78ab919d668fd4512aa2dd305c8e02d5f39" +path = "../build/minified/site/zh/gemstones/rpaste/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/rpaste/index.html_br_990c431b46b506c44370b78d9d91e1f170d628d1f1d6a11e84fecad597d9d0b7" +path = "static-publisher/static-content/file4230.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/rpaste/index.html_gzip_578fb27f223d8de25d68a535cc916aeb48ceea163487f96cdc26d287dbb8564b" +path = "static-publisher/static-content/file4230.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/scripts/NoSleep/index.html_af44327820ca447782327494f48891d3ff7c1cdd0993e994529b2ca1c387c829" +path = "../build/minified/site/zh/gemstones/scripts/NoSleep/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/scripts/NoSleep/index.html_br_66d4a069d7aac72edbacdebc42583a9ffc250f8d28a55f40721b9b31b0b92943" +path = "static-publisher/static-content/file4231.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/scripts/NoSleep/index.html_gzip_6fed0d9e6c8cea2849f698621577493821a1174654866b7267706ed3c9cfc3db" +path = "static-publisher/static-content/file4231.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/scripts/bash_stub/index.html_6c1a064e59f58ca443a8321126909675e7dee6d0e15bf5ae5668337fe228922c" +path = "../build/minified/site/zh/gemstones/scripts/bash_stub/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/scripts/bash_stub/index.html_br_1eab39bcd594b689cfa182d2d923f06cdcf96bf5b2fb66438d37f4630f72d5cc" +path = "static-publisher/static-content/file4232.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/scripts/bash_stub/index.html_gzip_9516d3e1abd609d5f6bcb05a00fa5524ec0dd2a22bd7f7e8670a3ecc2990974e" +path = "static-publisher/static-content/file4232.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/sed_search_replace/index.html_32f1eb3dc0f4823250aed911233c2ba8ed9cb2d9447d447224eca6a85a2ca634" +path = "../build/minified/site/zh/gemstones/sed_search_replace/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/sed_search_replace/index.html_br_6615b9516a7e6c9601fa73987a977259a8a996bd469ac16a22989d39f12493ab" +path = "static-publisher/static-content/file4233.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/sed_search_replace/index.html_gzip_c80ecf2e4d2840637f3baf6bb4bbb5131ed28d4d89cba12496b35c16810d8202" +path = "static-publisher/static-content/file4233.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/setup_local_repo/index.html_c5ad3cca6af911c88ab0ef264afd3b0f1426ec50d75f76ab9bcc6feb953d1452" +path = "../build/minified/site/zh/gemstones/setup_local_repo/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/setup_local_repo/index.html_br_d4246f4d9ae65e7578b3a329f1cac6c9426f77c4551b37e93a8504fe6b9d1e45" +path = "static-publisher/static-content/file4234.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/setup_local_repo/index.html_gzip_f9e1c69384ef0c03668683019f21fc49391882adc3ca36fc40987f66b8758d24" +path = "static-publisher/static-content/file4234.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/string_color/index.html_997e032d9bac06d7a922a4feed2394efcb51335583fdc17b331609083ed68cad" +path = "../build/minified/site/zh/gemstones/string_color/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/string_color/index.html_br_d2044f651564cf252f0d9f480bbd54b325ecf3dc2ee68f366c4291c513799a38" +path = "static-publisher/static-content/file4235.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/string_color/index.html_gzip_24ff306b092fa1c77b3b902beb1a2a19dbb8df659ac1f6d2fdaac326731d734f" +path = "static-publisher/static-content/file4235.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/systemd_service_for_python_script/index.html_79615a809c7cc2f666928023e2f67a7144270b967485d7f3cc296a0b4ad2da8e" +path = "../build/minified/site/zh/gemstones/systemd_service_for_python_script/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/systemd_service_for_python_script/index.html_br_0ebeb78f59da64983ae01b6225d2d7fb1ab9a0f2c24742bcd5129afbe0f51c37" +path = "static-publisher/static-content/file4236.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/systemd_service_for_python_script/index.html_gzip_75e35616e7e2f8e4d03175ba886bd6104506fc8eef37dde0c4bbf64b38a4235c" +path = "static-publisher/static-content/file4236.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/test_cpu_compat/index.html_b8e17b716c9b8b88deb81c1641bcafaca8c22929a83469aeb23001d8b34eb887" +path = "../build/minified/site/zh/gemstones/test_cpu_compat/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/test_cpu_compat/index.html_br_0431493e29fccbcf16b2e9cd91c3425cd11caec575828da959f98fd001484ccb" +path = "static-publisher/static-content/file4237.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/test_cpu_compat/index.html_gzip_8dd69cdf00fcb41f2ae27c382de00d03b143ead918ccff0273a33c868636be44" +path = "static-publisher/static-content/file4237.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/torsocks/index.html_28bd35db1438876ac8f31e0348dd1f5a771dd5b9415367919533419c9c1d47c0" +path = "../build/minified/site/zh/gemstones/torsocks/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/torsocks/index.html_br_4074093cd31efebf5ee340c50392867a65f8af55a3a11634f76a499e1254142d" +path = "static-publisher/static-content/file4238.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/gemstones/torsocks/index.html_gzip_ca0839544a96499974123c1ac7739bc39a5440b18214381e59517eeb29946fca" +path = "static-publisher/static-content/file4238.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/8_6_installation/index.html_2b0f5aa1447802933df4b663958e40d26aaf6c2fda56aa5ae7a6040029dbaac7" +path = "../build/minified/site/zh/guides/8_6_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/8_6_installation/index.html_br_c84355dd4cea2ccd1bd94c5eafbdfc3651cc24e8c2019029ab87da586e020025" +path = "static-publisher/static-content/file4239.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/8_6_installation/index.html_gzip_3434ede1316bca2e45c1acd71a85dfa004216b2a1ac5376898ed63414de21eab" +path = "static-publisher/static-content/file4239.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/automation/anacron/index.html_e3eefee9c7dd807508102e0fa6be3411e687d9f006fbb77b9e5bfc2d2d0fcac6" +path = "../build/minified/site/zh/guides/automation/anacron/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/automation/anacron/index.html_br_f4ff5d5f68357bb81fcf0a8493a6a83752ff283d5d60840dcbe2abdcc1a4fe8b" +path = "static-publisher/static-content/file4240.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/automation/anacron/index.html_gzip_959d32a53ebb517c1ad56bd17d4511725fc51721846749a2b56a6b34aec88aee" +path = "static-publisher/static-content/file4240.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/automation/cron_jobs_howto/index.html_61d52a413f0d05e9efe253e5f8337674c843c78ea3fd16ddd8f94504e484ebb3" +path = "../build/minified/site/zh/guides/automation/cron_jobs_howto/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/automation/cron_jobs_howto/index.html_br_8127d1343adabe0ca09f6b86b004bd00712ade352f3b33b28dcf96f31206f64a" +path = "static-publisher/static-content/file4241.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/automation/cron_jobs_howto/index.html_gzip_68e7521482a480174999f985167433958a757ede1c18a3d410412b0cc6d9257f" +path = "static-publisher/static-content/file4241.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/automation/cronie/index.html_770d427172440675ad4a755f635716429ecb3a68944b9e378c2b68c47e60be23" +path = "../build/minified/site/zh/guides/automation/cronie/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/automation/cronie/index.html_br_1246722bbf9b46286bb1a1217a334dae892358783ae322f6153710fc6df768c5" +path = "static-publisher/static-content/file4242.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/automation/cronie/index.html_gzip_9a2c6596e03c80e2654d76413ea42ca8188c652aecdaf40cbe69208eebb561f2" +path = "static-publisher/static-content/file4242.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/automation/olivetin/index.html_460ee5269cefc82c54e0ae923d66a3a4e8762aae4469f2600c743d62cadc674c" +path = "../build/minified/site/zh/guides/automation/olivetin/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/automation/olivetin/index.html_br_d9883067d52c3873b02bea8ab92b52e815c41387e9d9fc8df4bd92671b24e55a" +path = "static-publisher/static-content/file4243.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/automation/olivetin/index.html_gzip_7968f48a2f25cfe664921a7a852b41b84d03f36b4e7b1f0b6f4909e0af231b23" +path = "static-publisher/static-content/file4243.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/automation/templates-automation-packer-vsphere/index.html_c7c26e518bc4bf6f8d3e2d304039a011668c01f8c4a126a7caf9252108037688" +path = "../build/minified/site/zh/guides/automation/templates-automation-packer-vsphere/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/automation/templates-automation-packer-vsphere/index.html_br_a29779bd0a2fb11ac16ff1effe5c5e07de773b72d5b5a5691b445cce3d5161b9" +path = "static-publisher/static-content/file4244.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/automation/templates-automation-packer-vsphere/index.html_gzip_a80b02fade221e38679c656ca409327aa3540d7f1846024b02d0fece0c409189" +path = "static-publisher/static-content/file4244.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/backup/mirroring_lsyncd/index.html_3a84eff2308c578a3d8de1d7630e7296610fe5d324d6e5ef20751a6436dbe395" +path = "../build/minified/site/zh/guides/backup/mirroring_lsyncd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/backup/mirroring_lsyncd/index.html_br_65dd5de4e522877438ee655c3e2b68df3b1e7123de8c27d37581e5d3368be6dc" +path = "static-publisher/static-content/file4245.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/backup/mirroring_lsyncd/index.html_gzip_ed53d4465e87c5b57f9b26438fcd2ec8c6dbc56dc8bf3fde7a186125a45b8894" +path = "static-publisher/static-content/file4245.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/backup/rsnapshot_backup/index.html_5f578c970635f5e9c487ac9b209615df6e32a48331ff4fcf8cc6012be4f23fad" +path = "../build/minified/site/zh/guides/backup/rsnapshot_backup/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/backup/rsnapshot_backup/index.html_br_e6a777d1d89ab469e03cc8693dd93c56cbbb54d0036e584f4e66f3f4495a02a1" +path = "static-publisher/static-content/file4246.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/backup/rsnapshot_backup/index.html_gzip_32d8e689150700452bf5882c3a5fbf4d9052c464b0901d29fdad522a0fd53410" +path = "static-publisher/static-content/file4246.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/backup/rsync_ssh/index.html_8a05f5877ba88148922721c5c6ea64a56ba50cf65fb051bb87c308e0f8c02365" +path = "../build/minified/site/zh/guides/backup/rsync_ssh/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/backup/rsync_ssh/index.html_br_c3a47560d5f86619f0189181a7476fcf64700d537c0685d190a1833b31b96bd1" +path = "static-publisher/static-content/file4247.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/backup/rsync_ssh/index.html_gzip_6c034578186db566a30abaed32dab802455106720ad112b0409c826ad033d5a5" +path = "static-publisher/static-content/file4247.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/cms/cloud_server_using_nextcloud/index.html_1807d4ee184dd65b5fb9c1af09bcbbae6c63ef7db49369368514ea580752b643" +path = "../build/minified/site/zh/guides/cms/cloud_server_using_nextcloud/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/cms/cloud_server_using_nextcloud/index.html_br_1ccfc4f7e75abe98e3354f55e9f0a73de164db3c20b71e32951eb74e8fa23f73" +path = "static-publisher/static-content/file4248.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/cms/cloud_server_using_nextcloud/index.html_gzip_de39fff6b8f9a08a7ed848e1f2d3dc43eb5b4df17135ffd1c32173e63ee97046" +path = "static-publisher/static-content/file4248.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/cms/dokuwiki_server/index.html_82d455642eae2560d36fbde64f947e30187fcddffcfac6113b2f7f38166f658f" +path = "../build/minified/site/zh/guides/cms/dokuwiki_server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/cms/dokuwiki_server/index.html_br_c09879e38e32a54d656dbd8955259a553b0cfd4a068b994f29ca0a7c120422f6" +path = "static-publisher/static-content/file4249.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/cms/dokuwiki_server/index.html_gzip_dd5fd8a972e33534512b4e807f91873fec7c3f3aa4f9bd2f7c3fa8657a103cea" +path = "static-publisher/static-content/file4249.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/communications/asterisk_installation/index.html_91608a99bd55979d4e5a0cde6831b5f4bd3d71540a77f51f0c2a0e1cb7000966" +path = "../build/minified/site/zh/guides/communications/asterisk_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/communications/asterisk_installation/index.html_br_ba6269375f0fe463a19cd1dbb589b49370f6d83035c298fdfff05df5e940950d" +path = "static-publisher/static-content/file4250.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/communications/asterisk_installation/index.html_gzip_7cc5cf07fcbce1f8097eb2df29c85d9e53b228605f7df1bd31f0c9a2666d9426" +path = "static-publisher/static-content/file4250.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/containers/lxd_web_servers/index.html_31c3e04a4c365bcf77c46927d320ccf1d80069c39430fd410c423f9c60eb8125" +path = "../build/minified/site/zh/guides/containers/lxd_web_servers/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/containers/lxd_web_servers/index.html_br_fb0a97490d324bd30797cdd6de37b9436d507c8a2efa79129ec227d4e8037777" +path = "static-publisher/static-content/file4251.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/containers/lxd_web_servers/index.html_gzip_04a23beb39541889f9385eb2cbc9bd9a48bd322786c285f4721517c7cd082dc4" +path = "static-publisher/static-content/file4251.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/containers/podman-nextcloud/index.html_ade3d940666baf226910d80b8e33d6dc333762bfa59e5ffe44c8b2e7f5cc808b" +path = "../build/minified/site/zh/guides/containers/podman-nextcloud/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/containers/podman-nextcloud/index.html_br_d4ef60dc22f0b216ff235d8de88e77f117933ba0bbbe477b8e96b9d0501195c1" +path = "static-publisher/static-content/file4252.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/containers/podman-nextcloud/index.html_gzip_7531a574f51882d1b2245484306d892efb5275b9b3eec30ba62ebd7e59b68e02" +path = "static-publisher/static-content/file4252.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/containers/rancher_and_kubernetes/index.html_363efe82fcd9c5cd5659ae82aacf6340efa6f219b2faad8c7d4136b0ce01645e" +path = "../build/minified/site/zh/guides/containers/rancher_and_kubernetes/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/containers/rancher_and_kubernetes/index.html_br_b85326b74a7663ed6eca1d0e1c8776511f935d6472b2a9c3fef5d4a52a23ba75" +path = "static-publisher/static-content/file4253.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/containers/rancher_and_kubernetes/index.html_gzip_4a834bb50d90281796ae9ebebb9ec6b2966d0b72896e569e5eccbcd053e53c08" +path = "static-publisher/static-content/file4253.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/contribute/beginners/index.html_878d57600267a815399b9115762f66861a72f39516c0d11672649552669e14f8" +path = "../build/minified/site/zh/guides/contribute/beginners/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/contribute/beginners/index.html_br_8ed0484b66ea8cdf8badc22491b6e4d3884f1d22a3208b77ed29f389cd2c94d2" +path = "static-publisher/static-content/file4254.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/contribute/beginners/index.html_gzip_624442eea6bb15c38d8f2daacc04a455691c99437a5ea5b36b0f971aaf74b4da" +path = "static-publisher/static-content/file4254.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/contribute/createnew/index.html_f60a75d28d019b5a87bbe4b6ba98beffbe753dccaa6ca09882c6bd1f3403767c" +path = "../build/minified/site/zh/guides/contribute/createnew/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/contribute/createnew/index.html_br_7f47d4927c9598689b35e5435641e9d5639945ca5a0fc66f06b8b535a599a3b9" +path = "static-publisher/static-content/file4255.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/contribute/createnew/index.html_gzip_f6ec6d9dfd7f26aa80ec1c8596a4a4b8ce0985007935213711c5f2f1fca67e94" +path = "static-publisher/static-content/file4255.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/contribute/index.html_1b93b696bf0654a69aa827a33d500482c1631c37e575a426f950af938e9e8ab8" +path = "../build/minified/site/zh/guides/contribute/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/contribute/index.html_br_d0472a57d60705b60254d0a4720f0089abf754365e46a4f7a9b56389b79eda9a" +path = "static-publisher/static-content/file4256.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/contribute/index.html_gzip_fe7b326518741e7d84375f1a6e8e5dda6eee7f1311834a945238e629aece903d" +path = "static-publisher/static-content/file4256.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/contribute/localdocs/index.html_a7a76a2d61f5c4d11e87a435c49f9f40d1a6c8cc4b35da43fda1b4c3cc620925" +path = "../build/minified/site/zh/guides/contribute/localdocs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/contribute/localdocs/index.html_br_13a70d7733fdc3ef2293f93563fe1b83ea5fed0921c7afc20fbc4f8af382af5f" +path = "static-publisher/static-content/file4257.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/contribute/localdocs/index.html_gzip_0015f7abbca2223dbec1e59fcea16ce5eaba14b89c419cf544bb60b7f27ac6f2" +path = "static-publisher/static-content/file4257.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/contribute/localdocs/local_docs/index.html_1afe3e7a3f2a3e793961e981e6f7562bdb99e7ad0bbc8a435e93fe4dde891f77" +path = "../build/minified/site/zh/guides/contribute/localdocs/local_docs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/contribute/localdocs/local_docs/index.html_br_864946242bd73078b891bc69359d69da5013078939118dd0cf3901534aa0afce" +path = "static-publisher/static-content/file4258.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/contribute/localdocs/local_docs/index.html_gzip_b9844eae158799870175a4ce73b96e84716cba1f1643215751ad515512281d32" +path = "static-publisher/static-content/file4258.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/contribute/localdocs/mkdocs_lsyncd/index.html_567a30f2e7626fac59d611663ea385c993091612b580fa3d23d5e165fee85ca2" +path = "../build/minified/site/zh/guides/contribute/localdocs/mkdocs_lsyncd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/contribute/localdocs/mkdocs_lsyncd/index.html_br_c9ab2a4fcdc12060ede1976f60f1dae18528a88b387fb91ae4471cbb15f3228f" +path = "static-publisher/static-content/file4259.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/contribute/localdocs/mkdocs_lsyncd/index.html_gzip_4346d6fa0c3143a0f551f286cb9f80ed93eaedeaf83ca968f33c70a34f1f0a12" +path = "static-publisher/static-content/file4259.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/contribute/localdocs/mkdocs_venv/index.html_ed388ea6e9f9dd6145e0c17019408092c131903298099fcc4f13674177cfa299" +path = "../build/minified/site/zh/guides/contribute/localdocs/mkdocs_venv/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/contribute/localdocs/mkdocs_venv/index.html_br_55889795242c00559c159b59427884778b6110a2306ee1400c7c4209c3795f0d" +path = "static-publisher/static-content/file4260.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/contribute/localdocs/mkdocs_venv/index.html_gzip_45357877fea74a6f706b1affb33dce022aea646a3a7eaf30fc713882c3f850f7" +path = "static-publisher/static-content/file4260.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/contribute/localdocs/rockydocs_web_dev/index.html_433a270a5471adf49bb72495a2a3c253c798c9e0975cd80a971f9a93867f97a4" +path = "../build/minified/site/zh/guides/contribute/localdocs/rockydocs_web_dev/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/contribute/localdocs/rockydocs_web_dev/index.html_br_481aad78b1f987d58ab761a089739285808a968be9f6a13a8231fe8cacd4b6e4" +path = "static-publisher/static-content/file4261.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/contribute/localdocs/rockydocs_web_dev/index.html_gzip_b89942edcca85bfc25b29eceda8aa1c747985c58dbb34920e679823f361f34ad" +path = "static-publisher/static-content/file4261.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/contribute/localdocs/rockydocs_webdev_v2/index.html_2c37d098eba62cdf5db20e4af3c0b1eae431ae121d7db475d167d7c514b4f25b" +path = "../build/minified/site/zh/guides/contribute/localdocs/rockydocs_webdev_v2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/contribute/localdocs/rockydocs_webdev_v2/index.html_br_6b8c026602456ea3c2a28d55ec558789a3e22567a72a0f6a6ce503219f6a0b63" +path = "static-publisher/static-content/file4262.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/contribute/localdocs/rockydocs_webdev_v2/index.html_gzip_ea37177d778f442ca3c0ae3719ac19d26fc750d85baa501eac191d14c87489b1" +path = "static-publisher/static-content/file4262.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/contribute/navigation/index.html_5d083e98b8cd9884408fa0c44a440a5405d233d8872403a751c32fa59b820155" +path = "../build/minified/site/zh/guides/contribute/navigation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/contribute/navigation/index.html_br_3665ea732ef9beb3f12d13b3fde55195c1277277d455acd32e5ea8943069713d" +path = "static-publisher/static-content/file4263.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/contribute/navigation/index.html_gzip_1f6482cf0839ccfbcada7f4d66399d227c6f32554d4c2e986f59de74a8f57d63" +path = "static-publisher/static-content/file4263.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/contribute/rockydocs_formatting/index.html_6202b3be26255d2d246973c757a9b67008d249d2f321b4c1d96aff79a65b0ace" +path = "../build/minified/site/zh/guides/contribute/rockydocs_formatting/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/contribute/rockydocs_formatting/index.html_br_2966bd84bcb202adda5c902e8c8aad46ff234faec198905922f141da55f9b5e9" +path = "static-publisher/static-content/file4264.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/contribute/rockydocs_formatting/index.html_gzip_423f18706d8aad116fa6f2b33670a9a02c6eb2a56409a9a89e3a844594273f81" +path = "static-publisher/static-content/file4264.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/contribute/style_guide/index.html_6be72ed6ccf419f2a01798ea91e3f038208aac756ebf0bd47483b72cb81ed3dd" +path = "../build/minified/site/zh/guides/contribute/style_guide/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/contribute/style_guide/index.html_br_a83d7a1de231e78b37d9e8172c77082e38ac287216174cb6757cf71d83f9829e" +path = "static-publisher/static-content/file4265.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/contribute/style_guide/index.html_gzip_adde69d64216cd9111b86cdcc4d757f01fb44db777e30c05fe796be4a8506973" +path = "static-publisher/static-content/file4265.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/custom-linux-kernel/index.html_83ab5dfa7c84276fa24c7d56205536af472a94b9ff9b88b3801f276528d5ee8c" +path = "../build/minified/site/zh/guides/custom-linux-kernel/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/custom-linux-kernel/index.html_br_2502c02c410c45c3bbd49b114c34915ba97288f656087d9ca33657a388eee847" +path = "static-publisher/static-content/file4266.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/custom-linux-kernel/index.html_gzip_14d8459a336ec4213bbbb724c8ccd8e0fbc76e2b6b1f2d0f47b0093efc21197f" +path = "static-publisher/static-content/file4266.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/database/database_mariadb-server/index.html_f69e3b6047d9e56aad61c46a854830179be23db45a954c0e8551ab4c6943c60d" +path = "../build/minified/site/zh/guides/database/database_mariadb-server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/database/database_mariadb-server/index.html_br_dd7a110a0dd7b397dea1c0c28699b4af84ab5889e8f71ae0e70a905fcf21281f" +path = "static-publisher/static-content/file4267.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/database/database_mariadb-server/index.html_gzip_852e62427a0ea5054b628dafa6df40f17525f16faea72589f75caad50d8dcfd9" +path = "static-publisher/static-content/file4267.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/desktop/kde_installation/index.html_dcae1223fafd75e575f17276c0befedfa170b913d9b1ae265557c0d8465e69bf" +path = "../build/minified/site/zh/guides/desktop/kde_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/desktop/kde_installation/index.html_br_3a31ec846af76ed323b825b772274f2d9395515f56cb121113f4102109f22c5e" +path = "static-publisher/static-content/file4268.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/desktop/kde_installation/index.html_gzip_8e232eab642f50ecc6a2e886b314e1574e6bcaa0b30d0b210c0f82a111a0b339" +path = "static-publisher/static-content/file4268.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/desktop/mate_installation/index.html_2cc43d7ec24f5b0b6f3dcbc8d43fcdafad31186d793be71b30bf5500d7774441" +path = "../build/minified/site/zh/guides/desktop/mate_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/desktop/mate_installation/index.html_br_c1d34a8d34eee1dc35a3fbd8597bfeaaa7fbef5c6cc6fbea34c91cf253091366" +path = "static-publisher/static-content/file4269.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/desktop/mate_installation/index.html_gzip_7b4a325fa25096b7bd5d91c92143fec71c084114f1beea2b875b7af9e93366bb" +path = "static-publisher/static-content/file4269.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/desktop/xfce_installation/index.html_5e546b308e254d0e5fa2619a0b86d9164f4476d713ad77ebc961bc2fcf4502fa" +path = "../build/minified/site/zh/guides/desktop/xfce_installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/desktop/xfce_installation/index.html_br_5a5b345c3a8eb330adb5c4e0c1f2dd12dd88ff6e15aa6aea5787026492dd5a97" +path = "static-publisher/static-content/file4270.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/desktop/xfce_installation/index.html_gzip_68ad63f3ae18beaa9d54b4f6423199b45fb8204073be72a1f6fa81f218a9b5fd" +path = "static-publisher/static-content/file4270.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/dns/private_dns_server_using_bind/index.html_cb35b00c3b674ed0d80cdf4ad72b5cb6c21c080d5471bb633b3e440739370b1e" +path = "../build/minified/site/zh/guides/dns/private_dns_server_using_bind/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/dns/private_dns_server_using_bind/index.html_br_69228b5f5d9b8c6a370fe56f5773c6075f6e0a8aaac7038370632b375c9eed86" +path = "static-publisher/static-content/file4271.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/dns/private_dns_server_using_bind/index.html_gzip_7dbcbef953204825594ee86ccc79c371de04983f7e558cdc8ce46f0a6c445369" +path = "static-publisher/static-content/file4271.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/editors/micro/index.html_94f7d8006cb24beac81d3c21a2f0c24dcc6fb0373b4e76d43aa488c73a247e53" +path = "../build/minified/site/zh/guides/editors/micro/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/editors/micro/index.html_br_16a066d8857338ac66fdbb6387e76273f9cfe3e6004c142604f0d14c9763c9a8" +path = "static-publisher/static-content/file4272.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/editors/micro/index.html_gzip_2ef30b957771cb79d848045b2ebf9b579fa7bd0a1513aa49e03ad897eae403ed" +path = "static-publisher/static-content/file4272.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/email/01-email-system/index.html_ce1d52ce89393673efd017e48d1b3282a3b9a33aa713004db965decd6dfd0c66" +path = "../build/minified/site/zh/guides/email/01-email-system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/email/01-email-system/index.html_br_25eaca4b3922dc1c56666feef4da0aa4c5315f5cda61ba4c3e2d4a3fda9356f9" +path = "static-publisher/static-content/file4273.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/email/01-email-system/index.html_gzip_a810d3fdfcaa4f590e7979425923179da57ff2e58fef3449eda5692e058da718" +path = "static-publisher/static-content/file4273.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/email/02-basic-email-system/index.html_478042d83a3d4a585701722a8531e93b2a252f089239d6f3974fdc91cbe86431" +path = "../build/minified/site/zh/guides/email/02-basic-email-system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/email/02-basic-email-system/index.html_br_54a7e35d89969a402e058482630fa318a09f8119baae44d3279359c4e0cdfcfb" +path = "static-publisher/static-content/file4274.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/email/02-basic-email-system/index.html_gzip_ee9abf175be2e9d331d1b31e9c78d0335f4bf62a4628ab1f95ee33a4ae05aa66" +path = "static-publisher/static-content/file4274.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/email/postfix_reporting/index.html_b68220631c12140ed0b55257d7e84d0808200f16529eaf49852c510e4ab1f26d" +path = "../build/minified/site/zh/guides/email/postfix_reporting/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/email/postfix_reporting/index.html_br_35fd94f10a5733f06137506b0b0c8b343fb162539476b62ea93d4306a4d75d15" +path = "static-publisher/static-content/file4275.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/email/postfix_reporting/index.html_gzip_2f2130af16dca24d72c6a1d13da370373904f2526a10e880aa8e4c0a2148c56b" +path = "static-publisher/static-content/file4275.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/file_sharing/glusterfs/index.html_79d18127773a6828462b4fd35c61f82d053f32442908ee3807147bffa76f1789" +path = "../build/minified/site/zh/guides/file_sharing/glusterfs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/file_sharing/glusterfs/index.html_br_17ba938d14c21d21bcc305c73ebf02b42106949619e4cfe9dde1a0640eb2e31e" +path = "static-publisher/static-content/file4276.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/file_sharing/glusterfs/index.html_gzip_21cf61274420f6ab3074ec4f4ecee4fd7ee1044f8811af2857eb16a8622bac09" +path = "static-publisher/static-content/file4276.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/file_sharing/nfsserver/index.html_b1a0f5e0626462f448cda6fa47d010817fae7a2e5a6fe096bd2b7503045db382" +path = "../build/minified/site/zh/guides/file_sharing/nfsserver/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/file_sharing/nfsserver/index.html_br_b8e3df65abccceb913a41e1301d4c0aa83622a57998274d1b87fb4ebd64810ca" +path = "static-publisher/static-content/file4277.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/file_sharing/nfsserver/index.html_gzip_c2d159f0e12c6ddcec98359d6a75342e007c36326f657e17771508033dd5c9bd" +path = "static-publisher/static-content/file4277.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/file_sharing/secure_ftp_server_vsftpd/index.html_e5c3543ee5661de4e9ccd595421be0dbae43ff85d7425765f9698c86f9cc35a2" +path = "../build/minified/site/zh/guides/file_sharing/secure_ftp_server_vsftpd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/file_sharing/secure_ftp_server_vsftpd/index.html_br_fe21e241c0f882a5e405cf9f652f31c0a7374b7e640b64e2092712ff6347285c" +path = "static-publisher/static-content/file4278.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/file_sharing/secure_ftp_server_vsftpd/index.html_gzip_a994efa045ffa693beada679f290ccf543befe7033c223756da68ad669b9dc9d" +path = "static-publisher/static-content/file4278.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/file_sharing/sftp/index.html_339f598c72686673819fb7620cbf12c00d4cea49bd9675f26888e3a21b6aac76" +path = "../build/minified/site/zh/guides/file_sharing/sftp/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/file_sharing/sftp/index.html_br_54e71a069788466acd518ee6b184ec400665162e8bc4ae8ea389a190e3aa3ad5" +path = "static-publisher/static-content/file4279.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/file_sharing/sftp/index.html_gzip_7c43fc196a020dd791f39e223ba4b213d84613ad15c28b7efcccfb4e4cb79a03" +path = "static-publisher/static-content/file4279.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/index.html_5a87d926884e950cd8727f8b36bbb571c7f4287c34bcd5581122a13e89596bda" +path = "../build/minified/site/zh/guides/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/index.html_br_311c3514c5f7d93ad8849b27aaedfbab81a0efff0b765bef8dd8dc841944cf7f" +path = "static-publisher/static-content/file4280.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/index.html_gzip_37c0201db346d8279e3b4136a413b696e5db6f4402b68e42d26ca8b02085d2ee" +path = "static-publisher/static-content/file4280.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/installation/index.html_d5098e9ac6cd6dfc90d08f9bef1105b74ac1477ac999f9691285308ee8264e0a" +path = "../build/minified/site/zh/guides/installation/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/installation/index.html_br_cb215ba84611dbc6bf7973791d0baa5ee3f733a1c19939fa7c5a9ec9e877188e" +path = "static-publisher/static-content/file4281.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/installation/index.html_gzip_6f513207a0d9700d1ee85ad0526f4884765a88a9cc3587ff022b0260b2ab363f" +path = "static-publisher/static-content/file4281.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/interoperability/import_rocky_to_wsl/index.html_19b659e4117ba6f062b38881eb27c43ccd7df7339cc1e87c304c92f7ff375209" +path = "../build/minified/site/zh/guides/interoperability/import_rocky_to_wsl/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/interoperability/import_rocky_to_wsl/index.html_br_c8a3a6d18ec68d08fcbeecd183014439b613bd27e237b79562f19a008476d09b" +path = "static-publisher/static-content/file4282.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/interoperability/import_rocky_to_wsl/index.html_gzip_ed9fb41569e40148a5c2cb83a0df353032456b3ab50ea7e8300d096fbd14328b" +path = "static-publisher/static-content/file4282.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/migrate2rocky/index.html_e75bb08151639cf9bd55e0a83c22021a02a27c351457073c65ba6c3fd243ad3e" +path = "../build/minified/site/zh/guides/migrate2rocky/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/migrate2rocky/index.html_br_d66b388cf414504d11cf9f1db9ec4a3b5a4b5d5dbdee8a5c4fa95af2a8a2e163" +path = "static-publisher/static-content/file4283.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/migrate2rocky/index.html_gzip_854e6fb028fdd56e14528b9807a846edd5a38152e62f4e71aa968cf97f8c2d14" +path = "static-publisher/static-content/file4283.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/mirror_management/add_mirror_manager/index.html_7949cfe112d335bd3a9197f985dcc3383c5bf3fb30f550d806d2f55a1dd3f570" +path = "../build/minified/site/zh/guides/mirror_management/add_mirror_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/mirror_management/add_mirror_manager/index.html_br_fc549b542aa6a7256e7769d2b4413cde8f4a0bd2f5315a75fce43c0998ccea16" +path = "static-publisher/static-content/file4284.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/mirror_management/add_mirror_manager/index.html_gzip_8dbea1d00196985801f1607ee70835f7205729c38727c7984816066c04f8bfad" +path = "static-publisher/static-content/file4284.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/network/basic_network_configuration/index.html_41f2fae77a1cde1d6e6440c6dda3095a1a5db2f6db3307832429f2e82e11cee5" +path = "../build/minified/site/zh/guides/network/basic_network_configuration/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/network/basic_network_configuration/index.html_br_437a5061c18b4270b520081aa6a9518504d7a01e97ef11a04355f53928539ffd" +path = "static-publisher/static-content/file4285.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/network/basic_network_configuration/index.html_gzip_298f27203094e9cabf0b44ba1643f71a6061e8a8b51bc33e8324d064a81706ef" +path = "static-publisher/static-content/file4285.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/network/librenms_monitoring_server/index.html_9caf1fa2b8636da5c9da5010b3bc2d561cf5e054103703a056c64f9e99290ec5" +path = "../build/minified/site/zh/guides/network/librenms_monitoring_server/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/network/librenms_monitoring_server/index.html_br_f5c3fe5ef763eb1116857fc180feae9fc242223a0b8a788a7636ba237f74e5ea" +path = "static-publisher/static-content/file4286.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/network/librenms_monitoring_server/index.html_gzip_bf2ba2fc167131ddcb1c7656f494b54df306b0663e61bfc917b25237bda06620" +path = "static-publisher/static-content/file4286.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/package_management/dnf_package_manager/index.html_21db1f6e472fd1e6384a5a5416bed29179b77a2a71fe381f55b7aa2b829388f9" +path = "../build/minified/site/zh/guides/package_management/dnf_package_manager/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/package_management/dnf_package_manager/index.html_br_d1aa349b81a2a498974e0cf939c23a320b5e38c44fbedb12aef2ebd15b9c40e1" +path = "static-publisher/static-content/file4287.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/package_management/dnf_package_manager/index.html_gzip_d15d171593a80c2a632f7a853158a1b234c35c5650775d357c9b304e2255b289" +path = "static-publisher/static-content/file4287.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/package_management/index.html_cdb9539fefda27c85b2de0de6c4c6490cb2c14d9554bce2d25507a64b7522f4f" +path = "../build/minified/site/zh/guides/package_management/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/package_management/index.html_br_33b9c2cba5eafec11bd408576c4e642ed8c6a2c2ef6efbb723c493db7d0d105d" +path = "static-publisher/static-content/file4288.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/package_management/index.html_gzip_98e01f1cb113ba336225fd491753f79cee104295d3f3b722506242a8b862e9d2" +path = "static-publisher/static-content/file4288.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/package_management/package_build_troubleshooting/index.html_ac7249d35ad2cba71dde83b878416d33dcda6b469d34290ef74de007afd08676" +path = "../build/minified/site/zh/guides/package_management/package_build_troubleshooting/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/package_management/package_build_troubleshooting/index.html_br_c2de1292de31b26f31c3629949a85ba0562929673254826ba8a59d27d9e4d470" +path = "static-publisher/static-content/file4289.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/package_management/package_build_troubleshooting/index.html_gzip_f6d5aa8b146276337723910850742001c009fdc079757dd96272c79bc461a2b3" +path = "static-publisher/static-content/file4289.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/package_management/package_debranding/index.html_bc72d74b2577decaa8db99f21017cf3599a9f5ab322535b06fa18c19f8e42ad6" +path = "../build/minified/site/zh/guides/package_management/package_debranding/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/package_management/package_debranding/index.html_br_568c615484c987051a0bebec2a98a379d7af008a0512626e030e181a0add39b1" +path = "static-publisher/static-content/file4290.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/package_management/package_debranding/index.html_gzip_390cba773a18fdafbb8893a593d0decbba31219193b66339d58636d72452ea09" +path = "static-publisher/static-content/file4290.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/package_management/package_dev_start/index.html_ec66d335134bccc5fc9e30f265494d1ef88be6f10ec47cbaf7079315f83578bc" +path = "../build/minified/site/zh/guides/package_management/package_dev_start/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/package_management/package_dev_start/index.html_br_cb88065d2a7e78dee787eeb467ff6a8a7aadd0c71d40946859b1d9faed7d5cdf" +path = "static-publisher/static-content/file4291.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/package_management/package_dev_start/index.html_gzip_853d20df059339f272f6e1ba33249bcd6ef8090aae1e2d52b24f5e877e675db6" +path = "static-publisher/static-content/file4291.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/package_management/package_signing/index.html_5ea98509477a4428872068b62afca3177586b84329f96fd7ccfc0922792ead00" +path = "../build/minified/site/zh/guides/package_management/package_signing/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/package_management/package_signing/index.html_br_8a938040f402d086253233e89c75771090e1db66cb88ee971692bd3bb3e11c99" +path = "static-publisher/static-content/file4292.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/package_management/package_signing/index.html_gzip_e9d7c3d9e83ff5f13c5e9a7075d145bfdba4b10b3b5eace0d6a2e152bad5538d" +path = "static-publisher/static-content/file4292.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/proxies/haproxy_apache_lxd/index.html_c1cd3427e547b0b0fb9a0e940e667c79997e110fd84b33b4269ceba4628cc0cc" +path = "../build/minified/site/zh/guides/proxies/haproxy_apache_lxd/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/proxies/haproxy_apache_lxd/index.html_br_8e2d5e47f8fb65005a90d69ab3026e288e059b55209966af9f902ada47825ac3" +path = "static-publisher/static-content/file4293.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/proxies/haproxy_apache_lxd/index.html_gzip_e2b11a891adc53db10f54d0c040d9c1c6fff4fcacc58bf82a9ab2d80cbfb167a" +path = "static-publisher/static-content/file4293.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/proxies/pound/index.html_6dbd47ce9945f94f80801c2dbc7fd197db6716fc3893cc2ccee762ab9596c6ca" +path = "../build/minified/site/zh/guides/proxies/pound/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/proxies/pound/index.html_br_8319a1f11debfd6659451c84686964888eb4403d9d6fb70b18677d4ba37e3f3d" +path = "static-publisher/static-content/file4294.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/proxies/pound/index.html_gzip_45805e3a29bc711695fedd9c614acf9ddf6df01d50fee1d989cb37030fd02fd6" +path = "static-publisher/static-content/file4294.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/proxies/tor_relay/index.html_0aefc2a32aaf621683256e7d01783c96dbfb31c931a784e1ac368470e328e7c0" +path = "../build/minified/site/zh/guides/proxies/tor_relay/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/proxies/tor_relay/index.html_br_2421fb92c8a45ec77312117b24f025cbc4385c4962c562469491f895a17d41b0" +path = "static-publisher/static-content/file4295.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/proxies/tor_relay/index.html_gzip_c0cd366434f8b58a96f135ce8e8758a7e05e7e03172e717c77bcd8b9928674f9" +path = "static-publisher/static-content/file4295.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/security/authentication/active_directory_authentication/index.html_c4488586e906d400d867dcd823fc11273c7fc6a1e3fe83b12730b0a2df675c02" +path = "../build/minified/site/zh/guides/security/authentication/active_directory_authentication/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/security/authentication/active_directory_authentication/index.html_br_9fd77dd419f9af59f8c2d4bbf46ce8bc77eeb6e7daea448871276ecd42115891" +path = "static-publisher/static-content/file4296.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/security/authentication/active_directory_authentication/index.html_gzip_e5e94cd9ff9b347c12945d6a88fbf44d9131ce8545243ffb6e4a9383309bc16c" +path = "static-publisher/static-content/file4296.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/security/dnf_automatic/index.html_70a8756c3c89629dbe951b73d9866316998ddfe98a4312b603bb99264354a2c9" +path = "../build/minified/site/zh/guides/security/dnf_automatic/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/security/dnf_automatic/index.html_br_74a26c8b0f93c1d5f4a1564a15bcb02ccef95677dcfe898c61bbef327604aeaa" +path = "static-publisher/static-content/file4297.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/security/dnf_automatic/index.html_gzip_a8c69e86f6bf1ff61872646dcf2926bf98a54f8dea3044aba946a679ea997ba7" +path = "static-publisher/static-content/file4297.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/security/enabling_iptables_firewall/index.html_f55ec7da92226dcb0954365de21f5c6730c2b8178c744d73540e6922433689ee" +path = "../build/minified/site/zh/guides/security/enabling_iptables_firewall/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/security/enabling_iptables_firewall/index.html_br_3f13c83721601a4928937beab11b1b95d5d32ea384311d0203885405548561ed" +path = "static-publisher/static-content/file4298.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/security/enabling_iptables_firewall/index.html_gzip_9f5838ac78b2432aeffe9ecc97b25fca0060fd51003c4afc63b4ee581873f65e" +path = "static-publisher/static-content/file4298.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/security/firewalld/index.html_0b44943cbe13af728b4d14238dfeca0436555ad0515358929948487284a44313" +path = "../build/minified/site/zh/guides/security/firewalld/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/security/firewalld/index.html_br_17852237311972eb4791b8d5ca3a421d6375b4a9afc7919b8edaa541fe6b78b0" +path = "static-publisher/static-content/file4299.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/security/firewalld/index.html_gzip_39264462d195c1f72b5c4cc3b95def5b10c29009e996b3d7fa369b476c3d6c30" +path = "static-publisher/static-content/file4299.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/security/firewalld-beginners/index.html_3aadf7024f300624dacd7d932fb03bdd82623cbd0b5496f7648e99125c4f0833" +path = "../build/minified/site/zh/guides/security/firewalld-beginners/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/security/firewalld-beginners/index.html_br_19c8280201b4343565fa74ddc4e0c8179b44f43da7be5bcb5a4ff6d78159351b" +path = "static-publisher/static-content/file4300.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/security/firewalld-beginners/index.html_gzip_98ac61a4d3f42783f49e73eeeb02b82fd9a1a8c2151972d10a2a0bfd3171ca07" +path = "static-publisher/static-content/file4300.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/security/generating_ssl_keys_lets_encrypt/index.html_d0c49f7ec93a75a2abdfa3c08cecf43f8be5c3bc713a7e45e62835d54ddd6acc" +path = "../build/minified/site/zh/guides/security/generating_ssl_keys_lets_encrypt/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/security/generating_ssl_keys_lets_encrypt/index.html_br_c23e3a693abc729c31e1d4c07cb6193796fd55b4b5bfd31eccdf516f694fa28e" +path = "static-publisher/static-content/file4301.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/security/generating_ssl_keys_lets_encrypt/index.html_gzip_b0045d3dac6fcc8e4fc18b183c648c50edb3ade8988c140861e394002b96293e" +path = "static-publisher/static-content/file4301.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/security/learning_selinux/index.html_3f4e242ec01cd8a3ebd36ed3b716c25f673f49345b143de7a9ff6481c71f3283" +path = "../build/minified/site/zh/guides/security/learning_selinux/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/security/learning_selinux/index.html_br_aeca71b29ae98781995201eaa049c42ef0021cbf6672890c7824f009f3ef9703" +path = "static-publisher/static-content/file4302.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/security/learning_selinux/index.html_gzip_c598745992fda4d63ff199546eb1c16f89fb53b17eaf9d334ca948cf5799b2e8" +path = "static-publisher/static-content/file4302.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/security/pam/index.html_ed88dabbf4f43b8561c8ee3d72916bb44fe95e8c16f38e290fac2f23bb254c49" +path = "../build/minified/site/zh/guides/security/pam/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/security/pam/index.html_br_fbfb752a0a71c41e8294379a855869694d9ceb9ed4aec68c4630c276b688a46c" +path = "static-publisher/static-content/file4303.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/security/pam/index.html_gzip_365d41b882798eca08092fee4958fb8ab4fcb26e3163ca2fc6368bcd77878fa6" +path = "static-publisher/static-content/file4303.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/security/ssh_public_private_keys/index.html_c30e12f9863f5d3d1cb74529befe185d2845e15198b1b8a531a48991935d3b1a" +path = "../build/minified/site/zh/guides/security/ssh_public_private_keys/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/security/ssh_public_private_keys/index.html_br_19e560dc8eadd9710fac2030b8ab485b05d07f830bbcc5f34eed6471fa92acbc" +path = "static-publisher/static-content/file4304.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/security/ssh_public_private_keys/index.html_gzip_28f27c063d423c7b358ae45e7b0df4acc32fe93cc501085147384aeddce817c4" +path = "static-publisher/static-content/file4304.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/security/ssl_keys_https/index.html_7a89e340104dcd72b7b492b9c822805893a96bb75947fc7f45099a7a5b952464" +path = "../build/minified/site/zh/guides/security/ssl_keys_https/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/security/ssl_keys_https/index.html_br_d970ab7bef5a4ca38ab225b07f39b159714644a26c1383a17a3c5e93fcac1ea8" +path = "static-publisher/static-content/file4305.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/security/ssl_keys_https/index.html_gzip_da24f014099851aa1493a8c1deb736c28088890cc43ddd013ca7af9742ad36ef" +path = "static-publisher/static-content/file4305.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/security/tailscale_vpn/index.html_0e630a7ffc4854591233539c94a258a7a21e0eff5fec6386ed93d1b63d05ce52" +path = "../build/minified/site/zh/guides/security/tailscale_vpn/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/security/tailscale_vpn/index.html_br_d62a40054fab25567efdc19c1c027c0555436279dfd2a1f73c16bf3daa3b07b1" +path = "static-publisher/static-content/file4306.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/security/tailscale_vpn/index.html_gzip_9329bac99004bb41e87e5759d68e564474300c22d8060a1ef759e528ab80f6e2" +path = "static-publisher/static-content/file4306.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/virtualization/cockpit-machines/index.html_762ebf9df68724e86585eb4d136f3115be9d9ab89cec40840669db18b3a98f36" +path = "../build/minified/site/zh/guides/virtualization/cockpit-machines/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/virtualization/cockpit-machines/index.html_br_7c6e889ac4af8c9a55c5dd68025695b8baebbef2a7af3bba74da1c4f8d22b3f7" +path = "static-publisher/static-content/file4307.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/virtualization/cockpit-machines/index.html_gzip_1d02f1672de48f64e3a95aaa31d118f6617a73380ba7d58060dc1e17447a122f" +path = "static-publisher/static-content/file4307.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/virtualization/vbox-rocky/index.html_542033dec6810f1a6a7ed81ef29d1dd04d199ce474141123952e9a8342edba76" +path = "../build/minified/site/zh/guides/virtualization/vbox-rocky/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/virtualization/vbox-rocky/index.html_br_b84e59fe8a9ff9bf6508c61c816b10e5c9ac2a3c46a734d253173b00edf922a9" +path = "static-publisher/static-content/file4308.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/virtualization/vbox-rocky/index.html_gzip_b93e44b8708cd8b6611820e0fe10247ba45efd595854428470ee95da485092cd" +path = "static-publisher/static-content/file4308.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/virtualization/vmware_tools/index.html_24bdc239e425e46225f668aa620e41ded944abd41ab7cf20f8979ca2a4f85947" +path = "../build/minified/site/zh/guides/virtualization/vmware_tools/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/virtualization/vmware_tools/index.html_br_147d79cd12cf4f9ee42616137f7d9985e95d4eb6fb4dc88b1011284f3aacee05" +path = "static-publisher/static-content/file4309.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/virtualization/vmware_tools/index.html_gzip_e92507f37f4291e5cf4ebaf1a826ac2290341c2e835406e93166e5d502dded60" +path = "static-publisher/static-content/file4309.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/web/apache-sites-enabled/index.html_25295fb301cbfa3aea856b0bb51768944c982199322d4051028708e095d20028" +path = "../build/minified/site/zh/guides/web/apache-sites-enabled/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/web/apache-sites-enabled/index.html_br_cb5eaa7ce1691cc241e1f6fa9e93455b1561cb53c5e59c1d594cbfde5e3f3701" +path = "static-publisher/static-content/file4310.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/web/apache-sites-enabled/index.html_gzip_9508f4603be8830526b5582841e690f1512abc843cc6309c9d798aaa34e263e2" +path = "static-publisher/static-content/file4310.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/web/apache_hardened_webserver/index.html_049e3e5402f0567c835996ed057e7a4066fa629dcb37fbde038dfc0e04749c7f" +path = "../build/minified/site/zh/guides/web/apache_hardened_webserver/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/web/apache_hardened_webserver/index.html_br_e754727bb36c3efb86ded8809375149cfe91031506adf7bf6dd6ffb77f3c7d53" +path = "static-publisher/static-content/file4311.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/web/apache_hardened_webserver/index.html_gzip_5fb2cff2381996e388c7557b8fe662f6ec63ae8b1f35c10c4d2c37002f406dc9" +path = "static-publisher/static-content/file4311.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/web/apache_hardened_webserver/modsecurity/index.html_23959cf709e653cfc91d798db1798ce987e782a8370088c3c8ecd57c88126f57" +path = "../build/minified/site/zh/guides/web/apache_hardened_webserver/modsecurity/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/web/apache_hardened_webserver/modsecurity/index.html_br_b074a246ed2dd10758c7d5003cb691ff76681fa848fb5675e82a950946954f02" +path = "static-publisher/static-content/file4312.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/web/apache_hardened_webserver/modsecurity/index.html_gzip_274552d2a029c4423313518466057908177e779c6a15fdc6d20ce857b4b81c51" +path = "static-publisher/static-content/file4312.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/web/apache_hardened_webserver/ossec-hids/index.html_585791c3a59cad5fc92f2e513e74b52b03a638de8d0dd5b281476198e5bd5845" +path = "../build/minified/site/zh/guides/web/apache_hardened_webserver/ossec-hids/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/web/apache_hardened_webserver/ossec-hids/index.html_br_9fedb3e8e971a0da4aab647c1022ad1c6017d8d0e1c7e7bab375c4d6f1d0e08a" +path = "static-publisher/static-content/file4313.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/web/apache_hardened_webserver/ossec-hids/index.html_gzip_a7a9a77dd1c2dd206a5b5fe99b8e3fc26d5966b76219cf47d2c8964aa0d8ed6a" +path = "static-publisher/static-content/file4313.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/web/apache_hardened_webserver/rkhunter/index.html_667c5cc715eaaf34fc53240504ce1647ad0af1b730096fc64a9648724932b110" +path = "../build/minified/site/zh/guides/web/apache_hardened_webserver/rkhunter/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/web/apache_hardened_webserver/rkhunter/index.html_br_4c0e59b3fd3af07a0762c8410568692b70714faf9e83fe745cedaae3fedf6a71" +path = "static-publisher/static-content/file4314.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/web/apache_hardened_webserver/rkhunter/index.html_gzip_4e529e3cdd810ecb5790b6365f384738a285e1035a2d1a36d8bdb71f2e190ae9" +path = "static-publisher/static-content/file4314.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/web/caddy/index.html_2f1172fba900a99dc880d9d3f2b7914df02172f10204e511774f308b22014d54" +path = "../build/minified/site/zh/guides/web/caddy/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/web/caddy/index.html_br_2b0fb7174c32587022ddd86bb68344c5dbf1066e59d767497d1acbf26febb4ad" +path = "static-publisher/static-content/file4315.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/web/caddy/index.html_gzip_9986c5edbac1a521ad4ae23a5c405a80ca5416f10e17fddedd2771bb8652597b" +path = "static-publisher/static-content/file4315.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/web/mod_SSL_apache/index.html_de0717eb01f1644ce6b166af7a82becee41cc70267b1f5a591341e6c11d8b842" +path = "../build/minified/site/zh/guides/web/mod_SSL_apache/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/web/mod_SSL_apache/index.html_br_2f3512a657c0510df46f4cfab923f3b7d32259ba7e4216ce0c99518e4d2a58f0" +path = "static-publisher/static-content/file4316.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/web/mod_SSL_apache/index.html_gzip_6dbed0d8c125f8d097fde5a9ba3196e784299ad6b6e85477a5d5823cb8d29971" +path = "static-publisher/static-content/file4316.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/web/nginx-mainline/index.html_68da35cffed47984fd44fe81dd0e5ea6470177dd900b283c21678d70d9c15706" +path = "../build/minified/site/zh/guides/web/nginx-mainline/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/web/nginx-mainline/index.html_br_323dacf68431028e2dc5f4132b9f53bdac8ddc065832d1a8f44b35e1adf051d8" +path = "static-publisher/static-content/file4317.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/web/nginx-mainline/index.html_gzip_092b467c62d87e1eb8ed9e9fc791a9839b091d9e142fabddec930a01b53db216" +path = "static-publisher/static-content/file4317.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/web/nginx-multisite/index.html_b2a58f872be26f8cd594d2cb4a5c6ead43cd75164867af00743183929d4904ea" +path = "../build/minified/site/zh/guides/web/nginx-multisite/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/web/nginx-multisite/index.html_br_8c102547aaf969d6feba1bd0b150645896d16177531d6eb099f34494d4284ac0" +path = "static-publisher/static-content/file4318.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/web/nginx-multisite/index.html_gzip_f35dde856b2ad0f62e2fe8f486be82905db87e24f40ec4f57cc27ba22df389f0" +path = "static-publisher/static-content/file4318.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/web/php/index.html_48ae35a59d00a634763268d36f378edbc29d340d1943a19f45569bd80030bd95" +path = "../build/minified/site/zh/guides/web/php/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/web/php/index.html_br_294ae81542cd33f78ada68e56348689cd23369fe5ed76b415466ab74803a11b1" +path = "static-publisher/static-content/file4319.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/web/php/index.html_gzip_6c5c0c95153b49f5d6e092e997188e02344969cd2ee856e126ace1e8d7954f1d" +path = "static-publisher/static-content/file4319.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/web/tor_onion_service/index.html_35faa7efc89e44549f1f903beffb9e1522b5f3fd64814ebf27f153d88f0647b8" +path = "../build/minified/site/zh/guides/web/tor_onion_service/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/web/tor_onion_service/index.html_br_1fbebe3df4df70f433d9544427fcda4f0157bc1da32f29cd5a2b8ea3cfde5cf2" +path = "static-publisher/static-content/file4320.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/guides/web/tor_onion_service/index.html_gzip_e5c16977d9e55fd785c3fcc63d3a32d58993e277296668a1a1eb1a81dfbebb19" +path = "static-publisher/static-content/file4320.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/index.html_ca644b2a1e0cbf2ac3f8e22f0ba733d099d79a9ee8f46bb6901784b5f2a82fdb" +path = "../build/minified/site/zh/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/index.html_br_5622addcae12918922badef18a11592ebf781c4c6cbc8ebe7cd062ba9affd1b8" +path = "static-publisher/static-content/file4321.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/index.html_gzip_0899962776509ec4f2b735992be8108831b62078db69be6c8e460ed2d6060d2b" +path = "static-publisher/static-content/file4321.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/labs/index.html_75710b7c575870a3a223cd1612113e4ec8565bbc41fd0aa4a9805af7a74ba31b" +path = "../build/minified/site/zh/labs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/labs/index.html_br_56664a326ab1479abe7a8d2264e9475d5744994733961c1981cd4126de34ed72" +path = "static-publisher/static-content/file4322.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/labs/index.html_gzip_0d248d0fb248ce033164aae8767b116dc1857b4874c479158cd2c5b714f0c2b2" +path = "static-publisher/static-content/file4322.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/labs/networking/lab5-nfs/index.html_0a82d7e2b80dc28eac946efda7a6f9ca3095fbe445db88ee340e4223e505909a" +path = "../build/minified/site/zh/labs/networking/lab5-nfs/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/labs/networking/lab5-nfs/index.html_br_03df3b29440387fdb297d5a87d87d5f11e7ff8d2406750ac9cabbd6953056131" +path = "static-publisher/static-content/file4323.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/labs/networking/lab5-nfs/index.html_gzip_909aa96bfedba67ea9e88b559704719655da56551c75fe87e5959843c7a7a190" +path = "static-publisher/static-content/file4323.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/labs/security/index.html_1c20f75f069e87e4618dfc975322c707927ffc3a4d7950aaf030c49e792ce571" +path = "../build/minified/site/zh/labs/security/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/labs/security/index.html_br_28e3018687d17bb3c4f85eebcd50a9c935042f15809cff867380f2e8bde14570" +path = "static-publisher/static-content/file4324.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/labs/security/index.html_gzip_675df7bebf93be0f87dc51e6231b059d455230d38e6ae2a2ab91dbd8d72e40bd" +path = "static-publisher/static-content/file4324.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/labs/security/introduction/index.html_3ae96c71f499b8f1da29d7abbd58a31dff6b6284d91b42794b9ff76782fcbd59" +path = "../build/minified/site/zh/labs/security/introduction/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/labs/security/introduction/index.html_br_635b1ac93901a888b45160454ff53c3d0392bf893d59723c677c7357cb7189c6" +path = "static-publisher/static-content/file4325.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/labs/security/introduction/index.html_gzip_abca9cb163d4e569dbda5fad271729f88bdee963b5c36e0244cffd091fe26a9c" +path = "static-publisher/static-content/file4325.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/labs/security/lab3-auditing_the_system/index.html_a58cb493aeb6e56ec08e9a09495762cde7a7bb8eb28f06a1782f7fa8724b72c0" +path = "../build/minified/site/zh/labs/security/lab3-auditing_the_system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/labs/security/lab3-auditing_the_system/index.html_br_f1a158b991cae0cad324e24f037f21b5e5d08b532ed1810989ceeb2f1c770fdf" +path = "static-publisher/static-content/file4326.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/labs/security/lab3-auditing_the_system/index.html_gzip_27f16671a2796a7f3ecbb2a09bd0aecee7a7378d59ee8c6c4e30a4db0ec865a9" +path = "static-publisher/static-content/file4326.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/labs/security/lab8-iptables/index.html_7cd4cab922e2b39c13281ed10b518046fe4953a61195b1d16c33be820acded64" +path = "../build/minified/site/zh/labs/security/lab8-iptables/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/labs/security/lab8-iptables/index.html_br_e594a5dc2709945b44d3ef8901b1b189af4a641147ec8ab51ab57ddd487db45e" +path = "static-publisher/static-content/file4327.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/labs/security/lab8-iptables/index.html_gzip_85fcfd6b05bf1f77769be6045f579b90fb7f982749408dd068a243e5ff00ee51" +path = "static-publisher/static-content/file4327.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/labs/security/lab9-cryptography/index.html_8d35a5c19c5dfb472a275da62a0707ef3c7583feac256aa8bb188cb389f13a0e" +path = "../build/minified/site/zh/labs/security/lab9-cryptography/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/labs/security/lab9-cryptography/index.html_br_337ca0bd7d7a03a2356784c7923151243ad87db08b560973086383dd60d65e6b" +path = "static-publisher/static-content/file4328.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/labs/security/lab9-cryptography/index.html_gzip_dfb9f37bfedd1933363821394224339efd4034b3c5c0283ba5f7b3222c29dc7b" +path = "static-publisher/static-content/file4328.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/labs/systems_administration_I/lab3-system_utilities/index.html_3c0009afb7b8aa9396ab732aded50c38b705b238aadd571384b43bbbd99e24e9" +path = "../build/minified/site/zh/labs/systems_administration_I/lab3-system_utilities/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/labs/systems_administration_I/lab3-system_utilities/index.html_br_75df4c8e173f54f7e13603937812f5f5ac2996e2d8ec0590ce93ec3e8682e48a" +path = "static-publisher/static-content/file4329.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/labs/systems_administration_I/lab3-system_utilities/index.html_gzip_55f7bc46853781b4797df2804f83b8946d27c01ab8f6943de5785de2634c8d94" +path = "static-publisher/static-content/file4329.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/labs/systems_administration_I/lab5-networking/index.html_77093510cb6a476e127d0181d795d8d5b819abf5ca9c9181032010da183ac7f4" +path = "../build/minified/site/zh/labs/systems_administration_I/lab5-networking/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/labs/systems_administration_I/lab5-networking/index.html_br_1ec9ff3fe38e955e895627c1214b5ae0d3d6a01d573ddb69dbf7f6c3b11385ea" +path = "static-publisher/static-content/file4330.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/labs/systems_administration_I/lab5-networking/index.html_gzip_67088d8440b6cb999dd27dfa0424238fcce419defe45d9043c6b25668aa84610" +path = "static-publisher/static-content/file4330.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/labs/systems_administration_I/lab6-user_and_group_management/index.html_c5c6c47bfc5de65580157358ffdf818850140961d447a6b7d871ec99aa367c62" +path = "../build/minified/site/zh/labs/systems_administration_I/lab6-user_and_group_management/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/labs/systems_administration_I/lab6-user_and_group_management/index.html_br_3d9a444ac3ec8e643f36de56377b9dd18b701dfee13a9373233c5ef91deae60e" +path = "static-publisher/static-content/file4331.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/labs/systems_administration_I/lab6-user_and_group_management/index.html_gzip_27967b2e54eb259ca6a4e0f018f4da5bf32bdf604452faefd64cdb30b3c8e887" +path = "static-publisher/static-content/file4331.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/labs/systems_administration_I/lab7-software_management/index.html_ff3d7fe520fa1afbcf63b35ca8315cb55ee8ca64ebcc62c4bd3a3dd78cec69f1" +path = "../build/minified/site/zh/labs/systems_administration_I/lab7-software_management/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/labs/systems_administration_I/lab7-software_management/index.html_br_929118e88fbc083afa97435037103deeb39126bbdcb6aa7400ebde111dfdd5b8" +path = "static-publisher/static-content/file4332.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/labs/systems_administration_I/lab7-software_management/index.html_gzip_a7301e98c0e35b8e62ce10b59855709fcf075cdccf8daf6f24ff10dcaff73935" +path = "static-publisher/static-content/file4332.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html_59b73afef1cf746f5b547a06a036b5d30e3105d1190d326f6804498dd1964577" +path = "../build/minified/site/zh/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html_br_f59a281a828c9cc367ad0f61d3ea9b0a5ebad4052b55c3a92c772a8e64caf046" +path = "static-publisher/static-content/file4333.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/labs/systems_administration_I/lab8-system_and_process_monitoring-I/index.html_gzip_d763d3ca78211b37a94b52acccb619346af2961aacd73cd34d21cf4d9bd9e4b4" +path = "static-publisher/static-content/file4333.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/labs/systems_administration_II/lab3-bootup_and_startup/index.html_c8c73f9b83a2988171f39b353866c1edc82f4305ab29a3fe4b5beb69428f1ad7" +path = "../build/minified/site/zh/labs/systems_administration_II/lab3-bootup_and_startup/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/labs/systems_administration_II/lab3-bootup_and_startup/index.html_br_ba5e7c1af14af2177ce3fe16a9dd7a7e906e2c61bbca5812e6dabf9718881db6" +path = "static-publisher/static-content/file4334.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/labs/systems_administration_II/lab3-bootup_and_startup/index.html_gzip_9e37760e64c1ec473815a5d9c564907262cb520821666355b97bcb6f0ec21eb8" +path = "static-publisher/static-content/file4334.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html_5fef70568b5bd7f79d53cbe976f7fe38cf96acc2f22b246c33c44a3ec637ac18" +path = "../build/minified/site/zh/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html_br_46a6ea1ee0b2e7b0e269703d80270e63c66735ae36d6d9bd1c13bfdd229c98e4" +path = "static-publisher/static-content/file4335.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/labs/systems_administration_II/lab4-advanced_system_process_monitoring/index.html_gzip_38f6a6abe36684e9e79d21dde18b7a01c1323c2e302d7b80fa1757ba23f3509c" +path = "static-publisher/static-content/file4335.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/labs/systems_administration_II/lab6-the_file_system/index.html_fcc17dc2351eacd2b53162a325a672fb93b07e5ecf12bc3cb0cc60b7fbfbed45" +path = "../build/minified/site/zh/labs/systems_administration_II/lab6-the_file_system/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/labs/systems_administration_II/lab6-the_file_system/index.html_br_34f2668831c83c936e8928758b915c561b90c9cbfabcea97860b9ced1590b825" +path = "static-publisher/static-content/file4336.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/labs/systems_administration_II/lab6-the_file_system/index.html_gzip_137c36d7ee5eba95270733347605ac441a4306e8f762ed9e7029e28fe43b17ba" +path = "static-publisher/static-content/file4336.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/labs/systems_administration_II/lab7-the_linux_kernel/index.html_b41a3e126557a876f9784370f096b566f5a3065158f8b9b53ef60b3acc9c3eac" +path = "../build/minified/site/zh/labs/systems_administration_II/lab7-the_linux_kernel/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/labs/systems_administration_II/lab7-the_linux_kernel/index.html_br_e5079c69c8edf7342cc7fd34108aa7aae13fe55973252929752cedb77c1f7615" +path = "static-publisher/static-content/file4337.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/labs/systems_administration_II/lab7-the_linux_kernel/index.html_gzip_836265125539b600bd260e674a98a7ee8e47e864e6c4e7dbbb4a3c7bc054ae37" +path = "static-publisher/static-content/file4337.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/release_notes/8-changelog/index.html_9a5d3d96e3a686b0f5e8a91c0838a74ca9a8a0ee3ca8005ef388b2e19fe2809c" +path = "../build/minified/site/zh/release_notes/8-changelog/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/release_notes/8-changelog/index.html_br_f56724486d382cf6e7580722d9481a387cbc78fff67e41c2449258492cab8f27" +path = "static-publisher/static-content/file4338.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/release_notes/8-changelog/index.html_gzip_7bb26c48cef63fcb4eb54af4653aa5f61357ccc6e0194e77ff736e1865b00e15" +path = "static-publisher/static-content/file4338.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/release_notes/8_4/index.html_2cb2875bbf1bee5c75c83f23b3374ca97fa09341e97918ff216d4fbb0f8c4221" +path = "../build/minified/site/zh/release_notes/8_4/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/release_notes/8_4/index.html_br_d23ca9884bb73734dedede0a6f7f6b2f0b9833ec4833c780474fc4b6e75760e9" +path = "static-publisher/static-content/file4339.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/release_notes/8_4/index.html_gzip_7c740c4d94798861c730ae1e12bc352f1e3d798ee293b221717c4866e6438ab8" +path = "static-publisher/static-content/file4339.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/release_notes/8_5/index.html_31b59eeb9bf0ea00ef45f2fc39be00ad8f6920ba4ce713efad395e57bb8e8eac" +path = "../build/minified/site/zh/release_notes/8_5/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/release_notes/8_5/index.html_br_afedb9aa51eb18491432a9289a1c7e8d7648537bfca891267ae794479c3a71f4" +path = "static-publisher/static-content/file4340.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/release_notes/8_5/index.html_gzip_c430b302af8522c4cbe3ee41d81b87b322568b746c40880f410e1a0b6fedd86e" +path = "static-publisher/static-content/file4340.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/release_notes/8_6/index.html_b6c93d4de92f1438d2569a34e806df12bdb51af7946b6b39b787144f45c88edd" +path = "../build/minified/site/zh/release_notes/8_6/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/release_notes/8_6/index.html_br_2643abc284231a856a881a5c48e988a5e8127665ed70503f95778cd76ee09857" +path = "static-publisher/static-content/file4341.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/release_notes/8_6/index.html_gzip_6a0de71a5d589e5900f024fffb4ec5517124d75fdc81fbb8125ab176f16c7523" +path = "static-publisher/static-content/file4341.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/release_notes/8_7/index.html_dd7a6deb476786198a8c9edc7002641a9d60084b747e9c5866df73df9cacfc58" +path = "../build/minified/site/zh/release_notes/8_7/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/release_notes/8_7/index.html_br_a72fa59c2e47bc02469ef05b44f6b83a08d7dedbc832ea733236d9654f3af19e" +path = "static-publisher/static-content/file4342.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/release_notes/8_7/index.html_gzip_44cbbcae9c6df0a21a9ce6b3f7323432c46d7d73615516eef9e34076acd6c549" +path = "static-publisher/static-content/file4342.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/release_notes/8_8/index.html_19bc288589a233fd9f64433640643083aee98565e03ca201b3f30afcab5dfcd7" +path = "../build/minified/site/zh/release_notes/8_8/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/release_notes/8_8/index.html_br_d724b736adec71f123ce59e4856d07eac7c22189f980a4dc7405e5f86c3b9aae" +path = "static-publisher/static-content/file4343.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/release_notes/8_8/index.html_gzip_271b1e1e9eb0a9615790abf91df85ddd544e01307b1f1abb1d150ceb103a5523" +path = "static-publisher/static-content/file4343.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/release_notes/8_9/index.html_156da07f4761643c71d6acc3f9ecf93ccb95a9170a2ec330ed2d4ebbe78e3ff4" +path = "../build/minified/site/zh/release_notes/8_9/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/release_notes/8_9/index.html_br_e8be26f69748e0e044d47184b926582fb037e09845652444abd7f422e80446ab" +path = "static-publisher/static-content/file4344.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/release_notes/8_9/index.html_gzip_f48047bce932edb10d1b85ee4c550230bc4bdff84eb95829112fa59c0a0752f6" +path = "static-publisher/static-content/file4344.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/release_notes/9_0/index.html_dfd691bc18d442cc51f2c42548aa957576cd2e61828f8441bbb8f552b7caf540" +path = "../build/minified/site/zh/release_notes/9_0/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/release_notes/9_0/index.html_br_afe0a109743d7fc4337806dfb0d08ed205c1d115b0b19b13620dcbae2cfca507" +path = "static-publisher/static-content/file4345.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/release_notes/9_0/index.html_gzip_e06e32e2061a12068ff9fae5c8c81e91d5523a8a7b8ff8046959336f6074674c" +path = "static-publisher/static-content/file4345.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/release_notes/9_1/index.html_9e442040613fc70bcffb5b751a06888c7cc9e9c033e63ad82bde541ab0da3b71" +path = "../build/minified/site/zh/release_notes/9_1/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/release_notes/9_1/index.html_br_b7b0dcc2421f0addb5d0e2ce9bd3a0539377987c1e54f8bca329df405653a06d" +path = "static-publisher/static-content/file4346.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/release_notes/9_1/index.html_gzip_9c9dac3183f6242a0a549c361d83da248fee83b3f668d6291425cd50c090f1d1" +path = "static-publisher/static-content/file4346.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/release_notes/9_2/index.html_4a93753ce54ab3c8375f9569ad27fdceff9ab2e7d40878d40278caed3848ebd9" +path = "../build/minified/site/zh/release_notes/9_2/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/release_notes/9_2/index.html_br_4f0b1456a2459b0a8aafbc3e2d5f639778c6a510373b85f985531ebe00187c84" +path = "static-publisher/static-content/file4347.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/release_notes/9_2/index.html_gzip_985226e7d26ae4c7d627b54c64e380df0953595ae0c72fa38a45525396a1b9d4" +path = "static-publisher/static-content/file4347.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/release_notes/9_3/index.html_cc48e4f5e78590e2fda24658b4bb10a6f2ff1e2f924b7f6a8647e6fec5e18e42" +path = "../build/minified/site/zh/release_notes/9_3/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/release_notes/9_3/index.html_br_8a9d44579684cb7b5aed2136c873ad37b9cca0677785b52021d1e612e507591e" +path = "static-publisher/static-content/file4348.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/release_notes/9_3/index.html_gzip_8f42aed4a54fdc10bc830f5c4c2c611ac83bcfbc69a809b0195f12513b26fff6" +path = "static-publisher/static-content/file4348.txt_gzip" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/release_notes/index.html_3fd5a99372e74768fc3d3296c219850add96653b2dca47231de8b2a01fb59ea6" +path = "../build/minified/site/zh/release_notes/index.html" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/release_notes/index.html_br_4dfccda40976b0fbd7d05ba664e163ad989b6fffb3ecd0811e962d3ea33cf0cc" +path = "static-publisher/static-content/file4349.txt_br" + +[[local_server.kv_stores."docs.rockylinux.org"]] +key = "2qS5iaeanC9NRRLK1pSoYu:/zh/release_notes/index.html_gzip_5f23817d88a879388a0889537fd72dcffb1a88053a423fb0b3504aac9313a620" +path = "static-publisher/static-content/file4349.txt_gzip" diff --git a/compute-js/package.json b/compute-js/package.json index 4514872..35556ec 100644 --- a/compute-js/package.json +++ b/compute-js/package.json @@ -1,6 +1,6 @@ { "name": "@resf/rocky-linux-docs", - "version": "0.1.0", + "version": "0.1.1", "description": "Rocky Linux Documentation Site", "author": "neil@resf.org", "type": "module", diff --git a/compute-js/src/index.js b/compute-js/src/index.js index 9af5e60..449859d 100644 --- a/compute-js/src/index.js +++ b/compute-js/src/index.js @@ -34,6 +34,8 @@ async function handleRequest(event) { surrogateKey: 'docs', ttl: 21600, }); + let vercelOverride = cacheOverride; + vercelOverride.surrogateKey = 'vercel'; // Check if the requested path has a locale slug (e.g., /fr/) const localeRegex = /\/(af|de|fr|es|id|it|ja|ko|zh|sv|tr|pl|pt|pt-BR|ru|uk)\// @@ -47,7 +49,7 @@ async function handleRequest(event) { beresp = await staticContentServer.serveRequest(event.request, 'public, max-age=21600, stale-while-revalidate=600'); if (beresp == null || beresp.status > 400) { // doLog("Failed to serve localized page. Attempting to serve page from Vercel"); - beresp = await fetch(event.request, {backend: backendName, cacheOverride}); + beresp = await fetch(event.request, {backend: backendName, vercelOverride}); // doLog("[vercel] " +beresp.url+"|"+beresp.status); if (beresp != null && beresp.status < 400) { debugLog("Localized content fetched from Vercel"); @@ -67,7 +69,7 @@ async function handleRequest(event) { // If we **still** can't find the artifact, try to find it on docs.r.o for the user, I guess - beresp = await fetch(originalRequest, {backend: backendName, cacheOverride}); + beresp = await fetch(originalRequest, {backend: backendName, vercelOverride}); if (beresp != null && beresp.status < 400) { debugLog("content fetched from vercel (fallback)"); diff --git a/mkdocs.yml b/mkdocs.yml index e9ae3bb..29e0f94 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -9,8 +9,6 @@ edit_uri: "edit/main/docs/" theme: name: material custom_dir: theme - ## NOTE(nhanlon): 2023-04-06 GDPR - cannot self host. this can be removed once the privacy plugin is no-longer subscriber only - font: false icon: edit: material/pencil features: